diff -Nru compiz-fusion-plugins-unsupported-0.7.6/aclocal.m4 compiz-fusion-plugins-unsupported-0.7.8/aclocal.m4 --- compiz-fusion-plugins-unsupported-0.7.6/aclocal.m4 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/aclocal.m4 2008-09-18 17:22:26.000000000 +0100 @@ -0,0 +1,9624 @@ +# generated automatically by aclocal 1.10.1 -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This file 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. + +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(AC_AUTOCONF_VERSION, [2.61],, +[m4_warning([this file was generated for autoconf 2.61. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically `autoreconf'.])]) + +dnl AM_GCONF_SOURCE_2 +dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas +dnl (i.e. pass to gconftool-2 +dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where +dnl you should install foo.schemas files +dnl + +AC_DEFUN([AM_GCONF_SOURCE_2], +[ + if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then + GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source` + else + GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE + fi + + AC_ARG_WITH([gconf-source], + AC_HELP_STRING([--with-gconf-source=sourceaddress], + [Config database for installing schema files.]), + [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],) + + AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE) + AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation]) + + if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then + GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas' + fi + + AC_ARG_WITH([gconf-schema-file-dir], + AC_HELP_STRING([--with-gconf-schema-file-dir=dir], + [Directory for installing schema files.]), + [GCONF_SCHEMA_FILE_DIR="$withval"],) + + AC_SUBST(GCONF_SCHEMA_FILE_DIR) + AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files]) + + AC_ARG_ENABLE(schemas-install, + [ --disable-schemas-install Disable the schemas installation], + [case ${enableval} in + yes|no) ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-schemas-install) ;; + esac]) + AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no]) +]) + +# Copyright (C) 1995-2002 Free Software Foundation, Inc. +# Copyright (C) 2001-2003,2004 Red Hat, Inc. +# +# This file is free software, distributed under the terms of the GNU +# General Public License. As a special exception to the GNU General +# Public License, this file may be distributed as part of a program +# that contains a configuration script generated by Autoconf, under +# the same distribution terms as the rest of that program. +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# +# Macro to add for using GNU gettext. +# Ulrich Drepper , 1995, 1996 +# +# Modified to never use included libintl. +# Owen Taylor , 12/15/1998 +# +# Major rework to remove unused code +# Owen Taylor , 12/11/2002 +# +# Added better handling of ALL_LINGUAS from GNU gettext version +# written by Bruno Haible, Owen Taylor 5/30/3002 +# +# Modified to require ngettext +# Matthias Clasen 08/06/2004 +# +# We need this here as well, since someone might use autoconf-2.5x +# to configure GLib then an older version to configure a package +# using AM_GLIB_GNU_GETTEXT +AC_PREREQ(2.53) + +dnl +dnl We go to great lengths to make sure that aclocal won't +dnl try to pull in the installed version of these macros +dnl when running aclocal in the glib directory. +dnl +m4_copy([AC_DEFUN],[glib_DEFUN]) +m4_copy([AC_REQUIRE],[glib_REQUIRE]) +dnl +dnl At the end, if we're not within glib, we'll define the public +dnl definitions in terms of our private definitions. +dnl + +# GLIB_LC_MESSAGES +#-------------------- +glib_DEFUN([GLIB_LC_MESSAGES], + [AC_CHECK_HEADERS([locale.h]) + if test $ac_cv_header_locale_h = yes; then + AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, + [AC_TRY_LINK([#include ], [return LC_MESSAGES], + am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) + if test $am_cv_val_LC_MESSAGES = yes; then + AC_DEFINE(HAVE_LC_MESSAGES, 1, + [Define if your file defines LC_MESSAGES.]) + fi + fi]) + +# GLIB_PATH_PROG_WITH_TEST +#---------------------------- +dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], +[# Extract the first word of "$2", so it can be a program name with args. +set dummy $2; ac_word=[$]2 +AC_MSG_CHECKING([for $ac_word]) +AC_CACHE_VAL(ac_cv_path_$1, +[case "[$]$1" in + /*) + ac_cv_path_$1="[$]$1" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in ifelse([$5], , $PATH, [$5]); do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if [$3]; then + ac_cv_path_$1="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" +dnl If no 4th arg is given, leave the cache variable unset, +dnl so AC_PATH_PROGS will keep looking. +ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +])dnl + ;; +esac])dnl +$1="$ac_cv_path_$1" +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then + AC_MSG_RESULT([$]$1) +else + AC_MSG_RESULT(no) +fi +AC_SUBST($1)dnl +]) + +# GLIB_WITH_NLS +#----------------- +glib_DEFUN([GLIB_WITH_NLS], + dnl NLS is obligatory + [USE_NLS=yes + AC_SUBST(USE_NLS) + + gt_cv_have_gettext=no + + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= + + AC_CHECK_HEADER(libintl.h, + [gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # + AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, + [AC_TRY_LINK([ +#include +], + [return !ngettext ("","", 1)], + gt_cv_func_ngettext_libc=yes, + gt_cv_func_ngettext_libc=no) + ]) + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, + [AC_TRY_LINK([ +#include +], + [return !dgettext ("","")], + gt_cv_func_dgettext_libc=yes, + gt_cv_func_dgettext_libc=no) + ]) + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CHECK_FUNCS(bind_textdomain_codeset) + fi + + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + AC_CHECK_LIB(intl, bindtextdomain, + [AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dgettext, + gt_cv_func_dgettext_libintl=yes)])]) + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + AC_MSG_CHECKING([if -liconv is needed to use gettext]) + AC_MSG_RESULT([]) + AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dcgettext, + [gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv], + :,-liconv)], + :,-liconv) + fi + + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + AC_CHECK_FUNCS(bind_textdomain_codeset) + LIBS="$glib_save_LIBS" + + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi + + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + AC_DEFINE(HAVE_GETTEXT,1, + [Define if the GNU gettext() function is already present or preinstalled.]) + GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + AC_CHECK_FUNCS(dcgettext) + MSGFMT_OPTS= + AC_MSG_CHECKING([if msgfmt accepts -c]) + GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: test 1.0\n" +"PO-Revision-Date: 2007-02-15 12:01+0100\n" +"Last-Translator: test \n" +"Language-Team: C \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) + AC_SUBST(MSGFMT_OPTS) + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) + AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr], + [CATOBJEXT=.gmo + DATADIRNAME=share], + [case $host in + *-*-solaris*) + dnl On Solaris, if bind_textdomain_codeset is in libc, + dnl GNU format message catalog is always supported, + dnl since both are added to the libc all together. + dnl Hence, we'd like to go with DATADIRNAME=share and + dnl and CATOBJEXT=.gmo in this case. + AC_CHECK_FUNC(bind_textdomain_codeset, + [CATOBJEXT=.gmo + DATADIRNAME=share], + [CATOBJEXT=.mo + DATADIRNAME=lib]) + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac]) + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + ]) + + if test "$gt_cv_have_gettext" = "yes" ; then + AC_DEFINE(ENABLE_NLS, 1, + [always defined to indicate that i18n is enabled]) + fi + + dnl Test whether we really found GNU xgettext. + if test "$XGETTEXT" != ":"; then + dnl If it is not GNU xgettext we define it as : so that the + dnl Makefiles still can work. + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + AC_MSG_RESULT( + [found xgettext program is not GNU xgettext; ignore it]) + XGETTEXT=":" + fi + fi + + # We need to process the po/ directory. + POSUB=po + + AC_OUTPUT_COMMANDS( + [case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac]) + + dnl These rules are solely for the distribution goal. While doing this + dnl we only have to keep exactly one list of the available catalogs + dnl in configure.in. + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done + + dnl Make all variables we use known to autoconf. + AC_SUBST(CATALOGS) + AC_SUBST(CATOBJEXT) + AC_SUBST(DATADIRNAME) + AC_SUBST(GMOFILES) + AC_SUBST(INSTOBJEXT) + AC_SUBST(INTLLIBS) + AC_SUBST(PO_IN_DATADIR_TRUE) + AC_SUBST(PO_IN_DATADIR_FALSE) + AC_SUBST(POFILES) + AC_SUBST(POSUB) + ]) + +# AM_GLIB_GNU_GETTEXT +# ------------------- +# Do checks necessary for use of gettext. If a suitable implementation +# of gettext is found in either in libintl or in the C library, +# it will set INTLLIBS to the libraries needed for use of gettext +# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable +# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() +# on various variables needed by the Makefile.in.in installed by +# glib-gettextize. +dnl +glib_DEFUN([GLIB_GNU_GETTEXT], + [AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_HEADER_STDC])dnl + + GLIB_LC_MESSAGES + GLIB_WITH_NLS + + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + AC_MSG_CHECKING(for catalogs to be installed) + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + AC_MSG_RESULT($LINGUAS) + fi + + dnl Construct list of names of catalog files to be constructed. + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi + + dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly + dnl find the mkinstalldirs script in another subdir but ($top_srcdir). + dnl Try to locate is. + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + AC_SUBST(MKINSTALLDIRS) + + dnl Generate list of files to be processed by xgettext which will + dnl be included in po/Makefile. + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + ]) + +# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) +# ------------------------------- +# Define VARIABLE to the location where catalog files will +# be installed by po/Makefile. +glib_DEFUN([GLIB_DEFINE_LOCALEDIR], +[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl +glib_save_prefix="$prefix" +glib_save_exec_prefix="$exec_prefix" +glib_save_datarootdir="$datarootdir" +test "x$prefix" = xNONE && prefix=$ac_default_prefix +test "x$exec_prefix" = xNONE && exec_prefix=$prefix +datarootdir=`eval echo "${datarootdir}"` +if test "x$CATOBJEXT" = "x.mo" ; then + localedir=`eval echo "${libdir}/locale"` +else + localedir=`eval echo "${datadir}/locale"` +fi +prefix="$glib_save_prefix" +exec_prefix="$glib_save_exec_prefix" +datarootdir="$glib_save_datarootdir" +AC_DEFINE_UNQUOTED($1, "$localedir", + [Define the location where the catalogs will be installed]) +]) + +dnl +dnl Now the definitions that aclocal will find +dnl +ifdef(glib_configure_in,[],[ +AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +])dnl + +# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) +# +# Create a temporary file with TEST-FILE as its contents and pass the +# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with +# 0 and perform ACTION-IF-FAIL for any other exit status. +AC_DEFUN([GLIB_RUN_PROG], +[cat >conftest.foo <<_ACEOF +$2 +_ACEOF +if AC_RUN_LOG([$1 conftest.foo]); then + m4_ifval([$3], [$3], [:]) +m4_ifvaln([$4], [else $4])dnl +echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD +sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD +fi]) + + + +dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) +# serial 40 IT_PROG_INTLTOOL +AC_DEFUN([IT_PROG_INTLTOOL], +[AC_PREREQ([2.50])dnl + +case "$am__api_version" in + 1.[01234]) + AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) + ;; + *) + ;; +esac + +if test -n "$1"; then + AC_MSG_CHECKING([for intltool >= $1]) + + INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` + [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + ] + AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) + test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || + AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) +fi + +AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) +AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) +AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) +if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then + AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) +fi + + INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@' + INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' + INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + +AC_SUBST(INTLTOOL_DESKTOP_RULE) +AC_SUBST(INTLTOOL_DIRECTORY_RULE) +AC_SUBST(INTLTOOL_KEYS_RULE) +AC_SUBST(INTLTOOL_PROP_RULE) +AC_SUBST(INTLTOOL_OAF_RULE) +AC_SUBST(INTLTOOL_PONG_RULE) +AC_SUBST(INTLTOOL_SERVER_RULE) +AC_SUBST(INTLTOOL_SHEET_RULE) +AC_SUBST(INTLTOOL_SOUNDLIST_RULE) +AC_SUBST(INTLTOOL_UI_RULE) +AC_SUBST(INTLTOOL_XAM_RULE) +AC_SUBST(INTLTOOL_KBD_RULE) +AC_SUBST(INTLTOOL_XML_RULE) +AC_SUBST(INTLTOOL_XML_NOMERGE_RULE) +AC_SUBST(INTLTOOL_CAVES_RULE) +AC_SUBST(INTLTOOL_SCHEMAS_RULE) +AC_SUBST(INTLTOOL_THEME_RULE) +AC_SUBST(INTLTOOL_SERVICE_RULE) +AC_SUBST(INTLTOOL_POLICY_RULE) + +# Check the gettext tools to make sure they are GNU +AC_PATH_PROG(XGETTEXT, xgettext) +AC_PATH_PROG(MSGMERGE, msgmerge) +AC_PATH_PROG(MSGFMT, msgfmt) +if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then + AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) +fi +xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" +mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" +mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" +if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then + AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) +fi + +AC_PATH_PROG(INTLTOOL_PERL, [perl]) +if test -z "$INTLTOOL_PERL"; then + AC_MSG_ERROR([perl not found; required for intltool]) +fi +if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then + AC_MSG_ERROR([perl 5.x required for intltool]) +fi +if test "x$2" != "xno-xml"; then + AC_MSG_CHECKING([for XML::Parser]) + if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then + AC_MSG_RESULT([ok]) + else + AC_MSG_ERROR([XML::Parser perl module is required for intltool]) + fi +fi + +# Substitute ALL_LINGUAS so we can use it in po/Makefile +AC_SUBST(ALL_LINGUAS) + +# Set DATADIRNAME correctly if it is not set yet +# (copied from glib-gettext.m4) +if test -z "$DATADIRNAME"; then + AC_LINK_IFELSE( + [AC_LANG_PROGRAM([[]], + [[extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr]])], + [DATADIRNAME=share], + [case $host in + *-*-solaris*) + dnl On Solaris, if bind_textdomain_codeset is in libc, + dnl GNU format message catalog is always supported, + dnl since both are added to the libc all together. + dnl Hence, we'd like to go with DATADIRNAME=share + dnl in this case. + AC_CHECK_FUNC(bind_textdomain_codeset, + [DATADIRNAME=share], [DATADIRNAME=lib]) + ;; + *) + [DATADIRNAME=lib] + ;; + esac]) +fi +AC_SUBST(DATADIRNAME) + +IT_PO_SUBDIR([po]) + +]) + + +# IT_PO_SUBDIR(DIRNAME) +# --------------------- +# All po subdirs have to be declared with this macro; the subdir "po" is +# declared by IT_PROG_INTLTOOL. +# +AC_DEFUN([IT_PO_SUBDIR], +[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. +dnl +dnl The following CONFIG_COMMANDS should be exetuted at the very end +dnl of config.status. +AC_CONFIG_COMMANDS_PRE([ + AC_CONFIG_COMMANDS([$1/stamp-it], [ + rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" + >"$1/stamp-it.tmp" + [sed '/^#/d + s/^[[].*] *// + /^[ ]*$/d + '"s|^| $ac_top_srcdir/|" \ + "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" + ] + if test ! -f "$1/Makefile"; then + AC_MSG_ERROR([$1/Makefile is not ready.]) + fi + mv "$1/Makefile" "$1/Makefile.tmp" + [sed '/^POTFILES =/,/[^\\]$/ { + /^POTFILES =/!d + r $1/POTFILES + } + ' "$1/Makefile.tmp" >"$1/Makefile"] + rm -f "$1/Makefile.tmp" + mv "$1/stamp-it.tmp" "$1/stamp-it" + ]) +])dnl +]) + + +# deprecated macros +AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) +# A hint is needed for aclocal from Automake <= 1.9.4: +# AC_DEFUN([AC_PROG_INTLTOOL], ...) + + +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008 Free Software Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file 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. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008 Free Software Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool 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 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 56 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl +_LT_PROG_ECHO_BACKSLASH + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_quote(m4_if([$2], [], + m4_quote(lt_decl_tag_varnames), + m4_quote(m4_shift($@)))), + m4_split(m4_normalize(m4_quote(_LT_TAGS))))]) +m4_define([_lt_decl_varnames_tagged], [lt_combine([$1], [$2], [_], $3)]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "X$" | $Xsed -e "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Fix-up fallback echo if it was mangled by the above quoting rules. +case \$lt_ECHO in +*'\\\[$]0 --fallback-echo"')dnl " + lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\[$]0 --fallback-echo"\[$]/\[$]0 --fallback-echo"/'\` + ;; +esac + +_LT_OUTPUT_LIBTOOL_INIT +]) + + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +cat >"$CONFIG_LT" <<_LTEOF +#! $SHELL +# Generated by $as_me. +# Run this file to recreate a libtool stub with the current configuration. + +lt_cl_silent=false +SHELL=\${CONFIG_SHELL-$SHELL} +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AS_SHELL_SANITIZE +_AS_PREPARE + +exec AS_MESSAGE_FD>&1 +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2008 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +if test "$no_create" != yes; then + lt_cl_success=: + test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" + exec AS_MESSAGE_LOG_FD>/dev/null + $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false + exec AS_MESSAGE_LOG_FD>>config.log + $lt_cl_success || AS_EXIT(1) +fi +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_XSI_SHELLFNS + + sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES +# -------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + if test "$GCC" = "yes"; then + output_verbose_link_cmd=echo + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX +# ----------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +AC_LINK_IFELSE(AC_LANG_PROGRAM,[ +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi],[]) +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[ifdef([AC_DIVERSION_NOTICE], + [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], + [AC_DIVERT_PUSH(NOTICE)]) +$1 +AC_DIVERT_POP +])# _LT_SHELL_INIT + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Add some code to the start of the generated configure script which +# will find an echo command which doesn't interpret backslashes. +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[_LT_SHELL_INIT([ +# Check that we are running under the correct shell. +SHELL=${CONFIG_SHELL-/bin/sh} + +case X$lt_ECHO in +X*--fallback-echo) + # Remove one level of quotation (which was required for Make). + ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` + ;; +esac + +ECHO=${lt_ECHO-echo} +if test "X[$]1" = X--no-reexec; then + # Discard the --no-reexec flag, and continue. + shift +elif test "X[$]1" = X--fallback-echo; then + # Avoid inline document here, it may be left over + : +elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then + # Yippee, $ECHO works! + : +else + # Restart under the correct shell. + exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} +fi + +if test "X[$]1" = X--fallback-echo; then + # used as fallback echo + shift + cat <<_LT_EOF +[$]* +_LT_EOF + exit 0 +fi + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test -z "$lt_ECHO"; then + if test "X${echo_test_string+set}" != Xset; then + # find a string as large as possible, as long as the shell can cope with it + for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do + # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... + if { echo_test_string=`eval $cmd`; } 2>/dev/null && + { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null + then + break + fi + done + fi + + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + : + else + # The Solaris, AIX, and Digital Unix default echo programs unquote + # backslashes. This makes it impossible to quote backslashes using + # echo "$something" | sed 's/\\/\\\\/g' + # + # So, first we look for a working echo in the user's PATH. + + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for dir in $PATH /usr/ucb; do + IFS="$lt_save_ifs" + if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && + test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && + echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$dir/echo" + break + fi + done + IFS="$lt_save_ifs" + + if test "X$ECHO" = Xecho; then + # We didn't find a better echo, so look for alternatives. + if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # This shell has a builtin print -r that does the trick. + ECHO='print -r' + elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && + test "X$CONFIG_SHELL" != X/bin/ksh; then + # If we have ksh, try running configure again with it. + ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} + export ORIGINAL_CONFIG_SHELL + CONFIG_SHELL=/bin/ksh + export CONFIG_SHELL + exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} + else + # Try using printf. + ECHO='printf %s\n' + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # Cool, printf works + : + elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL + export CONFIG_SHELL + SHELL="$CONFIG_SHELL" + export SHELL + ECHO="$CONFIG_SHELL [$]0 --fallback-echo" + elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$CONFIG_SHELL [$]0 --fallback-echo" + else + # maybe with a smaller string... + prev=: + + for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do + if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null + then + break + fi + prev="$cmd" + done + + if test "$prev" != 'sed 50q "[$]0"'; then + echo_test_string=`eval $prev` + export echo_test_string + exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} + else + # Oops. We lost completely, so just stick with echo. + ECHO=echo + fi + fi + fi + fi + fi +fi + +# Copy echo and quote the copy suitably for passing to libtool from +# the Makefile, instead of quoting the original, which is used later. +lt_ECHO=$ECHO +if test "X$lt_ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then + lt_ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" +fi + +AC_SUBST(lt_ECHO) +]) +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], + [An echo program that does not interpret backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line __oline__ "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +sparc*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) LD="${LD-ld} -m elf64_sparc" ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[AC_CHECK_TOOL(AR, ar, false) +test -z "$AR" && AR=ar +test -z "$AR_FLAGS" && AR_FLAGS=cru +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1]) + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" +fi +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ + = "XX$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line __oline__ "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +#ifdef __cplusplus +extern "C" void exit (int); +#endif + +void fnord() { int i=42;} +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + /* dlclose (self); */ + } + else + puts (dlerror ()); + + exit (status); +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` + else + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$host_os in + yes,cygwin* | yes,mingw* | yes,pw32*) + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" + ;; + mingw*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH printed by + # mingw gcc, but we are running on Cygwin. Gcc prints its search + # path with ; separators, and with drive letters. We can handle the + # drive letters (cygwin fileutils understands them), so leave them, + # especially as we might pass files found there to a mingw objdump, + # which wouldn't understand a cygwinified path. Ahh. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd1*) + dynamic_linker=no + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[123]]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; + +interix[[3-9]]*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + # Some binutils ld are patched to set DT_RUNPATH + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux + need_lib_prefix=no + need_version=no + library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method == "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :) + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +const struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_save_LIBS="$LIBS" + lt_save_CFLAGS="$CFLAGS" + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS="$lt_save_LIBS" + CFLAGS="$lt_save_CFLAGS" + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +AC_MSG_CHECKING([for $compiler option to produce PIC]) +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + icpc* | ecpc* ) + # Intel C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC*) + # IBM XL 8.0 on PPC + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + hpux*) + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu) + case $cc_basename in + icc* | ecc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl*) + # IBM XL C 8.0/Fortran 10.1 on PPC + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Sun\ F*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac +AC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw*) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + ;; + linux* | k*bsd*-gnu) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + if test "$with_gnu_ld" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.9.1, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to modify your PATH +*** so that a non-GNU linker is found, and then restart. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag= + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + xl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + _LT_TAGVAR(link_all_deplibs, $1)=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + freebsd1*) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE(int foo(void) {}, + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + ) + LDFLAGS="$save_LDFLAGS" + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_MSG_CHECKING([whether -lc should be explicitly linked in]) + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + AC_MSG_RESULT([$_LT_TAGVAR(archive_cmds_need_lc, $1)]) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1], + [[If ld is used when linking, flag to hardcode $libdir into a binary + during linking. This must work even if $libdir does not exist]]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [fix_srcfile_path], [1], + [Fix the shell variable $srcfile for the compiler]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_PROG_CXX +# ------------ +# Since AC_PROG_CXX is broken, in that it returns g++ if there is no c++ +# compiler, we have our own version here. +m4_defun([_LT_PROG_CXX], +[ +pushdef([AC_MSG_ERROR], [_lt_caught_CXX_error=yes]) +AC_PROG_CXX +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi +popdef([AC_MSG_ERROR]) +])# _LT_PROG_CXX + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([_LT_PROG_CXX], []) + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[AC_REQUIRE([_LT_PROG_CXX])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd[[12]]*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]]* | *pgcpp\ [[1-5]]*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 will use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + xl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='echo' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=echo + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='echo' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +]) +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case $p in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + else + prev= + fi + + if test "$pre_test_object_deps_done" = no; then + case $p in + -L* | -R*) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + ;; + + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_PROG_F77 +# ------------ +# Since AC_PROG_F77 is broken, in that it returns the empty string +# if there is no fortran compiler, we have our own version here. +m4_defun([_LT_PROG_F77], +[ +pushdef([AC_MSG_ERROR], [_lt_disable_F77=yes]) +AC_PROG_F77 +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi +popdef([AC_MSG_ERROR]) +])# _LT_PROG_F77 + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([_LT_PROG_F77], []) + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_REQUIRE([_LT_PROG_F77])dnl +AC_LANG_PUSH(Fortran 77) + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + CC=${F77-"f77"} + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_PROG_FC +# ----------- +# Since AC_PROG_FC is broken, in that it returns the empty string +# if there is no fortran compiler, we have our own version here. +m4_defun([_LT_PROG_FC], +[ +pushdef([AC_MSG_ERROR], [_lt_disable_FC=yes]) +AC_PROG_FC +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi +popdef([AC_MSG_ERROR]) +])# _LT_PROG_FC + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([_LT_PROG_FC], []) + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_REQUIRE([_LT_PROG_FC])dnl +AC_LANG_PUSH(Fortran) + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + CC=${FC-"f95"} + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC="$lt_save_CC" +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC="$lt_save_CC" +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_XSI_SHELLFNS +# --------------------- +# Bourne and XSI compatible variants of some useful shell functions. +m4_defun([_LT_PROG_XSI_SHELLFNS], +[case $xsi_shell in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac +} + +# func_basename file +func_basename () +{ + func_basename_result="${1##*/}" +} + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}" +} + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +func_stripname () +{ + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"} +} + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=${1%%=*} + func_opt_split_arg=${1#*=} +} + +# func_lo2o object +func_lo2o () +{ + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=${1%.*}.lo +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=$(( $[*] )) +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=${#1} +} + +_LT_EOF + ;; + *) # Bourne compatible functions. + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` +} + +dnl func_dirname_and_basename +dnl A portable version of this function is already defined in general.m4sh +dnl so there is no need for it here. + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; + esac +} + +# sed scripts: +my_sed_long_opt='1s/^\(-[[^=]]*\)=.*/\1/;q' +my_sed_long_arg='1s/^-[[^=]]*=//' + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` + func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` +} + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[[^.]]*$/.lo/'` +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "$[@]"` +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len` +} + +_LT_EOF +esac + +case $lt_shell_append in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$[1]+=\$[2]" +} +_LT_EOF + ;; + *) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$[1]=\$$[1]\$[2]" +} + +_LT_EOF + ;; + esac +]) + +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file 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. + +# serial 6 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [0], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [pic_mode="$withval"], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) + +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file 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. + +# serial 5 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +m4_define([lt_combine], +[m4_if([$2], [], [], + [m4_if([$4], [], [], + [lt_join(m4_quote(m4_default([$1], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_prefix, [$2], + [m4_foreach(_Lt_suffix, lt_car([m4_shiftn(3, $@)]), + [_Lt_prefix[]$3[]_Lt_suffix ])])))))])])dnl +]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) + +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file 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. + +# Generated from ltversion.in. + +# serial 2976 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.2.4]) +m4_define([LT_PACKAGE_REVISION], [1.2976]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.2.4' +macro_revision='1.2976' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) + +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file 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. + +# serial 4 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) + +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# +# Copyright © 2004 Scott James Remnant . +# +# This program 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 of the License, or +# (at your option) any later version. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi + +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# +# Similar to PKG_CHECK_MODULES, make sure that the first instance of +# this or PKG_CHECK_MODULES is called, or make sure to call +# PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_ifval([$2], [$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$PKG_CONFIG"; then + if test -n "$$1"; then + pkg_cv_[]$1="$$1" + else + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + fi +else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + + ifelse([$4], , [AC_MSG_ERROR(dnl +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT +])], + [AC_MSG_RESULT([no]) + $4]) +elif test $pkg_failed = untried; then + ifelse([$4], , [AC_MSG_FAILURE(dnl +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +_PKG_TEXT + +To get pkg-config, see .])], + [$4]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + ifelse([$3], , :, [$3]) +fi[]dnl +])# PKG_CHECK_MODULES + +# Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. +# +# This file 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. + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.10' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.10.1], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.10.1])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file 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. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 +# Free Software Foundation, Inc. +# +# This file 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. + +# serial 8 + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 +# Free Software Foundation, Inc. +# +# This file 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. + +# serial 9 + +# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "GCJ", or "OBJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], UPC, [depcc="$UPC" am_compiler_list=], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE(dependency-tracking, +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file 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. + +#serial 3 + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[for mf in $CONFIG_FILES; do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +done +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each `.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2008 Free Software Foundation, Inc. +# +# This file 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. + +# serial 13 + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.60])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AM_PROG_INSTALL_SH +AM_PROG_INSTALL_STRIP +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file 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. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} +AC_SUBST(install_sh)]) + +# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# +# This file 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. + +# serial 2 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +# From Jim Meyering + +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file 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. + +# serial 4 + +AC_DEFUN([AM_MAINTAINER_MODE], +[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) + dnl maintainer-mode is disabled by default + AC_ARG_ENABLE(maintainer-mode, +[ --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer], + USE_MAINTAINER_MODE=$enableval, + USE_MAINTAINER_MODE=no) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST(MAINT)dnl +] +) + +AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# +# This file 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. + +# serial 3 + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo done +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# We grep out `Entering directory' and `Leaving directory' +# messages which can occur if `w' ends up in MAKEFLAGS. +# In particular we don't look at `^make:' because GNU make might +# be invoked under some other name (usually "gmake"), in which +# case it prints its new name instead of `make'. +if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then + am__include=include + am__quote= + _am_result=GNU +fi +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then + am__include=.include + am__quote="\"" + _am_result=BSD + fi +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file 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. + +# serial 5 + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) + +# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# +# This file 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. + +# AM_PROG_MKDIR_P +# --------------- +# Check for `mkdir -p'. +AC_DEFUN([AM_PROG_MKDIR_P], +[AC_PREREQ([2.60])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +dnl while keeping a definition of mkdir_p for backward compatibility. +dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +dnl Makefile.ins that do not define MKDIR_P, so we do our own +dnl adjustment using top_builddir (which is defined more often than +dnl MKDIR_P). +AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +case $mkdir_p in + [[\\/$]]* | ?:[[\\/]]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# +# This file 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. + +# serial 3 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# ------------------------------ +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) +# ---------------------------------- +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 +# Free Software Foundation, Inc. +# +# This file 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. + +# serial 4 + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file 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. + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006 Free Software Foundation, Inc. +# +# This file 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. + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004, 2005 Free Software Foundation, Inc. +# +# This file 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. + +# serial 2 + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. +AM_MISSING_PROG([AMTAR], [tar]) +m4_if([$1], [v7], + [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/autogen.sh /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/autogen.sh --- compiz-fusion-plugins-unsupported-0.7.6/autogen.sh 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/autogen.sh 1970-01-01 01:00:00.000000000 +0100 @@ -1,16 +0,0 @@ -#! /bin/sh - -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. - -ORIGDIR=`pwd` -cd $srcdir - -autoreconf -v --install || exit 1 -glib-gettextize --copy --force || exit 1 -intltoolize --automake --copy --force || exit 1 - -cd $ORIGDIR || exit $? - -$srcdir/configure --enable-maintainer-mode "$@" - diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/cmake/addons.cmake /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/cmake/addons.cmake --- compiz-fusion-plugins-unsupported-0.7.6/cmake/addons.cmake 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/cmake/addons.cmake 1970-01-01 01:00:00.000000000 +0100 @@ -1,171 +0,0 @@ -macro (_format_string str length return) - string (LENGTH "${str}" _str_len) - math (EXPR _add_chr "${length} - ${_str_len}") - set (${return} "${str}") - while (_add_chr GREATER 0) - set (${return} "${${return}} ") - math (EXPR _add_chr "${_add_chr} - 1") - endwhile (_add_chr GREATER 0) -endmacro (_format_string str length return) - -string (ASCII 27 _escape) - -macro (_color_message _str) - if (CMAKE_COLOR_MAKEFILE) - message (${_str}) - else (CMAKE_COLOR_MAKEFILE) - string (REGEX REPLACE "${_escape}.[0123456789;]*m" "" __str ${_str}) - message (${__str}) - endif (CMAKE_COLOR_MAKEFILE) -endmacro (_color_message) - -macro (_get_plugin_stats folder) - _color_message ("\n${_escape}[4mPlugin configure check results:${_escape}[0m\n") - file ( - GLOB _plugins_in - RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}/${folder}" - "${CMAKE_CURRENT_SOURCE_DIR}/${folder}/*/CMakeLists.txt" - ) - foreach (_plugin ${_plugins_in}) - file (READ "${CMAKE_CURRENT_SOURCE_DIR}/${folder}/${_plugin}" _file) - if (_file MATCHES "^.*compiz_fusion_plugin ?\\(([^\\) ]*).*$") - string ( - REGEX REPLACE - "^.*compiz_fusion_plugin ?\\(([^\\) ]*).*$" "\\1" - _plugin_name ${_file} - ) - else (_file MATCHES "^.*compiz_fusion_plugin ?\\(([^\\) ]*).*$") - get_filename_component (_plugin_name ${_plugin} PATH) - endif (_file MATCHES "^.*compiz_fusion_plugin ?\\(([^\\) ]*).*$") - - string (TOUPPER ${_plugin_name} _PLUGIN) - _format_string (${_plugin_name} 14 _plugin_name) - - if (CF_DISABLE_PLUGIN_${_PLUGIN}) - _color_message (" ${_plugin_name}: ${_escape}[1;34mDisabled${_escape}[0m") - else (CF_DISABLE_PLUGIN_${_PLUGIN}) - if (CF_${_PLUGIN}_BUILD) - _color_message (" ${_plugin_name}: ${_escape}[1;32mYes${_escape}[0m") - else (CF_${_PLUGIN}_BUILD) - _color_message (" ${_plugin_name}: ${_escape}[1;31mNo${_escape}[0m (Missing dependencies :${CF_${_PLUGIN}_MISSING_DEPS})") - endif (CF_${_PLUGIN}_BUILD) - endif (CF_DISABLE_PLUGIN_${_PLUGIN}) - endforeach (_plugin ${_plugins_in}) - message ("") -endmacro (_get_plugin_stats) - -macro (cf_print_configure_header) - _format_string ("${PROJECT_NAME}" 40 _project) - _format_string ("${VERSION}" 40 _version) - _color_message ("\n${_escape}[40;37m************************************************************${_escape}[0m") - _color_message ("${_escape}[40;37m* ${_escape}[1;31mCompiz ${_escape}[1;37mFusion ${_escape}[0;40;34mBuildsystem${_escape}[0m${_escape}[40;37m *${_escape}[0m") - _color_message ("${_escape}[40;37m* *${_escape}[0m") - _color_message ("${_escape}[40;37m* Package : ${_escape}[32m${_project} ${_escape}[37m *${_escape}[0m") - _color_message ("${_escape}[40;37m* Version : ${_escape}[32m${_version} ${_escape}[37m *${_escape}[0m") - _color_message ("${_escape}[40;37m************************************************************${_escape}[0m") -endmacro (cf_print_configure_header) - -macro (cf_print_configure_footer) - _color_message ("${_escape}[40;37m************************************************************${_escape}[0m\n") -endmacro (cf_print_configure_footer) - - -macro (cf_print_plugin_configure_results folder) - cf_print_configure_header () - _get_plugin_stats (${folder}) - cf_print_configure_footer () -endmacro (cf_print_plugin_configure_results) - -macro (cf_add_plugins folder) - file ( - GLOB _plugins_in - RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}/${folder}" - "${CMAKE_CURRENT_SOURCE_DIR}/${folder}/*/CMakeLists.txt" - ) - - foreach (_plugin ${_plugins_in}) - get_filename_component (_plugin_dir ${_plugin} PATH) - add_subdirectory (${folder}/${_plugin_dir}) - endforeach (_plugin ${_plugins_in}) -endmacro (cf_add_plugins) - -macro (cf_install_plugin_data_files folder) - - file ( - GLOB_RECURSE _files_in - RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}/${folder}" - "${CMAKE_CURRENT_SOURCE_DIR}/${folder}/*" - ) - - set (_file_names) - set (_file_filter "(^\\.)|(\\.am$)|(CMakeLists.txt)|(Makefile)" CACHED) - set (_dir_filter "(^\\.)|(/\\.)" CACHED) - - foreach (_file ${_files_in}) - get_filename_component (_file_name ${_file} NAME) - get_filename_component (_file_dir ${_file} PATH) - if (NOT "${_file_name}" MATCHES "${_file_filter}" - AND NOT "${_file_dir}" MATCHES "${_dir_filter}") - install ( - FILES ${CMAKE_CURRENT_SOURCE_DIR}/${folder}/${_file} - DESTINATION ${CMAKE_INSTALL_PREFIX}/share/compiz/${_file_dir} - ) - endif (NOT "${_file_name}" MATCHES "${_file_filter}" - AND NOT "${_file_dir}" MATCHES "${_dir_filter}") - endforeach (_file ${_files_in}) - -endmacro (cf_install_plugin_data_files) - -macro (get_version) - file (READ "${CMAKE_CURRENT_SOURCE_DIR}/VERSION" _file) - string ( - REGEX REPLACE - "^.*VERSION=([^\n]*).*$" "\\1" - _version ${_file} - ) - set (VERSION ${_version}) -endmacro (get_version) - - -macro (cf_add_package_generation description) - include(InstallRequiredSystemLibraries) - - set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "${description}") - set (CPACK_PACKAGE_VENDOR "Compiz Fusion") - set (CPACK_PACKAGE_VERSION "${VERSION}") - set (CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION}") - - set (CPACK_SOURCE_GENERATOR "TGZ;TBZ2") - set (CPACK_SOURCE_IGNORE_FILES "\\\\.#;/#;.*~") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/.git/") - list (APPEND CPACK_SOURCE_IGNORE_FILES "${CMAKE_CURRENT_BINARY_DIR}") - list (APPEND CPACK_SOURCE_IGNORE_FILES "Makefile") - list (APPEND CPACK_SOURCE_IGNORE_FILES "Makefile.*") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/autom4te.cache") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/aclocal.m4") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/autogen.sh") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/*.pc") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/config*") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/depcomp") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/install-sh") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/intltool*") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/libtool") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/ltmain.sh") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/missing") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/mkinstalldirs") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/stamp-h1") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/\\\\*.xml") - list (APPEND CPACK_SOURCE_IGNORE_FILES ".intltool-merge-cache") - list (APPEND CPACK_SOURCE_IGNORE_FILES ".deps") - list (APPEND CPACK_SOURCE_IGNORE_FILES ".libs") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/\\\\*.lo") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/\\\\*.o") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/\\\\*_options.*") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/\\\\*.la") - list (APPEND CPACK_SOURCE_IGNORE_FILES "/\\\\*.schema") - list (APPEND CPACK_SOURCE_IGNORE_FILES "CMakeCache.txt") - list (APPEND CPACK_SOURCE_IGNORE_FILES "CMakeFiles") - include(CPack) - - file (REMOVE "${CMAKE_BINARY_DIR}/CPackConfig.cmake") -endmacro (cf_add_package_generation) \ No newline at end of file diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/cmake/CompizFusion.cmake /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/cmake/CompizFusion.cmake --- compiz-fusion-plugins-unsupported-0.7.6/cmake/CompizFusion.cmake 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/cmake/CompizFusion.cmake 1970-01-01 01:00:00.000000000 +0100 @@ -1,671 +0,0 @@ -####################################################################### -# -# Generic Compiz Fusion plugin cmake module -# -# Copyright : (C) 2008 by Dennis Kasprzyk -# E-mail : onestone@opencompositing.org -# -# -# This program 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 -# of the License, or (at your option) any later version. -# -# This program 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. -# -####################################################################### -# -# This module provides the following macro: -# -# compiz_fusion_plugin ( -# [PKGDEPS dep1 dep2 ...] -# [PLUGINDEPS plugin1 plugin2 ...] -# [LDFLAGSADD flag1 flag2 ...] -# [CFLAGSADD flag1 flag2 ...] -# [LIBRARIES lib1 lib2 ...] -# [LIBDIRS dir1 dir2 ...] -# [INCDIRS dir1 dir2 ...]) -# -# PKGDEPS = pkgconfig dependencies -# PLUGINDEPS = compiz plugin dependencies -# LDFLAGSADD = flags added to the link command -# CFLAGSADD = flags added to the compile command -# LIBRARIES = libraries added to link command -# LIBDIRS = additional link directories -# INCDIRS = additional include directories -# -# The following variables will be used by this macro: -# -# BUILD_GLOBAL=true Environment variable to install a plugin -# into the compiz directories -# -# CF_INSTALL_TYPE = (package | compiz | local (default)) -# package = Install into ${MAKE_INSTALL_PREFIX} -# compiz = Install into compiz prefix (=BUILD_GLOBAL=true) -# local = Install into home directory -# -# CF_MIN_COMPIZ_VERSION = Minimal compiz version required for build -# CF_MIN_BCOP_VERSION = Minimal bcop version required for build -# -# CF_PLUGIN_I18N_DIR = Translation file directory -# CF_PLUGIN_INCLUDE_DIR = Path to plugin header files -# CF_PLUGIN_PKGCONFIG_DIR = Path to plugin *.pc.in files -# CF_PLUGIN_XML_DIR = Path to plugin *.xml[.in] files -# -# CF_DISABLE_SCHEMAS_INSTALL = Disables gconf schema installation with gconftool -# CF_INSTALL_GCONF_SCHEMA_DIR = Installation path of the gconf schema file -# -# VERSION = package version that is added to a plugin pkg-version file -# -####################################################################### - -if ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}") - message (SEND_ERROR "Building in the source directory is not supported.") - message (FATAL_ERROR "Please remove the created \"CMakeCache.txt\" file, the \"CMakeFiles\" directory and create a build directory and call \"${CMAKE_COMMAND} \".") -endif ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}") - -if (CMAKE_MAJOR_VERSION GREATER 2 OR CMAKE_MAJOR_VERSION EQUAL 2 AND CMAKE_MINOR_VERSION GREATER 5) -cmake_policy (VERSION 2.4) -cmake_policy(SET CMP0000 OLD) -cmake_policy(SET CMP0005 OLD) -endif (CMAKE_MAJOR_VERSION GREATER 2 OR CMAKE_MAJOR_VERSION EQUAL 2 AND CMAKE_MINOR_VERSION GREATER 5) - -set (CMAKE_SKIP_RPATH On) - -set (PKGCONFIG_REGEX ".*${CMAKE_INSTALL_PREFIX}/lib/pkgconfig:${CMAKE_INSTALL_PREFIX}/share/pkgconfig.*") - -# add install prefix to pkgconfig search path if needed -if (NOT "$ENV{PKG_CONFIG_PATH}" MATCHES "${PKGCONFIG_REGEX}") - if ("" STREQUAL "$ENV{PKG_CONFIG_PATH}") - set (ENV{PKG_CONFIG_PATH} "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig:${CMAKE_INSTALL_PREFIX}/share/pkgconfig") - else ("" STREQUAL "$ENV{PKG_CONFIG_PATH}") - set (ENV{PKG_CONFIG_PATH} - "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig:${CMAKE_INSTALL_PREFIX}/share/pkgconfig:$ENV{PKG_CONFIG_PATH}") - endif ("" STREQUAL "$ENV{PKG_CONFIG_PATH}") -endif (NOT "$ENV{PKG_CONFIG_PATH}" MATCHES "${PKGCONFIG_REGEX}") - -include (FindPkgConfig) - -# unsets the given variable -macro (_cf_unset var) - set (${var} "" CACHE INTERNAL "") -endmacro (_cf_unset) - -# sets the given variable -macro (_cf_set var value) - set (${var} ${value} CACHE INTERNAL "") -endmacro (_cf_set) - -# determinate installation directories -macro (_prepare_directories) - pkg_check_modules (COMPIZ compiz) - if ("${CF_INSTALL_TYPE}" STREQUAL "package") - set (PLUGIN_BUILDTYPE global) - set (PLUGIN_PREFIX ${CMAKE_INSTALL_PREFIX}) - set (PLUGIN_LIBDIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/compiz) - set (PLUGIN_INCDIR ${CMAKE_INSTALL_PREFIX}/include/compiz) - set (PLUGIN_PKGDIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/pkgconfig) - set (PLUGIN_XMLDIR ${CMAKE_INSTALL_PREFIX}/share/compiz) - set (PLUGIN_IMAGEDIR ${CMAKE_INSTALL_PREFIX}/share/compiz) - set (PLUGIN_DATADIR ${CMAKE_INSTALL_PREFIX}/share/compiz) - if (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - set (PLUGIN_SCHEMADIR "${CMAKE_INSTALL_PREFIX}/share/gconf/schemas") - else (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - set (PLUGIN_SCHEMADIR "${CF_INSTALL_GCONF_SCHEMA_DIR}") - endif (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - - elseif ("${CF_INSTALL_TYPE}" STREQUAL "compiz" OR - "$ENV{BUILD_GLOBAL}" STREQUAL "true") - set (PLUGIN_BUILDTYPE global) - set (PLUGIN_PREFIX ${COMPIZ_PREFIX}) - set (PLUGIN_LIBDIR ${COMPIZ_LIBDIR}/compiz) - set (PLUGIN_INCDIR ${COMPIZ_INCLUDEDIR}) - set (PLUGIN_PKGDIR ${COMPIZ_LIBDIR}/pkgconfig) - set (PLUGIN_XMLDIR ${COMPIZ_PREFIX}/share/compiz) - set (PLUGIN_IMAGEDIR ${COMPIZ_PREFIX}/share/compiz) - set (PLUGIN_DATADIR ${COMPIZ_PREFIX}/share/compiz) - if (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - set (PLUGIN_SCHEMADIR "${COMPIZ_PREFIX}/share/gconf/schemas") - else (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - set (PLUGIN_SCHEMADIR "${CF_INSTALL_GCONF_SCHEMA_DIR}") - endif (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - - if (NOT "${CMAKE_BUILD_TYPE}") - _cf_set (CMAKE_BUILD_TYPE debug) - endif (NOT "${CMAKE_BUILD_TYPE}") - else ("${CF_INSTALL_TYPE}" STREQUAL "compiz" OR - "$ENV{BUILD_GLOBAL}" STREQUAL "true") - set (PLUGIN_BUILDTYPE local) - set (PLUGIN_PREFIX $ENV{HOME}/.compiz) - set (PLUGIN_LIBDIR $ENV{HOME}/.compiz/plugins) - set (PLUGIN_XMLDIR $ENV{HOME}/.compiz/metadata) - set (PLUGIN_IMAGEDIR $ENV{HOME}/.compiz/images) - set (PLUGIN_DATADIR $ENV{HOME}/.compiz/data) - - if (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - set (PLUGIN_SCHEMADIR "$ENV{HOME}/.gconf/schemas") - else (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - set (PLUGIN_SCHEMADIR "${CF_INSTALL_GCONF_SCHEMA_DIR}") - endif (NOT CF_INSTALL_GCONF_SCHEMA_DIR) - - if (NOT "${CMAKE_BUILD_TYPE}") - _cf_set (CMAKE_BUILD_TYPE debug) - endif (NOT "${CMAKE_BUILD_TYPE}") - endif ("${CF_INSTALL_TYPE}" STREQUAL "package") -endmacro (_prepare_directories) - -# parse plugin macro parameter -macro (_get_plugin_parameters _prefix) - set (_current_var _foo) - set (_supported_var PKGDEPS PLUGINDEPS LDFLAGSADD CFLAGSADD LIBRARIES LIBDIRS INCDIRS) - foreach (_val ${_supported_var}) - set (${_prefix}_${_val}) - endforeach (_val) - foreach (_val ${ARGN}) - set (_found FALSE) - foreach (_find ${_supported_var}) - if ("${_find}" STREQUAL "${_val}") - set (_found TRUE) - endif ("${_find}" STREQUAL "${_val}") - endforeach (_find) - - if (_found) - set (_current_var ${_prefix}_${_val}) - else (_found) - list (APPEND ${_current_var} ${_val}) - endif (_found) - endforeach (_val) -endmacro (_get_plugin_parameters) - -# check pkgconfig dependencies -macro (_check_plugin_pkg_deps _prefix) - set (${_prefix}_HAS_PKG_DEPS TRUE) - foreach (_val ${ARGN}) - string (TOUPPER ${_val} _name) - pkg_check_modules (_${_name} ${_val}) - - if (_${_name}_FOUND) - list (APPEND ${_prefix}_LIBDIRS "${_${_name}_LIBRARY_DIRS}") - list (APPEND ${_prefix}_LIBRARIES "${_${_name}_LIBRARIES}") - list (APPEND ${_prefix}_INCDIRS "${_${_name}_INCLUDE_DIRS}") - else (_${_name}_FOUND) - set (${_prefix}_HAS_PKG_DEPS FALSE) - _cf_set (CF_${_prefix}_MISSING_DEPS "${CF_${_prefix}_MISSING_DEPS} ${_val}") - set(__pkg_config_checked__${_name} 0 CACHE INTERNAL "" FORCE) - endif (_${_name}_FOUND) - endforeach (_val) -endmacro (_check_plugin_pkg_deps) - -# check plugin dependencies -macro (_check_plugin_plugin_deps _prefix) - set (${_prefix}_HAS_PLUGIN_DEPS TRUE) - foreach (_val ${ARGN}) - string (TOUPPER ${_val} _name) - - find_file ( - _plugin_dep_${_val} - compiz-${_val}.h - PATHS ${CMAKE_CURRENT_SOURCE_DIR} ${CF_PLUGIN_INCLUDE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/../${_val} - NO_DEFAULT_PATH - ) - - if (_plugin_dep_${_val}) - file (RELATIVE_PATH _relative ${CMAKE_CURRENT_SOURCE_DIR} ${_plugin_dep_${_val}}) - get_filename_component (_plugin_inc_dir ${_relative} PATH) - list (APPEND ${_prefix}_INCDIRS ${_plugin_inc_dir}) - else (_plugin_dep_${_val}) - # fallback to pkgconfig - pkg_check_modules (_${_name} compiz-${_val}) - if (_${_name}_FOUND) - list (APPEND ${_prefix}_INCDIRS "${_${_name}_INCLUDE_DIRS}") - else (_${_name}_FOUND) - set (${_prefix}_HAS_PLUGIN_DEPS FALSE) - _cf_set (CF_${_prefix}_MISSING_DEPS "${CF_${_prefix}_MISSING_DEPS} compiz-${_val}") - set(__pkg_config_checked__${_name} 0 CACHE INTERNAL "" FORCE) - endif (_${_name}_FOUND) - endif (_plugin_dep_${_val}) - - _cf_set (_plugin_dep_${_val} "${_plugin_dep_${_val}}") - - endforeach (_val) -endmacro (_check_plugin_plugin_deps) - -# does the plugin require bcop -macro (_is_bcop_plugin _plugin _return _file) - file (READ ${_file} _xml_content) - if ("${_xml_content}" MATCHES "useBcop=\"true\"") - set (${_return} TRUE) - else ("${_xml_content}" MATCHES "useBcop=\"true\"") - set (${_return} FALSE) - endif ("${_xml_content}" MATCHES "useBcop=\"true\"") - -endmacro (_is_bcop_plugin) - -# prepare bcop build -macro (_init_bcop _plugin _file) - exec_program (${PKG_CONFIG_EXECUTABLE} - ARGS "--variable=bin bcop" - OUTPUT_VARIABLE BCOP_EXECUTABLE) - add_custom_command ( - OUTPUT ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h - COMMAND ${BCOP_EXECUTABLE} - --header ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h - ${_file} - DEPENDS ${_file} - ) - add_custom_command ( - OUTPUT ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.c - COMMAND ${BCOP_EXECUTABLE} - --source ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.c - ${_file} - ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h - DEPENDS ${_file} - ${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h - ) - set (BCOP_SOURCES "${CMAKE_BINARY_DIR}/generated/${_plugin}_options.h;${CMAKE_BINARY_DIR}/generated/${_plugin}_options.c") -endmacro (_init_bcop) - -# translate metadata file -macro (_init_translation _plugin _file) - find_program (INTLTOOL_MERGE_EXECUTABLE intltool-merge) - mark_as_advanced (FORCE INTLTOOL_MERGE_EXECUTABLE) - - if (INTLTOOL_MERGE_EXECUTABLE - AND CF_PLUGIN_I18N_DIR - AND EXISTS ${CF_PLUGIN_I18N_DIR}) - add_custom_command ( - OUTPUT ${CMAKE_BINARY_DIR}/generated/${_plugin}.xml - COMMAND ${INTLTOOL_MERGE_EXECUTABLE} -x -u -c - ${CF_PLUGIN_I18N_DIR}/.intltool-merge-cache - ${CF_PLUGIN_I18N_DIR} - ${_file} - ${CMAKE_BINARY_DIR}/generated/${_plugin}.xml - DEPENDS ${_file} - ) - else (INTLTOOL_MERGE_EXECUTABLE - AND CF_PLUGIN_I18N_DIR - AND EXISTS ${CF_PLUGIN_I18N_DIR}) - add_custom_command ( - OUTPUT ${CMAKE_BINARY_DIR}/generated/${_plugin}.xml - COMMAND cat ${_file} | - sed -e 's;<_;<;g' -e 's; - ${CMAKE_BINARY_DIR}/generated/${_plugin}.xml - DEPENDS ${_file} - ) - endif (INTLTOOL_MERGE_EXECUTABLE - AND CF_PLUGIN_I18N_DIR - AND EXISTS ${CF_PLUGIN_I18N_DIR}) - - set (TRANSLATION_SOURCES "${CMAKE_BINARY_DIR}/generated/${_plugin}.xml") -endmacro (_init_translation) - -# generate gconf schema -macro (_init_gconf_schema _plugin _xml) - if (CF_MIN_COMPIZ_VERSION) - pkg_check_modules (_COMPIZ_GCONF compiz-gconf>=${CF_MIN_COMPIZ_VERSION}) - else (CF_MIN_COMPIZ_VERSION) - pkg_check_modules (_COMPIZ_GCONF compiz-gconf) - endif (CF_MIN_COMPIZ_VERSION) - - find_program (XSLTPROC_EXECUTABLE xsltproc) - mark_as_advanced (FORCE XSLTPROC_EXECUTABLE) - - if (_COMPIZ_GCONF_FOUND AND XSLTPROC_EXECUTABLE) - exec_program (${PKG_CONFIG_EXECUTABLE} - ARGS "--variable=xsltdir compiz-gconf" - OUTPUT_VARIABLE _SCHEMA_XSLT_DIR) - add_custom_command ( - OUTPUT ${CMAKE_BINARY_DIR}/generated/compiz-${_plugin}.schema - COMMAND ${XSLTPROC_EXECUTABLE} - ${_SCHEMA_XSLT_DIR}/schemas.xslt - ${_xml} > - ${CMAKE_BINARY_DIR}/generated/compiz-${_plugin}.schema - DEPENDS ${_xml} - ) - - find_program (GCONFTOOL_EXECUTABLE gconftool-2) - mark_as_advanced (FORCE GCONFTOOL_EXECUTABLE) - - if (GCONFTOOL_EXECUTABLE AND NOT CF_DISABLE_SCHEMAS_INSTALL) - install (CODE " - if (\"\$ENV{USER}\" STREQUAL \"root\") - exec_program (${GCONFTOOL_EXECUTABLE} - ARGS \"--get-default-source\" - OUTPUT_VARIABLE ENV{GCONF_CONFIG_SOURCE}) - exec_program (${GCONFTOOL_EXECUTABLE} - ARGS \"--makefile-install-rule ${CMAKE_BINARY_DIR}/generated/compiz-${_plugin}.schema > /dev/null\") - else (\"\$ENV{USER}\" STREQUAL \"root\") - exec_program (${GCONFTOOL_EXECUTABLE} - ARGS \"--install-schema-file=${CMAKE_BINARY_DIR}/generated/compiz-${_plugin}.schema > /dev/null\") - endif (\"\$ENV{USER}\" STREQUAL \"root\") - ") - endif (GCONFTOOL_EXECUTABLE AND NOT CF_DISABLE_SCHEMAS_INSTALL) - install ( - FILES "${CMAKE_BINARY_DIR}/generated/compiz-${_plugin}.schema" - DESTINATION "${PLUGIN_SCHEMADIR}" - ) - - set (SCHEMA_SOURCES "${CMAKE_BINARY_DIR}/generated/compiz-${_plugin}.schema") - endif (_COMPIZ_GCONF_FOUND AND XSLTPROC_EXECUTABLE) -endmacro (_init_gconf_schema) - -macro (compiz_fusion_add_uninstall) - if (NOT _cf_uninstall_rule_created) - _cf_set(_cf_uninstall_rule_created TRUE) - - set (_file "${CMAKE_BINARY_DIR}/cmake_uninstall.cmake") - - file (WRITE ${_file} "if (NOT EXISTS \"${CMAKE_BINARY_DIR}/install_manifest.txt\")\n") - file (APPEND ${_file} " message (FATAL_ERROR \"Cannot find install manifest: \\\"${CMAKE_BINARY_DIR}/install_manifest.txt\\\"\")\n") - file (APPEND ${_file} "endif (NOT EXISTS \"${CMAKE_BINARY_DIR}/install_manifest.txt\")\n\n") - file (APPEND ${_file} "file (READ \"${CMAKE_BINARY_DIR}/install_manifest.txt\" files)\n") - file (APPEND ${_file} "string (REGEX REPLACE \"\\n\" \";\" files \"\${files}\")\n") - file (APPEND ${_file} "foreach (file \${files})\n") - file (APPEND ${_file} " message (STATUS \"Uninstalling \\\"\${file}\\\"\")\n") - file (APPEND ${_file} " if (EXISTS \"\${file}\")\n") - file (APPEND ${_file} " exec_program(\n") - file (APPEND ${_file} " \"${CMAKE_COMMAND}\" ARGS \"-E remove \\\"\${file}\\\"\"\n") - file (APPEND ${_file} " OUTPUT_VARIABLE rm_out\n") - file (APPEND ${_file} " RETURN_VALUE rm_retval\n") - file (APPEND ${_file} " )\n") - file (APPEND ${_file} " if (\"\${rm_retval}\" STREQUAL 0)\n") - file (APPEND ${_file} " else (\"\${rm_retval}\" STREQUAL 0)\n") - file (APPEND ${_file} " message (FATAL_ERROR \"Problem when removing \\\"\${file}\\\"\")\n") - file (APPEND ${_file} " endif (\"\${rm_retval}\" STREQUAL 0)\n") - file (APPEND ${_file} " else (EXISTS \"\${file}\")\n") - file (APPEND ${_file} " message (STATUS \"File \\\"\${file}\\\" does not exist.\")\n") - file (APPEND ${_file} " endif (EXISTS \"\${file}\")\n") - file (APPEND ${_file} "endforeach (file)\n") - - add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_BINARY_DIR}/cmake_uninstall.cmake") - - endif (NOT _cf_uninstall_rule_created) -endmacro (compiz_fusion_add_uninstall) - -# main macro -macro (_build_compiz_fusion_plugin plugin) - string (TOUPPER ${plugin} _PLUGIN) - - if (CF_INSTALL_TYPE) - set ( - CF_INSTALL_TYPE ${CF_INSTALL_TYPE} CACHE STRING - "Where a plugin should be installed \(package | compiz | local\)" - ) - else (CF_INSTALL_TYPE) - set ( - CF_INSTALL_TYPE "local" CACHE STRING - "Where a plugin should be installed \(package | compiz | local\)" - ) - endif (CF_INSTALL_TYPE) - - set ( - CF_MIN_COMPIZ_VERSION ${CF_MIN_COMPIZ_VERSION} CACHE STRING - "Minimal compiz version required for build" - ) - set ( - CF_MIN_BCOP_VERSION ${CF_MIN_BCOP_VERSION} CACHE STRING - "Minimal bcop version required for build" - ) - - set ( - CF_PLUGIN_I18N_DIR ${CF_PLUGIN_I18N_DIR} CACHE PATH - "Translation file directory" - ) - set ( - CF_PLUGIN_INCLUDE_DIR ${CF_PLUGIN_INCLUDE_DIR} - CACHE PATH "Path to plugin header files" - ) - set ( - CF_PLUGIN_PKGCONFIG_DIR ${CF_PLUGIN_PKGCONFIG_DIR} - CACHE PATH "Path to plugin *.pc.in files" - ) - set ( - CF_PLUGIN_XML_DIR ${CF_PLUGIN_XML_DIR} CACHE PATH - "Path to plugin *.xml[.in] files" - ) - - option ( - CF_DISABLE_SCHEMAS_INSTALL - "Disables gconf schema installation with gconftool" - OFF - ) - - set ( - CF_INSTALL_GCONF_SCHEMA_DIR ${CF_INSTALL_GCONF_SCHEMA_DIR} CACHE PATH - "Installation path of the gconf schema file" - ) - - set ( - VERSION ${VERSION} CACHE STRING - "Package version that is added to a plugin pkg-version file" - ) - - # check for compiz - if (CF_MIN_COMPIZ_VERSION) - pkg_check_modules (COMPIZ REQUIRED compiz>=${CF_MIN_COMPIZ_VERSION}) - else (CF_MIN_COMPIZ_VERSION) - pkg_check_modules (COMPIZ REQUIRED compiz) - endif (CF_MIN_COMPIZ_VERSION) - - _get_plugin_parameters (${_PLUGIN} ${ARGN}) - _prepare_directories () - - find_file ( - _${plugin}_xml_in ${plugin}.xml.in - PATHS ${CMAKE_CURRENT_SOURCE_DIR} ${CF_PLUGIN_XML_DIR} - NO_DEFAULT_PATH - ) - if (_${plugin}_xml_in) - set (_${plugin}_xml ${_${plugin}_xml_in}) - else (_${plugin}_xml_in) - find_file ( - _${plugin}_xml ${plugin}.xml - PATHS ${CMAKE_CURRENT_SOURCE_DIR} ${CF_PLUGIN_XML_DIR} - NO_DEFAULT_PATH - ) - endif (_${plugin}_xml_in) - - if (_${plugin}_xml) - # do we need bcop for our plugin - _is_bcop_plugin (${plugin} _needs_bcop ${_${plugin}_xml}) - endif (_${plugin}_xml) - - if (_needs_bcop) - if (CF_MIN_BCOP_VERSION) - list (APPEND ${_PLUGIN}_PKGDEPS bcop>=${CF_MIN_BCOP_VERSION}) - else (CF_MIN_BCOP_VERSION) - list (APPEND ${_PLUGIN}_PKGDEPS bcop) - endif (CF_MIN_BCOP_VERSION) - endif (_needs_bcop) - - - set (${_PLUGIN}_HAS_PKG_DEPS) - set (${_PLUGIN}_HAS_PLUGIN_DEPS) - - # check dependencies - _cf_unset (CF_${_PLUGIN}_MISSING_DEPS) - _check_plugin_pkg_deps (${_PLUGIN} ${${_PLUGIN}_PKGDEPS}) - _check_plugin_plugin_deps (${_PLUGIN} ${${_PLUGIN}_PLUGINDEPS}) - - if (COMPIZ_FOUND AND ${_PLUGIN}_HAS_PKG_DEPS AND ${_PLUGIN}_HAS_PLUGIN_DEPS) - - _cf_set (CF_${_PLUGIN}_BUILD TRUE) - - if (NOT EXISTS ${CMAKE_BINARY_DIR}/generated) - file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/generated) - endif (NOT EXISTS ${CMAKE_BINARY_DIR}/generated) - - if (_${plugin}_xml_in) - # translate xml - _init_translation (${plugin} ${_${plugin}_xml_in}) - set (_translated_xml ${CMAKE_BINARY_DIR}/generated/${plugin}.xml) - else (_${plugin}_xml_in) - if (_${plugin}_xml) - set (_translated_xml ${_${plugin}_xml}) - endif (_${plugin}_xml) - endif (_${plugin}_xml_in) - - if (_${plugin}_xml) - # do we need bcop for our plugin - _is_bcop_plugin (${plugin} _needs_bcop ${_${plugin}_xml}) - if (_needs_bcop) - # initialize everything we need for bcop - _init_bcop (${plugin} ${_${plugin}_xml}) - endif (_needs_bcop) - endif (_${plugin}_xml) - - if (_needs_bcop) - # initialize everything we need for bcop - _init_bcop (${plugin} ${_${plugin}_xml}) - endif (_needs_bcop) - - if (_translated_xml) - # generate gconf schema - _init_gconf_schema (${plugin} ${_translated_xml}) - - # install xml - install ( - FILES ${_translated_xml} - DESTINATION ${PLUGIN_XMLDIR} - ) - endif (_translated_xml) - - find_file ( - _${plugin}_hdr compiz-${plugin}.h - PATHS ${CMAKE_CURRENT_SOURCE_DIR} ${CF_PLUGIN_INCLUDE_DIR} - NO_DEFAULT_PATH - ) - - find_file ( - _${plugin}_pkg compiz-${plugin}.pc.in - PATHS ${CMAKE_CURRENT_SOURCE_DIR} ${CF_PLUGIN_PKGCONFIG_DIR} - NO_DEFAULT_PATH - ) - - # generate pkgconfig file and install it and the plugin header file - if (_${plugin}_hdr AND _${plugin}_pkg) - if ("${PLUGIN_BUILDTYPE}" STREQUAL "local") - message (STATUS "[WARNING] The plugin ${plugin} might be needed by other plugins. Install it systemwide.") - else ("${PLUGIN_BUILDTYPE}" STREQUAL "local") - set (prefix ${PLUGIN_PREFIX}) - set (libdir ${PLUGIN_LIBDIR}) - set (includedir ${PLUGIN_INCDIR}) - if (NOT VERSION) - set (VERSION 0.0.1-git) - endif (NOT VERSION) - configure_file ( - ${_${plugin}_pkg} - ${CMAKE_BINARY_DIR}/generated/compiz-${plugin}.pc - ) - - install ( - FILES ${CMAKE_BINARY_DIR}/generated/compiz-${plugin}.pc - DESTINATION ${PLUGIN_PKGDIR} - ) - install ( - FILES ${_${plugin}_hdr} - DESTINATION ${PLUGIN_INCDIR} - ) - endif ("${PLUGIN_BUILDTYPE}" STREQUAL "local") - endif (_${plugin}_hdr AND _${plugin}_pkg) - - # install plugin data files - if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/data) - install ( - DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data - DESTINATION ${PLUGIN_DATADIR} - ) - endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/data) - - # install plugin image files - if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/images) - install ( - DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/images - DESTINATION ${PLUGIN_IMAGEDIR} - ) - endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/images) - - # find files for build - file (GLOB _h_files "${CMAKE_CURRENT_SOURCE_DIR}/*.h") - file (GLOB _c_files "${CMAKE_CURRENT_SOURCE_DIR}/*.c") - file (GLOB _cpp_files "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp") - file (GLOB _cxx_files "${CMAKE_CURRENT_SOURCE_DIR}/*.cxx") - - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs") - - set (_cflags "-Wall -Wpointer-arith -fno-strict-aliasing") - - - add_definitions (-DPREFIX='\"${PLUGIN_PREFIX}\"' - -DIMAGEDIR='\"${PLUGIN_IMAGEDIR}\"' - -DDATADIR='\"${PLUGIN_DATADIR}\"') - - include_directories ( - ${CMAKE_CURRENT_SOURCE_DIR} - ${CF_PLUGIN_INCLUDE_DIR} - ${CMAKE_BINARY_DIR}/generated - ${${_PLUGIN}_INCDIRS} - ${COMPIZ_INCLUDE_DIRS} - ) - - link_directories ( - ${COMPIZ_LINK_DIRS} - ${${_PLUGIN}_LIBDIRS} - ) - - add_library ( - ${plugin} SHARED ${_c_files} - ${_cpp_files} - ${_cxx_files} - ${_h_files} - ${BCOP_SOURCES} - ${TRANSLATION_SOURCES} - ${SCHEMA_SOURCES} - ) - - set_target_properties ( - ${plugin} PROPERTIES - COMPILE_FLAGS "${_cflags} ${${_PLUGIN}_CFLAGSADD}" - LINK_FLAGS "${${_PLUGIN}_LDFLAGSADD}" - ) - - target_link_libraries ( - ${plugin} ${COMPIZ_LIBRARIES} - ${${_PLUGIN}_LIBRARIES} - ) - - install ( - TARGETS ${plugin} - LIBRARY DESTINATION ${PLUGIN_LIBDIR} - ) - - compiz_fusion_add_uninstall () - - else (COMPIZ_FOUND AND ${_PLUGIN}_HAS_PKG_DEPS AND ${_PLUGIN}_HAS_PLUGIN_DEPS) - message (STATUS "[WARNING] One or more dependencies for compiz plugin ${plugin} not found. Skipping plugin.") - message (STATUS "Missing dependencies :${CF_${_PLUGIN}_MISSING_DEPS}") - _cf_set (CF_${_PLUGIN}_BUILD FALSE) - endif (COMPIZ_FOUND AND ${_PLUGIN}_HAS_PKG_DEPS AND ${_PLUGIN}_HAS_PLUGIN_DEPS) - - _cf_set (_${plugin}_hdr "${_${plugin}_hdr}") - _cf_set (_${plugin}_pkg "${_${plugin}_pkg}") - _cf_set (_${plugin}_xml "${_${plugin}_xml}") - _cf_set (_${plugin}_xml_in "${_${plugin}_xml_in}") -endmacro (_build_compiz_fusion_plugin) - -macro (compiz_fusion_plugin plugin) - string (TOUPPER ${plugin} _PLUGIN) - option ( - CF_DISABLE_PLUGIN_${_PLUGIN} - "Disable building of plugin \"${plugin}\"" - OFF - ) - - if (NOT CF_DISABLE_PLUGIN_${_PLUGIN}) - _build_compiz_fusion_plugin (${plugin} ${ARGN}) - endif (NOT CF_DISABLE_PLUGIN_${_PLUGIN}) -endmacro (compiz_fusion_plugin) \ No newline at end of file diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/CMakeLists.txt /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/CMakeLists.txt --- compiz-fusion-plugins-unsupported-0.7.6/CMakeLists.txt 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,27 +0,0 @@ -project (compiz-fusion-plugins-unsupported) - -cmake_minimum_required (VERSION 2.4) - -set (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) -include (cmake/addons.cmake) -include (cmake/CompizFusion.cmake) - -get_version () - -set (CF_INSTALL_TYPE package) - -set (CF_MIN_COMPIZ_VERSION ${VERSION}) -set (CF_MIN_BCOP_VERSION ${VERSION}) - -set (CF_PLUGIN_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include") -set (CF_PLUGIN_PKGCONFIG_DIR "${CMAKE_CURRENT_SOURCE_DIR}") -set (CF_PLUGIN_XML_DIR "${CMAKE_CURRENT_SOURCE_DIR}/metadata") -set (CF_PLUGIN_I18N_DIR "${CMAKE_CURRENT_SOURCE_DIR}/po") - -compiz_fusion_add_uninstall () -cf_add_plugins (src) -cf_install_plugin_data_files (images) -cf_install_plugin_data_files (data) -cf_print_plugin_configure_results (src) - -cf_add_package_generation ("Compiz Fusion Plugins Unsupported") diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/config.guess /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/config.guess --- compiz-fusion-plugins-unsupported-0.7.6/config.guess 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/config.guess 2008-09-18 17:22:28.000000000 +0100 @@ -0,0 +1,1526 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. + +timestamp='2008-01-23' + +# This file 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 of the License, or +# (at your option) any later version. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Originally written by Per Bothner . +# Please send patches to . Submit a context +# diff and a properly formatted ChangeLog entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# The plan is that this can be called by configure scripts if you +# don't specify an explicit build system type. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep __ELF__ >/dev/null + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + exit ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[456]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep __LP64__ >/dev/null + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + case ${UNAME_MACHINE} in + pc98) + echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo cris-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef mips + #undef mipsel + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=mipsel + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips + #else + CPU= + #endif + #endif +EOF + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^CPU/{ + s: ::g + p + }'`" + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef mips64 + #undef mips64el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=mips64el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips64 + #else + CPU= + #endif + #endif +EOF + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^CPU/{ + s: ::g + p + }'`" + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo or32-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + # The BFD linker knows what the default object file format is, so + # first see if it will tell us. cd to the root directory to prevent + # problems with other programs or directories called `ld' in the path. + # Set LC_ALL=C to ensure ld outputs messages in English. + ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ + | sed -ne '/supported targets:/!d + s/[ ][ ]*/ /g + s/.*supported targets: *// + s/ .*// + p'` + case "$ld_supported_targets" in + elf32-i386) + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" + ;; + a.out-i386-linux) + echo "${UNAME_MACHINE}-pc-linux-gnuaout" + exit ;; + coff-i386) + echo "${UNAME_MACHINE}-pc-linux-gnucoff" + exit ;; + "") + # Either a pre-BFD a.out linker (linux-gnuoldld) or + # one that does not give us useful --help. + echo "${UNAME_MACHINE}-pc-linux-gnuoldld" + exit ;; + esac + # Determine whether the default compiler is a.out or elf + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + #ifdef __ELF__ + # ifdef __GLIBC__ + # if __GLIBC__ >= 2 + LIBC=gnu + # else + LIBC=gnulibc1 + # endif + # else + LIBC=gnulibc1 + # endif + #else + #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) + LIBC=gnu + #else + LIBC=gnuaout + #endif + #endif + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^LIBC/{ + s: ::g + p + }'`" + test x"${LIBC}" != x && { + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit + } + test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } + ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i386. + echo i386-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/config.h.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/config.h.in --- compiz-fusion-plugins-unsupported-0.7.6/config.h.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/config.h.in 2008-09-18 17:22:33.000000000 +0100 @@ -0,0 +1,90 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* always defined to indicate that i18n is enabled */ +#undef ENABLE_NLS + +/* Gettext package. */ +#undef GETTEXT_PACKAGE + +/* Define to 1 if you have the `bind_textdomain_codeset' function. */ +#undef HAVE_BIND_TEXTDOMAIN_CODESET + +/* Define to 1 if you have the `dcgettext' function. */ +#undef HAVE_DCGETTEXT + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#undef HAVE_GETTEXT + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define if your file defines LC_MESSAGES. */ +#undef HAVE_LC_MESSAGES + +/* Define to 1 if you have the header file. */ +#undef HAVE_LOCALE_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TIME_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Build gconf schemas */ +#undef USE_SCHEMAS + +/* Version number of package */ +#undef VERSION + +/* Define to 1 if your processor stores words with the most significant byte + first (like Motorola and SPARC, unlike Intel and VAX). */ +#undef WORDS_BIGENDIAN diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/config.sub /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/config.sub --- compiz-fusion-plugins-unsupported-0.7.6/config.sub 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/config.sub 2008-09-18 17:22:28.000000000 +0100 @@ -0,0 +1,1658 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. + +timestamp='2008-01-16' + +# This file is (in principle) common to ALL GNU software. +# The presence of a machine in this file suggests that SOME GNU software +# can handle that machine. It does not imply ALL GNU software can. +# +# This file 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 of the License, or +# (at your option) any later version. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Please send patches to . Submit a context +# diff and a properly formatted ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ + uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray) + os= + basic_machine=$1 + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64vr | mips64vrel \ + | mips64orion | mips64orionel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | mt \ + | msp430 \ + | nios | nios2 \ + | ns16k | ns32k \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ + | pyramid \ + | score \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu | strongarm \ + | tahoe | thumb | tic4x | tic80 | tron \ + | v850 | v850e \ + | we32k \ + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ + | z8k) + basic_machine=$basic_machine-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12) + # Motorola 68HC11/12. + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ + | pyramid-* \ + | romp-* | rs6000-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tron-* \ + | v850-* | v850e-* | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc) basic_machine=powerpc-unknown + ;; + ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tic54x | c54x*) + basic_machine=tic54x-unknown + os=-coff + ;; + tic55x | c55x*) + basic_machine=tic55x-unknown + os=-coff + ;; + tic6x | c6x*) + basic_machine=tic6x-unknown + os=-coff + ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* \ + | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + # This also exists in the configure program, but was not the + # default. + # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/configure /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/configure --- compiz-fusion-plugins-unsupported-0.7.6/configure 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/configure 2008-09-18 17:22:32.000000000 +0100 @@ -0,0 +1,17562 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.61 for compiz-fusion-plugins-unsupported 0.7.8. +# +# Report bugs to . +# +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## --------------------- ## +## M4sh Initialization. ## +## --------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + + + +# PATH needs CR +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Support unset when possible. +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + as_unset=unset +else + as_unset=false +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +as_nl=' +' +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } +fi + +# Work around bugs in pre-3.0 UWIN ksh. +for as_var in ENV MAIL MAILPATH +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +for as_var in \ + LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ + LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ + LC_TELEPHONE LC_TIME +do + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then + eval $as_var=C; export $as_var + else + ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + fi +done + +# Required to use basename. +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + + +# Name of the executable. +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# CDPATH. +$as_unset CDPATH + + +if test "x$CONFIG_SHELL" = x; then + if (eval ":") 2>/dev/null; then + as_have_required=yes +else + as_have_required=no +fi + + if test $as_have_required = yes && (eval ": +(as_func_return () { + (exit \$1) +} +as_func_success () { + as_func_return 0 +} +as_func_failure () { + as_func_return 1 +} +as_func_ret_success () { + return 0 +} +as_func_ret_failure () { + return 1 +} + +exitcode=0 +if as_func_success; then + : +else + exitcode=1 + echo as_func_success failed. +fi + +if as_func_failure; then + exitcode=1 + echo as_func_failure succeeded. +fi + +if as_func_ret_success; then + : +else + exitcode=1 + echo as_func_ret_success failed. +fi + +if as_func_ret_failure; then + exitcode=1 + echo as_func_ret_failure succeeded. +fi + +if ( set x; as_func_ret_success y && test x = \"\$1\" ); then + : +else + exitcode=1 + echo positional parameters were not saved. +fi + +test \$exitcode = 0) || { (exit 1); exit 1; } + +( + as_lineno_1=\$LINENO + as_lineno_2=\$LINENO + test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && + test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } +") 2> /dev/null; then + : +else + as_candidate_shells= + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + case $as_dir in + /*) + for as_base in sh bash ksh sh5; do + as_candidate_shells="$as_candidate_shells $as_dir/$as_base" + done;; + esac +done +IFS=$as_save_IFS + + + for as_shell in $as_candidate_shells $SHELL; do + # Try only shells that exist, to save several forks. + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { ("$as_shell") 2> /dev/null <<\_ASEOF +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + +: +_ASEOF +}; then + CONFIG_SHELL=$as_shell + as_have_required=yes + if { "$as_shell" 2> /dev/null <<\_ASEOF +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + +: +(as_func_return () { + (exit $1) +} +as_func_success () { + as_func_return 0 +} +as_func_failure () { + as_func_return 1 +} +as_func_ret_success () { + return 0 +} +as_func_ret_failure () { + return 1 +} + +exitcode=0 +if as_func_success; then + : +else + exitcode=1 + echo as_func_success failed. +fi + +if as_func_failure; then + exitcode=1 + echo as_func_failure succeeded. +fi + +if as_func_ret_success; then + : +else + exitcode=1 + echo as_func_ret_success failed. +fi + +if as_func_ret_failure; then + exitcode=1 + echo as_func_ret_failure succeeded. +fi + +if ( set x; as_func_ret_success y && test x = "$1" ); then + : +else + exitcode=1 + echo positional parameters were not saved. +fi + +test $exitcode = 0) || { (exit 1); exit 1; } + +( + as_lineno_1=$LINENO + as_lineno_2=$LINENO + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } + +_ASEOF +}; then + break +fi + +fi + + done + + if test "x$CONFIG_SHELL" != x; then + for as_var in BASH_ENV ENV + do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + done + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +fi + + + if test $as_have_required = no; then + echo This script requires a shell more modern than all the + echo shells that I found on your system. Please install a + echo modern shell, or manually run the script under such a + echo shell if you do have one. + { (exit 1); exit 1; } +fi + + +fi + +fi + + + +(eval "as_func_return () { + (exit \$1) +} +as_func_success () { + as_func_return 0 +} +as_func_failure () { + as_func_return 1 +} +as_func_ret_success () { + return 0 +} +as_func_ret_failure () { + return 1 +} + +exitcode=0 +if as_func_success; then + : +else + exitcode=1 + echo as_func_success failed. +fi + +if as_func_failure; then + exitcode=1 + echo as_func_failure succeeded. +fi + +if as_func_ret_success; then + : +else + exitcode=1 + echo as_func_ret_success failed. +fi + +if as_func_ret_failure; then + exitcode=1 + echo as_func_ret_failure succeeded. +fi + +if ( set x; as_func_ret_success y && test x = \"\$1\" ); then + : +else + exitcode=1 + echo positional parameters were not saved. +fi + +test \$exitcode = 0") || { + echo No shell found that supports shell functions. + echo Please tell autoconf@gnu.org about your system, + echo including any error possibly output before this + echo message +} + + + + as_lineno_1=$LINENO + as_lineno_2=$LINENO + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { + + # Create $as_me.lineno as a copy of $as_myself, but with $LINENO + # uniformly replaced by the line number. The first 'sed' inserts a + # line-number line after each line using $LINENO; the second 'sed' + # does the real work. The second script uses 'N' to pair each + # line-number line with the line containing $LINENO, and appends + # trailing '-' during substitution so that $LINENO is not a special + # case at line end. + # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the + # scripts with optimization help from Paolo Bonzini. Blame Lee + # E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in +-n*) + case `echo 'x\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + *) ECHO_C='\c';; + esac;; +*) + ECHO_N='-n';; +esac + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir +fi +echo >conf$$.file +if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' +elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p=: +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + + + +# Check that we are running under the correct shell. +SHELL=${CONFIG_SHELL-/bin/sh} + +case X$lt_ECHO in +X*--fallback-echo) + # Remove one level of quotation (which was required for Make). + ECHO=`echo "$lt_ECHO" | sed 's,\\\\\$\\$0,'$0','` + ;; +esac + +ECHO=${lt_ECHO-echo} +if test "X$1" = X--no-reexec; then + # Discard the --no-reexec flag, and continue. + shift +elif test "X$1" = X--fallback-echo; then + # Avoid inline document here, it may be left over + : +elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then + # Yippee, $ECHO works! + : +else + # Restart under the correct shell. + exec $SHELL "$0" --no-reexec ${1+"$@"} +fi + +if test "X$1" = X--fallback-echo; then + # used as fallback echo + shift + cat <<_LT_EOF +$* +_LT_EOF + exit 0 +fi + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test -z "$lt_ECHO"; then + if test "X${echo_test_string+set}" != Xset; then + # find a string as large as possible, as long as the shell can cope with it + for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do + # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... + if { echo_test_string=`eval $cmd`; } 2>/dev/null && + { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null + then + break + fi + done + fi + + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + : + else + # The Solaris, AIX, and Digital Unix default echo programs unquote + # backslashes. This makes it impossible to quote backslashes using + # echo "$something" | sed 's/\\/\\\\/g' + # + # So, first we look for a working echo in the user's PATH. + + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for dir in $PATH /usr/ucb; do + IFS="$lt_save_ifs" + if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && + test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && + echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$dir/echo" + break + fi + done + IFS="$lt_save_ifs" + + if test "X$ECHO" = Xecho; then + # We didn't find a better echo, so look for alternatives. + if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # This shell has a builtin print -r that does the trick. + ECHO='print -r' + elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && + test "X$CONFIG_SHELL" != X/bin/ksh; then + # If we have ksh, try running configure again with it. + ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} + export ORIGINAL_CONFIG_SHELL + CONFIG_SHELL=/bin/ksh + export CONFIG_SHELL + exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} + else + # Try using printf. + ECHO='printf %s\n' + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # Cool, printf works + : + elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL + export CONFIG_SHELL + SHELL="$CONFIG_SHELL" + export SHELL + ECHO="$CONFIG_SHELL $0 --fallback-echo" + elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$CONFIG_SHELL $0 --fallback-echo" + else + # maybe with a smaller string... + prev=: + + for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do + if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null + then + break + fi + prev="$cmd" + done + + if test "$prev" != 'sed 50q "$0"'; then + echo_test_string=`eval $prev` + export echo_test_string + exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} + else + # Oops. We lost completely, so just stick with echo. + ECHO=echo + fi + fi + fi + fi + fi +fi + +# Copy echo and quote the copy suitably for passing to libtool from +# the Makefile, instead of quoting the original, which is used later. +lt_ECHO=$ECHO +if test "X$lt_ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then + lt_ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" +fi + + + + +exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= +SHELL=${CONFIG_SHELL-/bin/sh} + +# Identity of this package. +PACKAGE_NAME='compiz-fusion-plugins-unsupported' +PACKAGE_TARNAME='compiz-fusion-plugins-unsupported' +PACKAGE_VERSION='0.7.8' +PACKAGE_STRING='compiz-fusion-plugins-unsupported 0.7.8' +PACKAGE_BUGREPORT='maniac@opencompositing.org' + +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='SHELL +PATH_SEPARATOR +PACKAGE_NAME +PACKAGE_TARNAME +PACKAGE_VERSION +PACKAGE_STRING +PACKAGE_BUGREPORT +exec_prefix +prefix +program_transform_name +bindir +sbindir +libexecdir +datarootdir +datadir +sysconfdir +sharedstatedir +localstatedir +includedir +oldincludedir +docdir +infodir +htmldir +dvidir +pdfdir +psdir +libdir +localedir +mandir +DEFS +ECHO_C +ECHO_N +ECHO_T +LIBS +build_alias +host_alias +target_alias +INSTALL_PROGRAM +INSTALL_SCRIPT +INSTALL_DATA +am__isrc +CYGPATH_W +PACKAGE +VERSION +ACLOCAL +AUTOCONF +AUTOMAKE +AUTOHEADER +MAKEINFO +install_sh +STRIP +INSTALL_STRIP_PROGRAM +mkdir_p +AWK +SET_MAKE +am__leading_dot +AMTAR +am__tar +am__untar +MAINTAINER_MODE_TRUE +MAINTAINER_MODE_FALSE +MAINT +CC +CFLAGS +LDFLAGS +CPPFLAGS +ac_ct_CC +EXEEXT +OBJEXT +DEPDIR +am__include +am__quote +AMDEP_TRUE +AMDEP_FALSE +AMDEPBACKSLASH +CCDEPMODE +am__fastdepCC_TRUE +am__fastdepCC_FALSE +CPP +LIBTOOL +build +build_cpu +build_vendor +build_os +host +host_cpu +host_vendor +host_os +SED +GREP +EGREP +FGREP +LD +DUMPBIN +ac_ct_DUMPBIN +NM +LN_S +AR +RANLIB +lt_ECHO +DSYMUTIL +NMEDIT +LIPO +OTOOL +OTOOL64 +INTLTOOL_UPDATE +INTLTOOL_MERGE +INTLTOOL_EXTRACT +INTLTOOL_DESKTOP_RULE +INTLTOOL_DIRECTORY_RULE +INTLTOOL_KEYS_RULE +INTLTOOL_PROP_RULE +INTLTOOL_OAF_RULE +INTLTOOL_PONG_RULE +INTLTOOL_SERVER_RULE +INTLTOOL_SHEET_RULE +INTLTOOL_SOUNDLIST_RULE +INTLTOOL_UI_RULE +INTLTOOL_XAM_RULE +INTLTOOL_KBD_RULE +INTLTOOL_XML_RULE +INTLTOOL_XML_NOMERGE_RULE +INTLTOOL_CAVES_RULE +INTLTOOL_SCHEMAS_RULE +INTLTOOL_THEME_RULE +INTLTOOL_SERVICE_RULE +INTLTOOL_POLICY_RULE +XGETTEXT +MSGMERGE +MSGFMT +INTLTOOL_PERL +ALL_LINGUAS +DATADIRNAME +USE_NLS +MSGFMT_OPTS +GMSGFMT +CATALOGS +CATOBJEXT +GMOFILES +INSTOBJEXT +INTLLIBS +PO_IN_DATADIR_TRUE +PO_IN_DATADIR_FALSE +POFILES +POSUB +MKINSTALLDIRS +GETTEXT_PACKAGE +plugindir +imagedir +metadatadir +compdatadir +PKG_CONFIG_PATH +PKG_CONFIG +COMPIZ_CFLAGS +COMPIZ_LIBS +BCOP_CFLAGS +BCOP_LIBS +BCOP_BIN +GL_CFLAGS +GL_LIBS +GCONFTOOL +SCHEMAS_CFLAGS +SCHEMAS_LIBS +xsltdir +GCONF_SCHEMA_CONFIG_SOURCE +GCONF_SCHEMA_FILE_DIR +GCONF_SCHEMAS_INSTALL_TRUE +GCONF_SCHEMAS_INSTALL_FALSE +USE_SCHEMAS_TRUE +USE_SCHEMAS_FALSE +LIBOBJS +LTLIBOBJS' +ac_subst_files='' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CPP +PKG_CONFIG +COMPIZ_CFLAGS +COMPIZ_LIBS +BCOP_CFLAGS +BCOP_LIBS +SCHEMAS_CFLAGS +SCHEMAS_LIBS' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } + ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } + ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } + ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=\$ac_optarg ;; + + -without-* | --without-*) + ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } + ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) { echo "$as_me: error: unrecognized option: $ac_option +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 + { (exit 1); exit 1; }; } + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + { echo "$as_me: error: missing argument to $ac_option" >&2 + { (exit 1); exit 1; }; } +fi + +# Be sure to have absolute directory names. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; } +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + { echo "$as_me: error: Working directory cannot be determined" >&2 + { (exit 1); exit 1; }; } +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + { echo "$as_me: error: pwd does not report name of working directory" >&2 + { (exit 1); exit 1; }; } + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$0" || +$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$0" : 'X\(//\)[^/]' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +echo X"$0" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 + { (exit 1); exit 1; }; } +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 + { (exit 1); exit 1; }; } + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures compiz-fusion-plugins-unsupported 0.7.8 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/compiz-fusion-plugins-unsupported] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of compiz-fusion-plugins-unsupported 0.7.8:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-static[=PKGS] build static libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + --enable-schemas Build gconf schemas + --disable-schemas-install Disable the schemas installation + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic try to use only PIC/non-PIC objects [default=use + both] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-gl-cflags=CFLAGS + --with-gl-libs=LIBS + --with-gconf-source=sourceaddress + Config database for installing schema files. + --with-gconf-schema-file-dir=dir + Directory for installing schema files. + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor + PKG_CONFIG path to pkg-config utility + COMPIZ_CFLAGS + C compiler flags for COMPIZ, overriding pkg-config + COMPIZ_LIBS linker flags for COMPIZ, overriding pkg-config + BCOP_CFLAGS C compiler flags for BCOP, overriding pkg-config + BCOP_LIBS linker flags for BCOP, overriding pkg-config + SCHEMAS_CFLAGS + C compiler flags for SCHEMAS, overriding pkg-config + SCHEMAS_LIBS + linker flags for SCHEMAS, overriding pkg-config + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +compiz-fusion-plugins-unsupported configure 0.7.8 +generated by GNU Autoconf 2.61 + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by compiz-fusion-plugins-unsupported $as_me 0.7.8, which was +generated by GNU Autoconf 2.61. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + echo "PATH: $as_dir" +done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; + 2) + ac_configure_args1="$ac_configure_args1 '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + ac_configure_args="$ac_configure_args '$ac_arg'" + ;; + esac + done +done +$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + cat <<\_ASBOX +## ---------------- ## +## Cache variables. ## +## ---------------- ## +_ASBOX + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + cat <<\_ASBOX +## ----------------- ## +## Output variables. ## +## ----------------- ## +_ASBOX + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + cat <<\_ASBOX +## ------------------- ## +## File substitutions. ## +## ------------------- ## +_ASBOX + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + cat <<\_ASBOX +## ----------- ## +## confdefs.h. ## +## ----------- ## +_ASBOX + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + echo "$as_me: caught signal $ac_signal" + echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer explicitly selected file to automatically selected ones. +if test -n "$CONFIG_SITE"; then + set x "$CONFIG_SITE" +elif test "x$prefix" != xNONE; then + set x "$prefix/share/config.site" "$prefix/etc/config.site" +else + set x "$ac_default_prefix/share/config.site" \ + "$ac_default_prefix/etc/config.site" +fi +shift +for ac_site_file +do + if test -r "$ac_site_file"; then + { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special + # files actually), so we avoid doing that. + if test -f "$cache_file"; then + { echo "$as_me:$LINENO: loading cache $cache_file" >&5 +echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { echo "$as_me:$LINENO: creating cache $cache_file" >&5 +echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +echo "$as_me: former value: $ac_old_val" >&2;} + { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 +echo "$as_me: current value: $ac_new_val" >&2;} + ac_cache_corrupted=: + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +echo "$as_me: error: changes in the environment can compromise the build" >&2;} + { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} + { (exit 1); exit 1; }; } +fi + + + + + + + + + + + + + + + + + + + + + + + + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +#AC_CONFIG_AUX_DIR(config) + +am__api_version='1.10' + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 +echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} + { (exit 1); exit 1; }; } +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } +if test -z "$INSTALL"; then +if test "${ac_cv_path_install+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in + ./ | .// | /cC/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + done + done + ;; +esac +done +IFS=$as_save_IFS + + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ echo "$as_me:$LINENO: result: $INSTALL" >&5 +echo "${ECHO_T}$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5 +echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken +alias in your environment" >&5 +echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken +alias in your environment" >&2;} + { (exit 1); exit 1; }; } + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! +Check your system clock" >&5 +echo "$as_me: error: newly created file is older than distributed files! +Check your system clock" >&2;} + { (exit 1); exit 1; }; } +fi +{ echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. echo might interpret backslashes. +# By default was `s,x,x', remove it if useless. +cat <<\_ACEOF >conftest.sed +s/[\\$]/&&/g;s/;s,x,x,$// +_ACEOF +program_transform_name=`echo $program_transform_name | sed -f conftest.sed` +rm -f conftest.sed + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 +echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 +echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } +if test -z "$MKDIR_P"; then + if test "${ac_cv_path_mkdir+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done +done +IFS=$as_save_IFS + +fi + + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + test -d ./--version && rmdir ./--version + MKDIR_P="$ac_install_sh -d" + fi +fi +{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5 +echo "${ECHO_T}$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_AWK+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { echo "$as_me:$LINENO: result: $AWK" >&5 +echo "${ECHO_T}$AWK" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + SET_MAKE= +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} + { (exit 1); exit 1; }; } + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='compiz-fusion-plugins-unsupported' + VERSION='0.7.8' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { echo "$as_me:$LINENO: result: $STRIP" >&5 +echo "${ECHO_T}$STRIP" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +echo "${ECHO_T}$ac_ct_STRIP" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} + +am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' + + + + + +ac_config_headers="$ac_config_headers config.h" + +{ echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; } + # Check whether --enable-maintainer-mode was given. +if test "${enable_maintainer_mode+set}" = set; then + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval +else + USE_MAINTAINER_MODE=no +fi + + { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 +echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; } + if test $USE_MAINTAINER_MODE = yes; then + MAINTAINER_MODE_TRUE= + MAINTAINER_MODE_FALSE='#' +else + MAINTAINER_MODE_TRUE='#' + MAINTAINER_MODE_FALSE= +fi + + MAINT=$MAINTAINER_MODE_TRUE + + + +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo done +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 +echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# We grep out `Entering directory' and `Leaving directory' +# messages which can occur if `w' ends up in MAKEFLAGS. +# In particular we don't look at `^make:' because GNU make might +# be invoked under some other name (usually "gmake"), in which +# case it prints its new name instead of `make'. +if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then + am__include=include + am__quote= + _am_result=GNU +fi +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then + am__include=.include + am__quote="\"" + _am_result=BSD + fi +fi + + +{ echo "$as_me:$LINENO: result: $_am_result" >&5 +echo "${ECHO_T}$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&5 +echo "$as_me: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + +# Provide some information about the compiler. +echo "$as_me:$LINENO: checking for C compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (ac_try="$ac_compiler --version >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -v >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -V >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 +echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } +ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +# +# List of possible output files, starting from the most likely. +# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) +# only as a last resort. b.out is created by i960 compilers. +ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' +# +# The IRIX 6 linker writes into existing files which may not be +# executable, retaining their permissions. Remove them first so a +# subsequent execution test works. +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { (ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi + +{ echo "$as_me:$LINENO: result: $ac_file" >&5 +echo "${ECHO_T}$ac_file" >&6; } +if test -z "$ac_file"; then + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { echo "$as_me:$LINENO: error: C compiler cannot create executables +See \`config.log' for more details." >&5 +echo "$as_me: error: C compiler cannot create executables +See \`config.log' for more details." >&2;} + { (exit 77); exit 77; }; } +fi + +ac_exeext=$ac_cv_exeext + +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 +echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } +# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 +# If not cross compiling, check that we can run a simple program. +if test "$cross_compiling" != yes; then + if { ac_try='./$ac_file' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { echo "$as_me:$LINENO: error: cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi + fi +fi +{ echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + +rm -f a.out a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } +{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 +echo "${ECHO_T}$cross_compiling" >&6; } + +{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 +echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +rm -f conftest$ac_cv_exeext +{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +echo "${ECHO_T}$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 +echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } +if test "${ac_cv_objext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot compute suffix of object files: cannot compile +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +echo "${ECHO_T}$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } +if test "${ac_cv_c_compiler_gnu+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } +GCC=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } +if test "${ac_cv_prog_cc_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + CFLAGS="" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } +if test "${ac_cv_prog_cc_c89+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { echo "$as_me:$LINENO: result: none needed" >&5 +echo "${ECHO_T}none needed" >&6; } ;; + xno) + { echo "$as_me:$LINENO: result: unsupported" >&5 +echo "${ECHO_T}unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; +esac + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + +{ echo "$as_me:$LINENO: checking for library containing strerror" >&5 +echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6; } +if test "${ac_cv_search_strerror+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_func_search_save_LIBS=$LIBS +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char strerror (); +int +main () +{ +return strerror (); + ; + return 0; +} +_ACEOF +for ac_lib in '' cposix; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_search_strerror=$ac_res +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_strerror+set}" = set; then + break +fi +done +if test "${ac_cv_search_strerror+set}" = set; then + : +else + ac_cv_search_strerror=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 +echo "${ECHO_T}$ac_cv_search_strerror" >&6; } +ac_res=$ac_cv_search_strerror +if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&5 +echo "$as_me: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + +# Provide some information about the compiler. +echo "$as_me:$LINENO: checking for C compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (ac_try="$ac_compiler --version >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -v >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -V >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } +if test "${ac_cv_c_compiler_gnu+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } +GCC=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } +if test "${ac_cv_prog_cc_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + CFLAGS="" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } +if test "${ac_cv_prog_cc_c89+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { echo "$as_me:$LINENO: result: none needed" >&5 +echo "${ECHO_T}none needed" >&6; } ;; + xno) + { echo "$as_me:$LINENO: result: unsupported" >&5 +echo "${ECHO_T}unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; +esac + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +continue +fi + +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + # Broken: success on invalid input. +continue +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +ac_preproc_ok=: +break +fi + +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ echo "$as_me:$LINENO: result: $CPP" >&5 +echo "${ECHO_T}$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +continue +fi + +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + # Broken: success on invalid input. +continue +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +ac_preproc_ok=: +break +fi + +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then + : +else + { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." >&5 +echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +case `pwd` in + *\ * | *\ *) + { echo "$as_me:$LINENO: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.2.4' +macro_revision='1.2976' + + + + + + + + + + + + + +ltmain="$ac_aux_dir/ltmain.sh" + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 +echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} + { (exit 1); exit 1; }; } + +{ echo "$as_me:$LINENO: checking build system type" >&5 +echo $ECHO_N "checking build system type... $ECHO_C" >&6; } +if test "${ac_cv_build+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 +echo "$as_me: error: cannot guess build type; you must specify one" >&2;} + { (exit 1); exit 1; }; } +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 +echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} + { (exit 1); exit 1; }; } + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 +echo "${ECHO_T}$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 +echo "$as_me: error: invalid value of canonical build" >&2;} + { (exit 1); exit 1; }; };; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ echo "$as_me:$LINENO: checking host system type" >&5 +echo $ECHO_N "checking host system type... $ECHO_C" >&6; } +if test "${ac_cv_host+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 +echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} + { (exit 1); exit 1; }; } +fi + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 +echo "${ECHO_T}$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 +echo "$as_me: error: invalid value of canonical host" >&2;} + { (exit 1); exit 1; }; };; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +{ echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 +echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; } +if test "${ac_cv_path_SED+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" | sed 99q >conftest.sed + $as_unset ac_script || ac_script= + # Extract the first word of "sed gsed" to use in msg output +if test -z "$SED"; then +set dummy sed gsed; ac_prog_name=$2 +if test "${ac_cv_path_SED+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_path_SED_found=false +# Loop through the user's path and test for each of PROGNAME-LIST +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue + # Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + + $ac_path_SED_found && break 3 + done +done + +done +IFS=$as_save_IFS + + +fi + +SED="$ac_cv_path_SED" +if test -z "$SED"; then + { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in \$PATH" >&5 +echo "$as_me: error: no acceptable $ac_prog_name could be found in \$PATH" >&2;} + { (exit 1); exit 1; }; } +fi + +else + ac_cv_path_SED=$SED +fi + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_path_SED" >&5 +echo "${ECHO_T}$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 +echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } +if test "${ac_cv_path_GREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # Extract the first word of "grep ggrep" to use in msg output +if test -z "$GREP"; then +set dummy grep ggrep; ac_prog_name=$2 +if test "${ac_cv_path_GREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_path_GREP_found=false +# Loop through the user's path and test for each of PROGNAME-LIST +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue + # Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + + $ac_path_GREP_found && break 3 + done +done + +done +IFS=$as_save_IFS + + +fi + +GREP="$ac_cv_path_GREP" +if test -z "$GREP"; then + { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +fi + +else + ac_cv_path_GREP=$GREP +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 +echo "${ECHO_T}$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ echo "$as_me:$LINENO: checking for egrep" >&5 +echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } +if test "${ac_cv_path_EGREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + # Extract the first word of "egrep" to use in msg output +if test -z "$EGREP"; then +set dummy egrep; ac_prog_name=$2 +if test "${ac_cv_path_EGREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_path_EGREP_found=false +# Loop through the user's path and test for each of PROGNAME-LIST +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue + # Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + + $ac_path_EGREP_found && break 3 + done +done + +done +IFS=$as_save_IFS + + +fi + +EGREP="$ac_cv_path_EGREP" +if test -z "$EGREP"; then + { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +fi + +else + ac_cv_path_EGREP=$EGREP +fi + + + fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 +echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ echo "$as_me:$LINENO: checking for fgrep" >&5 +echo $ECHO_N "checking for fgrep... $ECHO_C" >&6; } +if test "${ac_cv_path_FGREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + # Extract the first word of "fgrep" to use in msg output +if test -z "$FGREP"; then +set dummy fgrep; ac_prog_name=$2 +if test "${ac_cv_path_FGREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_path_FGREP_found=false +# Loop through the user's path and test for each of PROGNAME-LIST +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue + # Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + + $ac_path_FGREP_found && break 3 + done +done + +done +IFS=$as_save_IFS + + +fi + +FGREP="$ac_cv_path_FGREP" +if test -z "$FGREP"; then + { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +fi + +else + ac_cv_path_FGREP=$FGREP +fi + + + fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_path_FGREP" >&5 +echo "${ECHO_T}$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 +echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { echo "$as_me:$LINENO: checking for GNU ld" >&5 +echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } +else + { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 +echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } +fi +if test "${lt_cv_path_LD+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +echo "${ECHO_T}$LD" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi +test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} + { (exit 1); exit 1; }; } +{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } +if test "${lt_cv_prog_gnu_ld+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ echo "$as_me:$LINENO: checking for BSD- or MS-compatible name lister (nm)" >&5 +echo $ECHO_N "checking for BSD- or MS-compatible name lister (nm)... $ECHO_C" >&6; } +if test "${lt_cv_path_NM+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi +fi +{ echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 +echo "${ECHO_T}$lt_cv_path_NM" >&6; } +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$ac_tool_prefix"; then + for ac_prog in "dumpbin -symbols" "link -dump -symbols" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_DUMPBIN+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { echo "$as_me:$LINENO: result: $DUMPBIN" >&5 +echo "${ECHO_T}$DUMPBIN" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in "dumpbin -symbols" "link -dump -symbols" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { echo "$as_me:$LINENO: result: $ac_ct_DUMPBIN" >&5 +echo "${ECHO_T}$ac_ct_DUMPBIN" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ echo "$as_me:$LINENO: checking the name lister ($NM) interface" >&5 +echo $ECHO_N "checking the name lister ($NM) interface... $ECHO_C" >&6; } +if test "${lt_cv_nm_interface+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:5469: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:5472: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:5475: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ echo "$as_me:$LINENO: result: $lt_cv_nm_interface" >&5 +echo "${ECHO_T}$lt_cv_nm_interface" >&6; } + +{ echo "$as_me:$LINENO: checking whether ln -s works" >&5 +echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +else + { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 +echo "${ECHO_T}no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 +echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; } +if test "${lt_cv_sys_max_cmd_len+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`$SHELL $0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ + = "XX$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n $lt_cv_sys_max_cmd_len ; then + { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 +echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; } +else + { echo "$as_me:$LINENO: result: none" >&5 +echo "${ECHO_T}none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +{ echo "$as_me:$LINENO: checking whether the shell understands some XSI constructs" >&5 +echo $ECHO_N "checking whether the shell understands some XSI constructs... $ECHO_C" >&6; } +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +{ echo "$as_me:$LINENO: result: $xsi_shell" >&5 +echo "${ECHO_T}$xsi_shell" >&6; } + + +{ echo "$as_me:$LINENO: checking whether the shell understands \"+=\"" >&5 +echo $ECHO_N "checking whether the shell understands \"+=\"... $ECHO_C" >&6; } +lt_shell_append=no +( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +{ echo "$as_me:$LINENO: result: $lt_shell_append" >&5 +echo "${ECHO_T}$lt_shell_append" >&6; } + + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 +echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; } +if test "${lt_cv_ld_reload_flag+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 +echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + darwin*) + if test "$GCC" = yes; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + + +{ echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5 +echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6; } +if test "${lt_cv_deplibs_check_method+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# `unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + if ( file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 +echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; } +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. +set dummy ${ac_tool_prefix}ar; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_AR+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="${ac_tool_prefix}ar" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { echo "$as_me:$LINENO: result: $AR" >&5 +echo "${ECHO_T}$AR" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_AR"; then + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. +set dummy ar; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_AR+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="ar" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 +echo "${ECHO_T}$ac_ct_AR" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +else + AR="$ac_cv_prog_AR" +fi + +test -z "$AR" && AR=ar +test -z "$AR_FLAGS" && AR_FLAGS=cru + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { echo "$as_me:$LINENO: result: $STRIP" >&5 +echo "${ECHO_T}$STRIP" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +echo "${ECHO_T}$ac_ct_STRIP" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_RANLIB+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { echo "$as_me:$LINENO: result: $RANLIB" >&5 +echo "${ECHO_T}$RANLIB" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 +echo "${ECHO_T}$ac_ct_RANLIB" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 +echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; } +if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 + (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +const struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_save_LIBS="$LIBS" + lt_save_CFLAGS="$CFLAGS" + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS="$lt_save_LIBS" + CFLAGS="$lt_save_CFLAGS" + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { echo "$as_me:$LINENO: result: failed" >&5 +echo "${ECHO_T}failed" >&6; } +else + { echo "$as_me:$LINENO: result: ok" >&5 +echo "${ECHO_T}ok" >&6; } +fi + + + + + + + + + + + + + + + + + + + + + + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then + enableval=$enable_libtool_lock; +fi + +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '#line 6585 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 +echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; } +if test "${lt_cv_cc_needs_belf+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + lt_cv_cc_needs_belf=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + lt_cv_cc_needs_belf=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 +echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +sparc*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) LD="${LD-ld} -m elf64_sparc" ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_DSYMUTIL+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 +echo "${ECHO_T}$DSYMUTIL" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 +echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_NMEDIT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { echo "$as_me:$LINENO: result: $NMEDIT" >&5 +echo "${ECHO_T}$NMEDIT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 +echo "${ECHO_T}$ac_ct_NMEDIT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_LIPO+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { echo "$as_me:$LINENO: result: $LIPO" >&5 +echo "${ECHO_T}$LIPO" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_LIPO="lipo" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { echo "$as_me:$LINENO: result: $ac_ct_LIPO" >&5 +echo "${ECHO_T}$ac_ct_LIPO" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_OTOOL+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { echo "$as_me:$LINENO: result: $OTOOL" >&5 +echo "${ECHO_T}$OTOOL" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL="otool" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { echo "$as_me:$LINENO: result: $ac_ct_OTOOL" >&5 +echo "${ECHO_T}$ac_ct_OTOOL" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_OTOOL64+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { echo "$as_me:$LINENO: result: $OTOOL64" >&5 +echo "${ECHO_T}$OTOOL64" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { echo "$as_me:$LINENO: result: $ac_ct_OTOOL64" >&5 +echo "${ECHO_T}$ac_ct_OTOOL64" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 +echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; } +if test "${lt_cv_apple_cc_single_mod+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 +echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; } + { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 +echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; } +if test "${lt_cv_ld_exported_symbols_list+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + lt_cv_ld_exported_symbols_list=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + lt_cv_ld_exported_symbols_list=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 +echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[012]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + + +{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } +if test "${ac_cv_header_stdc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_stdc=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then + : +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +echo "${ECHO_T}$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +cat >>confdefs.h <<\_ACEOF +#define STDC_HEADERS 1 +_ACEOF + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. + + + + + + + + + +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default + +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + + +for ac_header in dlfcn.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default + +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + # Check whether --enable-static was given. +if test "${enable_static+set}" = set; then + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=yes +fi + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then + withval=$with_pic; pic_mode="$withval" +else + pic_mode=default +fi + + +test -z "$pic_mode" && pic_mode=default + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +{ echo "$as_me:$LINENO: checking for objdir" >&5 +echo $ECHO_N "checking for objdir... $ECHO_C" >&6; } +if test "${lt_cv_objdir+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 +echo "${ECHO_T}$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + + + + + + + + + + + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 +echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; } +if test "${lt_cv_path_MAGIC_CMD+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/${ac_tool_prefix}file; then + lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 +echo "${ECHO_T}$MAGIC_CMD" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { echo "$as_me:$LINENO: checking for file" >&5 +echo $ECHO_N "checking for file... $ECHO_C" >&6; } +if test "${lt_cv_path_MAGIC_CMD+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/file; then + lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 +echo "${ECHO_T}$MAGIC_CMD" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC="$CC" +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag=' -fno-builtin' + + { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } +if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:8202: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:8206: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + +{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + hpux*) + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu) + case $cc_basename in + icc* | ecc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl*) + # IBM XL C 8.0/Fortran 10.1 on PPC + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Sun\ F*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac +{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 +echo "${ECHO_T}$lt_prog_compiler_pic" >&6; } + + + + + + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; } +if test "${lt_cv_prog_compiler_pic_works+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:8526: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:8530: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 +echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +if test "${lt_cv_prog_compiler_static_works+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 +echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; } + +if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +if test "${lt_cv_prog_compiler_c_o+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:8631: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:8635: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 +echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +if test "${lt_cv_prog_compiler_c_o+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:8686: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:8690: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 +echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { echo "$as_me:$LINENO: result: $hard_links" >&5 +echo "${ECHO_T}$hard_links" >&6; } + if test "$hard_links" = no; then + { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_flag_spec_ld= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + ld_shlibs=yes + if test "$with_gnu_ld" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.9.1, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to modify your PATH +*** so that a non-GNU linker is found, and then restart. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag= + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec= + hardcode_libdir_flag_spec_ld='-rpath $libdir' + archive_cmds='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + link_all_deplibs=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' ${wl}-bernotok' + allow_undefined_flag=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + archive_cmds_need_lc=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + fix_srcfile_path='`cygpath -w "$srcfile"`' + enable_shared_with_static_runtimes=yes + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + whole_archive_flag_spec='' + link_all_deplibs=yes + allow_undefined_flag="$_lt_dar_allow_undefined" + if test "$GCC" = "yes"; then + output_verbose_link_cmd=echo + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + freebsd1*) + ld_shlibs=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec_ld='+b $libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat >conftest.$ac_ext <<_ACEOF +int foo(void) {} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='${wl}-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='${wl}-z,text' + allow_undefined_flag='${wl}-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ echo "$as_me:$LINENO: result: $ld_shlibs" >&5 +echo "${ECHO_T}$ld_shlibs" >&6; } +test "$ld_shlibs" = no && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + then + archive_cmds_need_lc=no + else + archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 +echo "${ECHO_T}$archive_cmds_need_lc" >&6; } + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } + +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` + else + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$host_os in + yes,cygwin* | yes,mingw* | yes,pw32*) + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" + ;; + mingw*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH printed by + # mingw gcc, but we are running on Cygwin. Gcc prints its search + # path with ; separators, and with drive letters. We can handle the + # drive letters (cygwin fileutils understands them), so leave them, + # especially as we might pass files found there to a mingw objdump, + # which wouldn't understand a cygwinified path. Ahh. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd1*) + dynamic_linker=no + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; + +interix[3-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + # Some binutils ld are patched to set DT_RUNPATH + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then + shlibpath_overrides_runpath=yes +fi + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux + need_lib_prefix=no + need_version=no + library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +echo "${ECHO_T}$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test "X$hardcode_automatic" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && + test "$hardcode_minus_L" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ echo "$as_me:$LINENO: result: $hardcode_action" >&5 +echo "${ECHO_T}$hardcode_action" >&6; } + +if test "$hardcode_action" = relink || + test "$inherit_rpath" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } +if test "${ac_cv_lib_dl_dlopen+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_dl_dlopen=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dl_dlopen=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } +if test $ac_cv_lib_dl_dlopen = yes; then + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + *) + { echo "$as_me:$LINENO: checking for shl_load" >&5 +echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; } +if test "${ac_cv_func_shl_load+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define shl_load to an innocuous variant, in case declares shl_load. + For example, HP-UX 11i declares gettimeofday. */ +#define shl_load innocuous_shl_load + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char shl_load (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef shl_load + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_shl_load || defined __stub___shl_load +choke me +#endif + +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_func_shl_load=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_shl_load=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 +echo "${ECHO_T}$ac_cv_func_shl_load" >&6; } +if test $ac_cv_func_shl_load = yes; then + lt_cv_dlopen="shl_load" +else + { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 +echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } +if test "${ac_cv_lib_dld_shl_load+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_dld_shl_load=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dld_shl_load=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 +echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } +if test $ac_cv_lib_dld_shl_load = yes; then + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +else + { echo "$as_me:$LINENO: checking for dlopen" >&5 +echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } +if test "${ac_cv_func_dlopen+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define dlopen to an innocuous variant, in case declares dlopen. + For example, HP-UX 11i declares gettimeofday. */ +#define dlopen innocuous_dlopen + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char dlopen (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef dlopen + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_dlopen || defined __stub___dlopen +choke me +#endif + +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_func_dlopen=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_dlopen=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 +echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } +if test $ac_cv_func_dlopen = yes; then + lt_cv_dlopen="dlopen" +else + { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } +if test "${ac_cv_lib_dl_dlopen+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_dl_dlopen=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dl_dlopen=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } +if test $ac_cv_lib_dl_dlopen = yes; then + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 +echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; } +if test "${ac_cv_lib_svld_dlopen+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_svld_dlopen=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_svld_dlopen=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 +echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; } +if test $ac_cv_lib_svld_dlopen = yes; then + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" +else + { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 +echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; } +if test "${ac_cv_lib_dld_dld_link+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_dld_dld_link=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dld_dld_link=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 +echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } +if test $ac_cv_lib_dld_dld_link = yes; then + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 +echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; } +if test "${lt_cv_dlopen_self+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line 11447 "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +#ifdef __cplusplus +extern "C" void exit (int); +#endif + +void fnord() { int i=42;} +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + /* dlclose (self); */ + } + else + puts (dlerror ()); + + exit (status); +} +_LT_EOF + if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 +echo "${ECHO_T}$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 +echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; } +if test "${lt_cv_dlopen_self_static+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line 11547 "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +#ifdef __cplusplus +extern "C" void exit (int); +#endif + +void fnord() { int i=42;} +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + /* dlclose (self); */ + } + else + puts (dlerror ()); + + exit (status); +} +_LT_EOF + if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 +echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 +echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + fi + ;; + *) + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report which library types will actually be built + { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 +echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } + { echo "$as_me:$LINENO: result: $can_build_shared" >&5 +echo "${ECHO_T}$can_build_shared" >&6; } + + { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 +echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { echo "$as_me:$LINENO: result: $enable_shared" >&5 +echo "${ECHO_T}$enable_shared" >&6; } + + { echo "$as_me:$LINENO: checking whether to build static libraries" >&5 +echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { echo "$as_me:$LINENO: result: $enable_static" >&5 +echo "${ECHO_T}$enable_static" >&6; } + + + + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +CC="$lt_save_CC" + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + +{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } +if test "${ac_cv_header_stdc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_stdc=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then + : +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +echo "${ECHO_T}$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +cat >>confdefs.h <<\_ACEOF +#define STDC_HEADERS 1 +_ACEOF + +fi + + + + +for ac_header in stdlib.h sys/time.h unistd.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + { echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <$ac_header> +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX +## ----------------------------------------- ## +## Report this to maniac@opencompositing.org ## +## ----------------------------------------- ## +_ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +case "$am__api_version" in + 1.01234) + { { echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5 +echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;} + { (exit 1); exit 1; }; } + ;; + *) + ;; +esac + +if test -n "0.35.0"; then + { echo "$as_me:$LINENO: checking for intltool >= 0.35.0" >&5 +echo $ECHO_N "checking for intltool >= 0.35.0... $ECHO_C" >&6; } + + INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` + INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + + { echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5 +echo "${ECHO_T}$INTLTOOL_APPLIED_VERSION found" >&6; } + test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || + { { echo "$as_me:$LINENO: error: Your intltool is too old. You need intltool 0.35.0 or later." >&5 +echo "$as_me: error: Your intltool is too old. You need intltool 0.35.0 or later." >&2;} + { (exit 1); exit 1; }; } +fi + +# Extract the first word of "intltool-update", so it can be a program name with args. +set dummy intltool-update; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $INTLTOOL_UPDATE in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE +if test -n "$INTLTOOL_UPDATE"; then + { echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5 +echo "${ECHO_T}$INTLTOOL_UPDATE" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +# Extract the first word of "intltool-merge", so it can be a program name with args. +set dummy intltool-merge; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $INTLTOOL_MERGE in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE +if test -n "$INTLTOOL_MERGE"; then + { echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5 +echo "${ECHO_T}$INTLTOOL_MERGE" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +# Extract the first word of "intltool-extract", so it can be a program name with args. +set dummy intltool-extract; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $INTLTOOL_EXTRACT in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT +if test -n "$INTLTOOL_EXTRACT"; then + { echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5 +echo "${ECHO_T}$INTLTOOL_EXTRACT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then + { { echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5 +echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;} + { (exit 1); exit 1; }; } +fi + + INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@' + INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@' + INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + + + + + + + + + + + + + + + + + + + + + +# Check the gettext tools to make sure they are GNU +# Extract the first word of "xgettext", so it can be a program name with args. +set dummy xgettext; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_XGETTEXT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $XGETTEXT in + [\\/]* | ?:[\\/]*) + ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +XGETTEXT=$ac_cv_path_XGETTEXT +if test -n "$XGETTEXT"; then + { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +echo "${ECHO_T}$XGETTEXT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +# Extract the first word of "msgmerge", so it can be a program name with args. +set dummy msgmerge; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_MSGMERGE+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $MSGMERGE in + [\\/]* | ?:[\\/]*) + ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +MSGMERGE=$ac_cv_path_MSGMERGE +if test -n "$MSGMERGE"; then + { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 +echo "${ECHO_T}$MSGMERGE" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +# Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_MSGFMT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $MSGFMT in + [\\/]* | ?:[\\/]*) + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +MSGFMT=$ac_cv_path_MSGFMT +if test -n "$MSGFMT"; then + { echo "$as_me:$LINENO: result: $MSGFMT" >&5 +echo "${ECHO_T}$MSGFMT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then + { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 +echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} + { (exit 1); exit 1; }; } +fi +xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" +mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" +mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" +if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then + { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 +echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} + { (exit 1); exit 1; }; } +fi + +# Extract the first word of "perl", so it can be a program name with args. +set dummy perl; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $INTLTOOL_PERL in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL +if test -n "$INTLTOOL_PERL"; then + { echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5 +echo "${ECHO_T}$INTLTOOL_PERL" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +if test -z "$INTLTOOL_PERL"; then + { { echo "$as_me:$LINENO: error: perl not found; required for intltool" >&5 +echo "$as_me: error: perl not found; required for intltool" >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then + { { echo "$as_me:$LINENO: error: perl 5.x required for intltool" >&5 +echo "$as_me: error: perl 5.x required for intltool" >&2;} + { (exit 1); exit 1; }; } +fi +if test "x" != "xno-xml"; then + { echo "$as_me:$LINENO: checking for XML::Parser" >&5 +echo $ECHO_N "checking for XML::Parser... $ECHO_C" >&6; } + if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then + { echo "$as_me:$LINENO: result: ok" >&5 +echo "${ECHO_T}ok" >&6; } + else + { { echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5 +echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;} + { (exit 1); exit 1; }; } + fi +fi + +# Substitute ALL_LINGUAS so we can use it in po/Makefile + + +# Set DATADIRNAME correctly if it is not set yet +# (copied from glib-gettext.m4) +if test -z "$DATADIRNAME"; then + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + DATADIRNAME=share +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + case $host in + *-*-solaris*) + { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; } +if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. + For example, HP-UX 11i declares gettimeofday. */ +#define bind_textdomain_codeset innocuous_bind_textdomain_codeset + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char bind_textdomain_codeset (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef bind_textdomain_codeset + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char bind_textdomain_codeset (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset +choke me +#endif + +int +main () +{ +return bind_textdomain_codeset (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_func_bind_textdomain_codeset=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_bind_textdomain_codeset=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; } +if test $ac_cv_func_bind_textdomain_codeset = yes; then + DATADIRNAME=share +else + DATADIRNAME=lib +fi + + ;; + *) + DATADIRNAME=lib + ;; + esac +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi + + + + + + + + +for ac_header in locale.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + { echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <$ac_header> +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX +## ----------------------------------------- ## +## Report this to maniac@opencompositing.org ## +## ----------------------------------------- ## +_ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + if test $ac_cv_header_locale_h = yes; then + { echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 +echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6; } +if test "${am_cv_val_LC_MESSAGES+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +int +main () +{ +return LC_MESSAGES + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + am_cv_val_LC_MESSAGES=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + am_cv_val_LC_MESSAGES=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 +echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6; } + if test $am_cv_val_LC_MESSAGES = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_LC_MESSAGES 1 +_ACEOF + + fi + fi + USE_NLS=yes + + + gt_cv_have_gettext=no + + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= + + if test "${ac_cv_header_libintl_h+set}" = set; then + { echo "$as_me:$LINENO: checking for libintl.h" >&5 +echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; } +if test "${ac_cv_header_libintl_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking libintl.h usability" >&5 +echo $ECHO_N "checking libintl.h usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking libintl.h presence" >&5 +echo $ECHO_N "checking libintl.h presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 +echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX +## ----------------------------------------- ## +## Report this to maniac@opencompositing.org ## +## ----------------------------------------- ## +_ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +{ echo "$as_me:$LINENO: checking for libintl.h" >&5 +echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; } +if test "${ac_cv_header_libintl_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_header_libintl_h=$ac_header_preproc +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; } + +fi +if test $ac_cv_header_libintl_h = yes; then + gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # + { echo "$as_me:$LINENO: checking for ngettext in libc" >&5 +echo $ECHO_N "checking for ngettext in libc... $ECHO_C" >&6; } +if test "${gt_cv_func_ngettext_libc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +#include + +int +main () +{ +return !ngettext ("","", 1) + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + gt_cv_func_ngettext_libc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + gt_cv_func_ngettext_libc=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 +echo "${ECHO_T}$gt_cv_func_ngettext_libc" >&6; } + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + { echo "$as_me:$LINENO: checking for dgettext in libc" >&5 +echo $ECHO_N "checking for dgettext in libc... $ECHO_C" >&6; } +if test "${gt_cv_func_dgettext_libc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +#include + +int +main () +{ +return !dgettext ("","") + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + gt_cv_func_dgettext_libc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + gt_cv_func_dgettext_libc=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 +echo "${ECHO_T}$gt_cv_func_dgettext_libc" >&6; } + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + +for ac_func in bind_textdomain_codeset +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define $ac_func to an innocuous variant, in case declares $ac_func. + For example, HP-UX 11i declares gettimeofday. */ +#define $ac_func innocuous_$ac_func + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $ac_func + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $ac_func (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$ac_func || defined __stub___$ac_func +choke me +#endif + +int +main () +{ +return $ac_func (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_var'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + fi + + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + { echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 +echo $ECHO_N "checking for bindtextdomain in -lintl... $ECHO_C" >&6; } +if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char bindtextdomain (); +int +main () +{ +return bindtextdomain (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_bindtextdomain=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_bindtextdomain=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_bindtextdomain" >&6; } +if test $ac_cv_lib_intl_bindtextdomain = yes; then + { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 +echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; } +if test "${ac_cv_lib_intl_ngettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char ngettext (); +int +main () +{ +return ngettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_ngettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_ngettext=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; } +if test $ac_cv_lib_intl_ngettext = yes; then + { echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 +echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6; } +if test "${ac_cv_lib_intl_dgettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dgettext (); +int +main () +{ +return dgettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_dgettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_dgettext=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6; } +if test $ac_cv_lib_intl_dgettext = yes; then + gt_cv_func_dgettext_libintl=yes +fi + +fi + +fi + + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + { echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 +echo $ECHO_N "checking if -liconv is needed to use gettext... $ECHO_C" >&6; } + { echo "$as_me:$LINENO: result: " >&5 +echo "${ECHO_T}" >&6; } + { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 +echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; } +if test "${ac_cv_lib_intl_ngettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char ngettext (); +int +main () +{ +return ngettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_ngettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_ngettext=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; } +if test $ac_cv_lib_intl_ngettext = yes; then + { echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 +echo $ECHO_N "checking for dcgettext in -lintl... $ECHO_C" >&6; } +if test "${ac_cv_lib_intl_dcgettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dcgettext (); +int +main () +{ +return dcgettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_dcgettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_dcgettext=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_dcgettext" >&6; } +if test $ac_cv_lib_intl_dcgettext = yes; then + gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv +else + : +fi + +else + : +fi + + fi + + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + +for ac_func in bind_textdomain_codeset +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define $ac_func to an innocuous variant, in case declares $ac_func. + For example, HP-UX 11i declares gettimeofday. */ +#define $ac_func innocuous_$ac_func + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $ac_func + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $ac_func (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$ac_func || defined __stub___$ac_func +choke me +#endif + +int +main () +{ +return $ac_func (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_var'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + LIBS="$glib_save_LIBS" + + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi + + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_GETTEXT 1 +_ACEOF + + # Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_MSGFMT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case "$MSGFMT" in + /*) + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then + ac_cv_path_MSGFMT="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" + ;; +esac +fi +MSGFMT="$ac_cv_path_MSGFMT" +if test "$MSGFMT" != "no"; then + { echo "$as_me:$LINENO: result: $MSGFMT" >&5 +echo "${ECHO_T}$MSGFMT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + +for ac_func in dcgettext +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define $ac_func to an innocuous variant, in case declares $ac_func. + For example, HP-UX 11i declares gettimeofday. */ +#define $ac_func innocuous_$ac_func + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $ac_func + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $ac_func (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$ac_func || defined __stub___$ac_func +choke me +#endif + +int +main () +{ +return $ac_func (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_var'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + MSGFMT_OPTS= + { echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 +echo $ECHO_N "checking if msgfmt accepts -c... $ECHO_C" >&6; } + cat >conftest.foo <<_ACEOF + +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: test 1.0\n" +"PO-Revision-Date: 2007-02-15 12:01+0100\n" +"Last-Translator: test \n" +"Language-Team: C \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +_ACEOF +if { (echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 + ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + MSGFMT_OPTS=-c; { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +else { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +echo "$as_me: failed input was:" >&5 +sed 's/^/| /' conftest.foo >&5 +fi + + # Extract the first word of "gmsgfmt", so it can be a program name with args. +set dummy gmsgfmt; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_GMSGFMT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $GMSGFMT in + [\\/]* | ?:[\\/]*) + ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" + ;; +esac +fi +GMSGFMT=$ac_cv_path_GMSGFMT +if test -n "$GMSGFMT"; then + { echo "$as_me:$LINENO: result: $GMSGFMT" >&5 +echo "${ECHO_T}$GMSGFMT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + # Extract the first word of "xgettext", so it can be a program name with args. +set dummy xgettext; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_XGETTEXT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case "$XGETTEXT" in + /*) + ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then + ac_cv_path_XGETTEXT="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" + ;; +esac +fi +XGETTEXT="$ac_cv_path_XGETTEXT" +if test "$XGETTEXT" != ":"; then + { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +echo "${ECHO_T}$XGETTEXT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + CATOBJEXT=.gmo + DATADIRNAME=share +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + case $host in + *-*-solaris*) + { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; } +if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. + For example, HP-UX 11i declares gettimeofday. */ +#define bind_textdomain_codeset innocuous_bind_textdomain_codeset + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char bind_textdomain_codeset (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef bind_textdomain_codeset + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char bind_textdomain_codeset (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset +choke me +#endif + +int +main () +{ +return bind_textdomain_codeset (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_func_bind_textdomain_codeset=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_bind_textdomain_codeset=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; } +if test $ac_cv_func_bind_textdomain_codeset = yes; then + CATOBJEXT=.gmo + DATADIRNAME=share +else + CATOBJEXT=.mo + DATADIRNAME=lib +fi + + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + +fi + + + + if test "$gt_cv_have_gettext" = "yes" ; then + +cat >>confdefs.h <<\_ACEOF +#define ENABLE_NLS 1 +_ACEOF + + fi + + if test "$XGETTEXT" != ":"; then + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + { echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 +echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6; } + XGETTEXT=":" + fi + fi + + # We need to process the po/ directory. + POSUB=po + + ac_config_commands="$ac_config_commands default-1" + + + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done + + + + + + + + + + + + + + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + { echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 +echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6; } + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + { echo "$as_me:$LINENO: result: $LINGUAS" >&5 +echo "${ECHO_T}$LINGUAS" >&6; } + fi + + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi + + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + + + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + +GETTEXT_PACKAGE=compiz-fusion-plugins-unsupported + +cat >>confdefs.h <<_ACEOF +#define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" +_ACEOF + + + +if test "x$GCC" = "xyes"; then + case " $CFLAGS " in + *[\ \ ]-Wall[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -Wall" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-Wpointer-arith[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -Wpointer-arith" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-Wstrict-prototypes[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -Wstrict-prototypes" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-Wmissing-prototypes[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -Wmissing-prototypes" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-Wmissing-declarations[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -Wmissing-declarations" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-Wnested-externs[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -Wnested-externs" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-fno-strict-aliasing[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -fno-strict-aliasing" ;; + esac + + if test "x$enable_ansi" = "xyes"; then + case " $CFLAGS " in + *[\ \ ]-ansi[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -ansi" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-pedantic[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -pedantic" ;; + esac + fi +fi + +{ echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 +echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6; } +if test "${ac_cv_c_bigendian+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # See if sys/param.h defines the BYTE_ORDER macro. +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include + +int +main () +{ +#if ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \ + && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN) + bogus endian macros +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + # It does; now see whether it defined to BIG_ENDIAN or not. +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include + +int +main () +{ +#if BYTE_ORDER != BIG_ENDIAN + not big endian +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_bigendian=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_bigendian=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # It does not; compile a test program. +if test "$cross_compiling" = yes; then + # try to guess the endianness by grepping values into an object file + ac_cv_c_bigendian=unknown + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; +short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; +void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } +short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; +short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; +void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } +int +main () +{ + _ascii (); _ebcdic (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then + ac_cv_c_bigendian=yes +fi +if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then + if test "$ac_cv_c_bigendian" = unknown; then + ac_cv_c_bigendian=no + else + # finding both strings is unlikely to happen, but who knows? + ac_cv_c_bigendian=unknown + fi +fi +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ + + /* Are we little or big endian? From Harbison&Steele. */ + union + { + long int l; + char c[sizeof (long int)]; + } u; + u.l = 1; + return u.c[sizeof (long int) - 1] == 1; + + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_c_bigendian=no +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_c_bigendian=yes +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 +echo "${ECHO_T}$ac_cv_c_bigendian" >&6; } +case $ac_cv_c_bigendian in + yes) + +cat >>confdefs.h <<\_ACEOF +#define WORDS_BIGENDIAN 1 +_ACEOF + ;; + no) + ;; + *) + { { echo "$as_me:$LINENO: error: unknown endianness +presetting ac_cv_c_bigendian=no (or yes) will help" >&5 +echo "$as_me: error: unknown endianness +presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} + { (exit 1); exit 1; }; } ;; +esac + + +plugindir=$libdir/compiz + + +imagedir=$datadir/compiz + + +metadatadir=$datadir/compiz + + +compdatadir=$datadir/compiz + + +if test x"$PKG_CONFIG_PATH" = x; then + PKG_CONFIG_PATH=${prefix}/lib/pkgconfig + else + PKG_CONFIG_PATH=${prefix}/lib/pkgconfig:${PKG_CONFIG_PATH} +fi +export PKG_CONFIG_PATH + +{ echo "$as_me:$LINENO: Using PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >&5 +echo "$as_me: Using PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >&6;} + + + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. +set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG +if test -n "$PKG_CONFIG"; then + { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +echo "${ECHO_T}$PKG_CONFIG" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_PKG_CONFIG"; then + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $ac_pt_PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + ;; +esac +fi +ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG +if test -n "$ac_pt_PKG_CONFIG"; then + { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 +echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_pt_PKG_CONFIG" = x; then + PKG_CONFIG="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + PKG_CONFIG=$ac_pt_PKG_CONFIG + fi +else + PKG_CONFIG="$ac_cv_path_PKG_CONFIG" +fi + +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.9.0 + { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 +echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + PKG_CONFIG="" + fi + +fi + +pkg_failed=no +{ echo "$as_me:$LINENO: checking for COMPIZ" >&5 +echo $ECHO_N "checking for COMPIZ... $ECHO_C" >&6; } + +if test -n "$PKG_CONFIG"; then + if test -n "$COMPIZ_CFLAGS"; then + pkg_cv_COMPIZ_CFLAGS="$COMPIZ_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"compiz\"") >&5 + ($PKG_CONFIG --exists --print-errors "compiz") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_COMPIZ_CFLAGS=`$PKG_CONFIG --cflags "compiz" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$COMPIZ_LIBS"; then + pkg_cv_COMPIZ_LIBS="$COMPIZ_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"compiz\"") >&5 + ($PKG_CONFIG --exists --print-errors "compiz") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_COMPIZ_LIBS=`$PKG_CONFIG --libs "compiz" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + COMPIZ_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "compiz"` + else + COMPIZ_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "compiz"` + fi + # Put the nasty error message in config.log where it belongs + echo "$COMPIZ_PKG_ERRORS" >&5 + + { { echo "$as_me:$LINENO: error: Package requirements (compiz) were not met: + +$COMPIZ_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables COMPIZ_CFLAGS +and COMPIZ_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (compiz) were not met: + +$COMPIZ_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables COMPIZ_CFLAGS +and COMPIZ_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables COMPIZ_CFLAGS +and COMPIZ_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables COMPIZ_CFLAGS +and COMPIZ_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + COMPIZ_CFLAGS=$pkg_cv_COMPIZ_CFLAGS + COMPIZ_LIBS=$pkg_cv_COMPIZ_LIBS + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + : +fi + +pkg_failed=no +{ echo "$as_me:$LINENO: checking for BCOP" >&5 +echo $ECHO_N "checking for BCOP... $ECHO_C" >&6; } + +if test -n "$PKG_CONFIG"; then + if test -n "$BCOP_CFLAGS"; then + pkg_cv_BCOP_CFLAGS="$BCOP_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bcop >= 0.7.3\"") >&5 + ($PKG_CONFIG --exists --print-errors "bcop >= 0.7.3") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_BCOP_CFLAGS=`$PKG_CONFIG --cflags "bcop >= 0.7.3" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$BCOP_LIBS"; then + pkg_cv_BCOP_LIBS="$BCOP_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bcop >= 0.7.3\"") >&5 + ($PKG_CONFIG --exists --print-errors "bcop >= 0.7.3") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_BCOP_LIBS=`$PKG_CONFIG --libs "bcop >= 0.7.3" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + BCOP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "bcop >= 0.7.3"` + else + BCOP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "bcop >= 0.7.3"` + fi + # Put the nasty error message in config.log where it belongs + echo "$BCOP_PKG_ERRORS" >&5 + + { { echo "$as_me:$LINENO: error: Package requirements (bcop >= 0.7.3) were not met: + +$BCOP_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables BCOP_CFLAGS +and BCOP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (bcop >= 0.7.3) were not met: + +$BCOP_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables BCOP_CFLAGS +and BCOP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables BCOP_CFLAGS +and BCOP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables BCOP_CFLAGS +and BCOP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + BCOP_CFLAGS=$pkg_cv_BCOP_CFLAGS + BCOP_LIBS=$pkg_cv_BCOP_LIBS + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + bcop_found=yes +fi +if test "$bcop_found" = yes; then + if test -z "$PKG_CONFIG"; then + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG +if test -n "$PKG_CONFIG"; then + { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +echo "${ECHO_T}$PKG_CONFIG" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + fi + if test "$PKG_CONFIG" != "no" ; then + BCOP_BIN=`$PKG_CONFIG --variable=bin bcop` + + fi +fi + +{ echo "$as_me:$LINENO: checking for GL_CFLAGS" >&5 +echo $ECHO_N "checking for GL_CFLAGS... $ECHO_C" >&6; } + +# Check whether --with-gl-cflags was given. +if test "${with_gl_cflags+set}" = set; then + withval=$with_gl_cflags; GL_CFLAGS="$withval" +else + GL_CFLAGS="" +fi + + +{ echo "$as_me:$LINENO: result: $GL_CFLAGS" >&5 +echo "${ECHO_T}$GL_CFLAGS" >&6; } +{ echo "$as_me:$LINENO: checking for GL_LIBS" >&5 +echo $ECHO_N "checking for GL_LIBS... $ECHO_C" >&6; } + +# Check whether --with-gl-libs was given. +if test "${with_gl_libs+set}" = set; then + withval=$with_gl_libs; GL_LIBS="$withval" +else + GL_LIBS="-lGL" +fi + +{ echo "$as_me:$LINENO: result: $GL_LIBS" >&5 +echo "${ECHO_T}$GL_LIBS" >&6; } + + + + +# Check whether --enable-schemas was given. +if test "${enable_schemas+set}" = set; then + enableval=$enable_schemas; use_schemas=$enableval +else + use_schemas=no +fi + + +if test x"$use_schemas" = x"yes"; then + # Extract the first word of "gconftool-2", so it can be a program name with args. +set dummy gconftool-2; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_GCONFTOOL+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $GCONFTOOL in + [\\/]* | ?:[\\/]*) + ac_cv_path_GCONFTOOL="$GCONFTOOL" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GCONFTOOL="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + test -z "$ac_cv_path_GCONFTOOL" && ac_cv_path_GCONFTOOL="no" + ;; +esac +fi +GCONFTOOL=$ac_cv_path_GCONFTOOL +if test -n "$GCONFTOOL"; then + { echo "$as_me:$LINENO: result: $GCONFTOOL" >&5 +echo "${ECHO_T}$GCONFTOOL" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + +pkg_failed=no +{ echo "$as_me:$LINENO: checking for SCHEMAS" >&5 +echo $ECHO_N "checking for SCHEMAS... $ECHO_C" >&6; } + +if test -n "$PKG_CONFIG"; then + if test -n "$SCHEMAS_CFLAGS"; then + pkg_cv_SCHEMAS_CFLAGS="$SCHEMAS_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"compiz-gconf\"") >&5 + ($PKG_CONFIG --exists --print-errors "compiz-gconf") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_SCHEMAS_CFLAGS=`$PKG_CONFIG --cflags "compiz-gconf" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$SCHEMAS_LIBS"; then + pkg_cv_SCHEMAS_LIBS="$SCHEMAS_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"compiz-gconf\"") >&5 + ($PKG_CONFIG --exists --print-errors "compiz-gconf") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_SCHEMAS_LIBS=`$PKG_CONFIG --libs "compiz-gconf" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + SCHEMAS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "compiz-gconf"` + else + SCHEMAS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "compiz-gconf"` + fi + # Put the nasty error message in config.log where it belongs + echo "$SCHEMAS_PKG_ERRORS" >&5 + + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + use_schemas=no +elif test $pkg_failed = untried; then + use_schemas=no +else + SCHEMAS_CFLAGS=$pkg_cv_SCHEMAS_CFLAGS + SCHEMAS_LIBS=$pkg_cv_SCHEMAS_LIBS + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + use_schemas=yes +fi + if test x"$GCONFTOOL" = xno; then + { { echo "$as_me:$LINENO: error: gconftool-2 executable not found in your path - should be installed with GConf" >&5 +echo "$as_me: error: gconftool-2 executable not found in your path - should be installed with GConf" >&2;} + { (exit 1); exit 1; }; } + fi + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG +if test -n "$PKG_CONFIG"; then + { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +echo "${ECHO_T}$PKG_CONFIG" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + if test x"$PKG_CONFIG" = xno ; then + { { echo "$as_me:$LINENO: error: pkg-config executable not found in your path, unable to determine schema directory" >&5 +echo "$as_me: error: pkg-config executable not found in your path, unable to determine schema directory" >&2;} + { (exit 1); exit 1; }; } + fi + xsltdir=`$PKG_CONFIG --variable=xsltdir compiz-gconf` + +fi + + + if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then + GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source` + else + GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE + fi + + +# Check whether --with-gconf-source was given. +if test "${with_gconf_source+set}" = set; then + withval=$with_gconf_source; GCONF_SCHEMA_CONFIG_SOURCE="$withval" +fi + + + + { echo "$as_me:$LINENO: result: Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&5 +echo "${ECHO_T}Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&6; } + + if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then + GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas' + fi + + +# Check whether --with-gconf-schema-file-dir was given. +if test "${with_gconf_schema_file_dir+set}" = set; then + withval=$with_gconf_schema_file_dir; GCONF_SCHEMA_FILE_DIR="$withval" +fi + + + + { echo "$as_me:$LINENO: result: Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&5 +echo "${ECHO_T}Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&6; } + + # Check whether --enable-schemas-install was given. +if test "${enable_schemas_install+set}" = set; then + enableval=$enable_schemas_install; case ${enableval} in + yes|no) ;; + *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-schemas-install" >&5 +echo "$as_me: error: bad value ${enableval} for --enable-schemas-install" >&2;} + { (exit 1); exit 1; }; } ;; + esac +fi + + if test "$enable_schemas_install" != no; then + GCONF_SCHEMAS_INSTALL_TRUE= + GCONF_SCHEMAS_INSTALL_FALSE='#' +else + GCONF_SCHEMAS_INSTALL_TRUE='#' + GCONF_SCHEMAS_INSTALL_FALSE= +fi + + + + + if test "x$use_schemas" = "xyes"; then + USE_SCHEMAS_TRUE= + USE_SCHEMAS_FALSE='#' +else + USE_SCHEMAS_TRUE='#' + USE_SCHEMAS_FALSE= +fi + +if test "$use_schemas" = yes; then + +cat >>confdefs.h <<\_ACEOF +#define USE_SCHEMAS 1 +_ACEOF + +fi + +ac_config_files="$ac_config_files Makefile images/Makefile metadata/Makefile src/Makefile src/atlantis/Makefile src/fakeargb/Makefile src/mswitch/Makefile src/snow/Makefile src/tile/Makefile po/Makefile.in" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes (double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \). + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && + { echo "$as_me:$LINENO: updating cache $cache_file" >&5 +echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else + { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 +echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" + ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + +if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi + + ac_config_commands="$ac_config_commands po/stamp-it" + + +if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${USE_SCHEMAS_TRUE}" && test -z "${USE_SCHEMAS_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"USE_SCHEMAS\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"USE_SCHEMAS\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi + +: ${CONFIG_STATUS=./config.status} +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +echo "$as_me: creating $CONFIG_STATUS" >&6;} +cat >$CONFIG_STATUS <<_ACEOF +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false +SHELL=\${CONFIG_SHELL-$SHELL} +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +## --------------------- ## +## M4sh Initialization. ## +## --------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + + + +# PATH needs CR +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Support unset when possible. +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + as_unset=unset +else + as_unset=false +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +as_nl=' +' +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } +fi + +# Work around bugs in pre-3.0 UWIN ksh. +for as_var in ENV MAIL MAILPATH +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +for as_var in \ + LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ + LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ + LC_TELEPHONE LC_TIME +do + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then + eval $as_var=C; export $as_var + else + ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + fi +done + +# Required to use basename. +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + + +# Name of the executable. +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# CDPATH. +$as_unset CDPATH + + + + as_lineno_1=$LINENO + as_lineno_2=$LINENO + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { + + # Create $as_me.lineno as a copy of $as_myself, but with $LINENO + # uniformly replaced by the line number. The first 'sed' inserts a + # line-number line after each line using $LINENO; the second 'sed' + # does the real work. The second script uses 'N' to pair each + # line-number line with the line containing $LINENO, and appends + # trailing '-' during substitution so that $LINENO is not a special + # case at line end. + # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the + # scripts with optimization help from Paolo Bonzini. Blame Lee + # E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in +-n*) + case `echo 'x\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + *) ECHO_C='\c';; + esac;; +*) + ECHO_N='-n';; +esac + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir +fi +echo >conf$$.file +if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' +elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p=: +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 + +# Save the log message, to keep $[0] and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by compiz-fusion-plugins-unsupported $as_me 0.7.8, which was +generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +cat >>$CONFIG_STATUS <<_ACEOF +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +ac_cs_usage="\ +\`$as_me' instantiates files from templates according to the +current configuration. + +Usage: $0 [OPTIONS] [FILE]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF +ac_cs_version="\\ +compiz-fusion-plugins-unsupported config.status 0.7.8 +configured by $0, generated by GNU Autoconf 2.61, + with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" + +Copyright (C) 2006 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +# If no file are specified by the user, then we need to provide default +# value. By we need to know if files were specified by the user. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + echo "$ac_cs_version"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + CONFIG_FILES="$CONFIG_FILES $ac_optarg" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + { echo "$as_me: error: ambiguous option: $1 +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; };; + --help | --hel | -h ) + echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) { echo "$as_me: error: unrecognized option: $1 +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } ;; + + *) ac_config_targets="$ac_config_targets $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF +if \$ac_cs_recheck; then + echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 + CONFIG_SHELL=$SHELL + export CONFIG_SHELL + exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' +macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' +enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`' +pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`' +host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`' +host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`' +host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`' +build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`' +build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`' +build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`' +SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`' +Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`' +GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`' +EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`' +FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`' +LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`' +NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`' +LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`' +ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`' +exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`' +lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`' +reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`' +AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`' +STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`' +RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' +CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`' +compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`' +GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' +objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`' +SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`' +ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`' +need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`' +LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`' +OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`' +libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' +module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`' +fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' +need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`' +version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`' +runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`' +libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`' +soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`' +finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`' +sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`' +old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`' +striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# Quote evaled strings. +for var in SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +deplibs_check_method \ +file_magic_cmd \ +AR \ +AR_FLAGS \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +SHELL \ +ECHO \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_wl \ +lt_prog_compiler_pic \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_flag_spec_ld \ +hardcode_libdir_separator \ +fix_srcfile_path \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +finish_eval \ +old_striplib \ +striplib; do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +sys_lib_dlsearch_path_spec; do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Fix-up fallback echo if it was mangled by the above quoting rules. +case \$lt_ECHO in +*'\\\$0 --fallback-echo"') lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\` + ;; +esac + +ac_aux_dir='$ac_aux_dir' +xsi_shell='$xsi_shell' +lt_shell_append='$lt_shell_append' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile' + + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "images/Makefile") CONFIG_FILES="$CONFIG_FILES images/Makefile" ;; + "metadata/Makefile") CONFIG_FILES="$CONFIG_FILES metadata/Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "src/atlantis/Makefile") CONFIG_FILES="$CONFIG_FILES src/atlantis/Makefile" ;; + "src/fakeargb/Makefile") CONFIG_FILES="$CONFIG_FILES src/fakeargb/Makefile" ;; + "src/mswitch/Makefile") CONFIG_FILES="$CONFIG_FILES src/mswitch/Makefile" ;; + "src/snow/Makefile") CONFIG_FILES="$CONFIG_FILES src/snow/Makefile" ;; + "src/tile/Makefile") CONFIG_FILES="$CONFIG_FILES src/tile/Makefile" ;; + "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; + "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; + + *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +echo "$as_me: error: invalid argument: $ac_config_target" >&2;} + { (exit 1); exit 1; }; };; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status +' 0 + trap '{ (exit 1); exit 1; }' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -n "$tmp" && test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || +{ + echo "$me: cannot create a temporary directory in ." >&2 + { (exit 1); exit 1; } +} + +# +# Set up the sed scripts for CONFIG_FILES section. +# + +# No need to generate the scripts if there are no CONFIG_FILES. +# This happens for instance when ./config.status config.h +if test -n "$CONFIG_FILES"; then + +_ACEOF + + + +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF +SHELL!$SHELL$ac_delim +PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim +PACKAGE_NAME!$PACKAGE_NAME$ac_delim +PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim +PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim +PACKAGE_STRING!$PACKAGE_STRING$ac_delim +PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim +exec_prefix!$exec_prefix$ac_delim +prefix!$prefix$ac_delim +program_transform_name!$program_transform_name$ac_delim +bindir!$bindir$ac_delim +sbindir!$sbindir$ac_delim +libexecdir!$libexecdir$ac_delim +datarootdir!$datarootdir$ac_delim +datadir!$datadir$ac_delim +sysconfdir!$sysconfdir$ac_delim +sharedstatedir!$sharedstatedir$ac_delim +localstatedir!$localstatedir$ac_delim +includedir!$includedir$ac_delim +oldincludedir!$oldincludedir$ac_delim +docdir!$docdir$ac_delim +infodir!$infodir$ac_delim +htmldir!$htmldir$ac_delim +dvidir!$dvidir$ac_delim +pdfdir!$pdfdir$ac_delim +psdir!$psdir$ac_delim +libdir!$libdir$ac_delim +localedir!$localedir$ac_delim +mandir!$mandir$ac_delim +DEFS!$DEFS$ac_delim +ECHO_C!$ECHO_C$ac_delim +ECHO_N!$ECHO_N$ac_delim +ECHO_T!$ECHO_T$ac_delim +LIBS!$LIBS$ac_delim +build_alias!$build_alias$ac_delim +host_alias!$host_alias$ac_delim +target_alias!$target_alias$ac_delim +INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim +INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim +INSTALL_DATA!$INSTALL_DATA$ac_delim +am__isrc!$am__isrc$ac_delim +CYGPATH_W!$CYGPATH_W$ac_delim +PACKAGE!$PACKAGE$ac_delim +VERSION!$VERSION$ac_delim +ACLOCAL!$ACLOCAL$ac_delim +AUTOCONF!$AUTOCONF$ac_delim +AUTOMAKE!$AUTOMAKE$ac_delim +AUTOHEADER!$AUTOHEADER$ac_delim +MAKEINFO!$MAKEINFO$ac_delim +install_sh!$install_sh$ac_delim +STRIP!$STRIP$ac_delim +INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim +mkdir_p!$mkdir_p$ac_delim +AWK!$AWK$ac_delim +SET_MAKE!$SET_MAKE$ac_delim +am__leading_dot!$am__leading_dot$ac_delim +AMTAR!$AMTAR$ac_delim +am__tar!$am__tar$ac_delim +am__untar!$am__untar$ac_delim +MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim +MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim +MAINT!$MAINT$ac_delim +CC!$CC$ac_delim +CFLAGS!$CFLAGS$ac_delim +LDFLAGS!$LDFLAGS$ac_delim +CPPFLAGS!$CPPFLAGS$ac_delim +ac_ct_CC!$ac_ct_CC$ac_delim +EXEEXT!$EXEEXT$ac_delim +OBJEXT!$OBJEXT$ac_delim +DEPDIR!$DEPDIR$ac_delim +am__include!$am__include$ac_delim +am__quote!$am__quote$ac_delim +AMDEP_TRUE!$AMDEP_TRUE$ac_delim +AMDEP_FALSE!$AMDEP_FALSE$ac_delim +AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim +CCDEPMODE!$CCDEPMODE$ac_delim +am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim +am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim +CPP!$CPP$ac_delim +LIBTOOL!$LIBTOOL$ac_delim +build!$build$ac_delim +build_cpu!$build_cpu$ac_delim +build_vendor!$build_vendor$ac_delim +build_os!$build_os$ac_delim +host!$host$ac_delim +host_cpu!$host_cpu$ac_delim +host_vendor!$host_vendor$ac_delim +host_os!$host_os$ac_delim +SED!$SED$ac_delim +GREP!$GREP$ac_delim +EGREP!$EGREP$ac_delim +FGREP!$FGREP$ac_delim +LD!$LD$ac_delim +DUMPBIN!$DUMPBIN$ac_delim +ac_ct_DUMPBIN!$ac_ct_DUMPBIN$ac_delim +NM!$NM$ac_delim +LN_S!$LN_S$ac_delim +_ACEOF + + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +if test -n "$ac_eof"; then + ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` + ac_eof=`expr $ac_eof + 1` +fi + +cat >>$CONFIG_STATUS <<_ACEOF +cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +_ACEOF +sed ' +s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +s/^/s,@/; s/!/@,|#_!!_#|/ +:n +t n +s/'"$ac_delim"'$/,g/; t +s/$/\\/; p +N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF +CEOF$ac_eof +_ACEOF + + +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF +AR!$AR$ac_delim +RANLIB!$RANLIB$ac_delim +lt_ECHO!$lt_ECHO$ac_delim +DSYMUTIL!$DSYMUTIL$ac_delim +NMEDIT!$NMEDIT$ac_delim +LIPO!$LIPO$ac_delim +OTOOL!$OTOOL$ac_delim +OTOOL64!$OTOOL64$ac_delim +INTLTOOL_UPDATE!$INTLTOOL_UPDATE$ac_delim +INTLTOOL_MERGE!$INTLTOOL_MERGE$ac_delim +INTLTOOL_EXTRACT!$INTLTOOL_EXTRACT$ac_delim +INTLTOOL_DESKTOP_RULE!$INTLTOOL_DESKTOP_RULE$ac_delim +INTLTOOL_DIRECTORY_RULE!$INTLTOOL_DIRECTORY_RULE$ac_delim +INTLTOOL_KEYS_RULE!$INTLTOOL_KEYS_RULE$ac_delim +INTLTOOL_PROP_RULE!$INTLTOOL_PROP_RULE$ac_delim +INTLTOOL_OAF_RULE!$INTLTOOL_OAF_RULE$ac_delim +INTLTOOL_PONG_RULE!$INTLTOOL_PONG_RULE$ac_delim +INTLTOOL_SERVER_RULE!$INTLTOOL_SERVER_RULE$ac_delim +INTLTOOL_SHEET_RULE!$INTLTOOL_SHEET_RULE$ac_delim +INTLTOOL_SOUNDLIST_RULE!$INTLTOOL_SOUNDLIST_RULE$ac_delim +INTLTOOL_UI_RULE!$INTLTOOL_UI_RULE$ac_delim +INTLTOOL_XAM_RULE!$INTLTOOL_XAM_RULE$ac_delim +INTLTOOL_KBD_RULE!$INTLTOOL_KBD_RULE$ac_delim +INTLTOOL_XML_RULE!$INTLTOOL_XML_RULE$ac_delim +INTLTOOL_XML_NOMERGE_RULE!$INTLTOOL_XML_NOMERGE_RULE$ac_delim +INTLTOOL_CAVES_RULE!$INTLTOOL_CAVES_RULE$ac_delim +INTLTOOL_SCHEMAS_RULE!$INTLTOOL_SCHEMAS_RULE$ac_delim +INTLTOOL_THEME_RULE!$INTLTOOL_THEME_RULE$ac_delim +INTLTOOL_SERVICE_RULE!$INTLTOOL_SERVICE_RULE$ac_delim +INTLTOOL_POLICY_RULE!$INTLTOOL_POLICY_RULE$ac_delim +XGETTEXT!$XGETTEXT$ac_delim +MSGMERGE!$MSGMERGE$ac_delim +MSGFMT!$MSGFMT$ac_delim +INTLTOOL_PERL!$INTLTOOL_PERL$ac_delim +ALL_LINGUAS!$ALL_LINGUAS$ac_delim +DATADIRNAME!$DATADIRNAME$ac_delim +USE_NLS!$USE_NLS$ac_delim +MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim +GMSGFMT!$GMSGFMT$ac_delim +CATALOGS!$CATALOGS$ac_delim +CATOBJEXT!$CATOBJEXT$ac_delim +GMOFILES!$GMOFILES$ac_delim +INSTOBJEXT!$INSTOBJEXT$ac_delim +INTLLIBS!$INTLLIBS$ac_delim +PO_IN_DATADIR_TRUE!$PO_IN_DATADIR_TRUE$ac_delim +PO_IN_DATADIR_FALSE!$PO_IN_DATADIR_FALSE$ac_delim +POFILES!$POFILES$ac_delim +POSUB!$POSUB$ac_delim +MKINSTALLDIRS!$MKINSTALLDIRS$ac_delim +GETTEXT_PACKAGE!$GETTEXT_PACKAGE$ac_delim +plugindir!$plugindir$ac_delim +imagedir!$imagedir$ac_delim +metadatadir!$metadatadir$ac_delim +compdatadir!$compdatadir$ac_delim +PKG_CONFIG_PATH!$PKG_CONFIG_PATH$ac_delim +PKG_CONFIG!$PKG_CONFIG$ac_delim +COMPIZ_CFLAGS!$COMPIZ_CFLAGS$ac_delim +COMPIZ_LIBS!$COMPIZ_LIBS$ac_delim +BCOP_CFLAGS!$BCOP_CFLAGS$ac_delim +BCOP_LIBS!$BCOP_LIBS$ac_delim +BCOP_BIN!$BCOP_BIN$ac_delim +GL_CFLAGS!$GL_CFLAGS$ac_delim +GL_LIBS!$GL_LIBS$ac_delim +GCONFTOOL!$GCONFTOOL$ac_delim +SCHEMAS_CFLAGS!$SCHEMAS_CFLAGS$ac_delim +SCHEMAS_LIBS!$SCHEMAS_LIBS$ac_delim +xsltdir!$xsltdir$ac_delim +GCONF_SCHEMA_CONFIG_SOURCE!$GCONF_SCHEMA_CONFIG_SOURCE$ac_delim +GCONF_SCHEMA_FILE_DIR!$GCONF_SCHEMA_FILE_DIR$ac_delim +GCONF_SCHEMAS_INSTALL_TRUE!$GCONF_SCHEMAS_INSTALL_TRUE$ac_delim +GCONF_SCHEMAS_INSTALL_FALSE!$GCONF_SCHEMAS_INSTALL_FALSE$ac_delim +USE_SCHEMAS_TRUE!$USE_SCHEMAS_TRUE$ac_delim +USE_SCHEMAS_FALSE!$USE_SCHEMAS_FALSE$ac_delim +LIBOBJS!$LIBOBJS$ac_delim +LTLIBOBJS!$LTLIBOBJS$ac_delim +_ACEOF + + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 75; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +if test -n "$ac_eof"; then + ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` + ac_eof=`expr $ac_eof + 1` +fi + +cat >>$CONFIG_STATUS <<_ACEOF +cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end +_ACEOF +sed ' +s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +s/^/s,@/; s/!/@,|#_!!_#|/ +:n +t n +s/'"$ac_delim"'$/,g/; t +s/$/\\/; p +N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF +:end +s/|#_!!_#|//g +CEOF$ac_eof +_ACEOF + + +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ +s/:*$// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF +fi # test -n "$CONFIG_FILES" + + +for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 +echo "$as_me: error: Invalid tag $ac_tag." >&2;} + { (exit 1); exit 1; }; };; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +echo "$as_me: error: cannot find input file: $ac_f" >&2;} + { (exit 1); exit 1; }; };; + esac + ac_file_inputs="$ac_file_inputs $ac_f" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input="Generated from "`IFS=: + echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { echo "$as_me:$LINENO: creating $ac_file" >&5 +echo "$as_me: creating $ac_file" >&6;} + fi + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin";; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + { as_dir="$ac_dir" + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= + +case `sed -n '/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p +' $ac_file_inputs` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF + sed "$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s&@configure_input@&$configure_input&;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&5 +echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out"; rm -f "$tmp/out";; + *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; + esac + ;; + :H) + # + # CONFIG_HEADER + # +_ACEOF + +# Transform confdefs.h into a sed script `conftest.defines', that +# substitutes the proper values into config.h.in to produce config.h. +rm -f conftest.defines conftest.tail +# First, append a space to every undef/define line, to ease matching. +echo 's/$/ /' >conftest.defines +# Then, protect against being on the right side of a sed subst, or in +# an unquoted here document, in config.status. If some macros were +# called several times there might be several #defines for the same +# symbol, which is useless. But do not sort them, since the last +# AC_DEFINE must be honored. +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where +# NAME is the cpp macro being defined, VALUE is the value it is being given. +# PARAMS is the parameter list in the macro definition--in most cases, it's +# just an empty string. +ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' +ac_dB='\\)[ (].*,\\1define\\2' +ac_dC=' ' +ac_dD=' ,' + +uniq confdefs.h | + sed -n ' + t rset + :rset + s/^[ ]*#[ ]*define[ ][ ]*// + t ok + d + :ok + s/[\\&,]/\\&/g + s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p + s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p + ' >>conftest.defines + +# Remove the space that was appended to ease matching. +# Then replace #undef with comments. This is necessary, for +# example, in the case of _POSIX_SOURCE, which is predefined and required +# on some systems where configure will not decide to define it. +# (The regexp can be short, since the line contains either #define or #undef.) +echo 's/ $// +s,^[ #]*u.*,/* & */,' >>conftest.defines + +# Break up conftest.defines: +ac_max_sed_lines=50 + +# First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" +# Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" +# Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" +# et cetera. +ac_in='$ac_file_inputs' +ac_out='"$tmp/out1"' +ac_nxt='"$tmp/out2"' + +while : +do + # Write a here document: + cat >>$CONFIG_STATUS <<_ACEOF + # First, check the format of the line: + cat >"\$tmp/defines.sed" <<\\CEOF +/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def +/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def +b +:def +_ACEOF + sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS + echo 'CEOF + sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS + ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in + sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail + grep . conftest.tail >/dev/null || break + rm -f conftest.defines + mv conftest.tail conftest.defines +done +rm -f conftest.defines conftest.tail + +echo "ac_result=$ac_in" >>$CONFIG_STATUS +cat >>$CONFIG_STATUS <<\_ACEOF + if test x"$ac_file" != x-; then + echo "/* $configure_input */" >"$tmp/config.h" + cat "$ac_result" >>"$tmp/config.h" + if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then + { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 +echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f $ac_file + mv "$tmp/config.h" $ac_file + fi + else + echo "/* $configure_input */" + cat "$ac_result" + fi + rm -f "$tmp/out12" +# Compute $ac_file's index in $config_headers. +_am_arg=$ac_file +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 +echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + { as_dir=$dirpart/$fdir + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +done + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008 Free Software Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool 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 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="" + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method == "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# The archiver. +AR=$lt_AR +AR_FLAGS=$lt_AR_FLAGS + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that does not interpret backslashes. +ECHO=$lt_ECHO + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# If ld is used when linking, flag to hardcode \$libdir into a binary +# during linking. This must work even if \$libdir does not exist. +hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Fix the shell variable \$srcfile for the compiler. +fix_srcfile_path=$lt_fix_srcfile_path + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + case $xsi_shell in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac +} + +# func_basename file +func_basename () +{ + func_basename_result="${1##*/}" +} + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}" +} + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +func_stripname () +{ + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"} +} + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=${1%%=*} + func_opt_split_arg=${1#*=} +} + +# func_lo2o object +func_lo2o () +{ + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=${1%.*}.lo +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=$(( $* )) +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=${#1} +} + +_LT_EOF + ;; + *) # Bourne compatible functions. + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` +} + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; + esac +} + +# sed scripts: +my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q' +my_sed_long_arg='1s/^-[^=]*=//' + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` + func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` +} + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'` +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "$@"` +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` +} + +_LT_EOF +esac + +case $lt_shell_append in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$1+=\$2" +} +_LT_EOF + ;; + *) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$1=\$$1\$2" +} + +_LT_EOF + ;; + esac + + + sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + ;; + "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac ;; + "po/stamp-it":C) + rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" + >"po/stamp-it.tmp" + sed '/^#/d + s/^[[].*] *// + /^[ ]*$/d + '"s|^| $ac_top_srcdir/|" \ + "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" + + if test ! -f "po/Makefile"; then + { { echo "$as_me:$LINENO: error: po/Makefile is not ready." >&5 +echo "$as_me: error: po/Makefile is not ready." >&2;} + { (exit 1); exit 1; }; } + fi + mv "po/Makefile" "po/Makefile.tmp" + sed '/^POTFILES =/,/[^\\]$/ { + /^POTFILES =/!d + r po/POTFILES + } + ' "po/Makefile.tmp" >"po/Makefile" + rm -f "po/Makefile.tmp" + mv "po/stamp-it.tmp" "po/stamp-it" + ;; + + esac +done # for ac_tag + + +{ (exit 0); exit 0; } +_ACEOF +chmod +x $CONFIG_STATUS +ac_clean_files=$ac_clean_files_save + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || { (exit 1); exit 1; } +fi + diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/debian/changelog /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/debian/changelog --- compiz-fusion-plugins-unsupported-0.7.6/debian/changelog 2008-11-12 10:24:07.000000000 +0000 +++ compiz-fusion-plugins-unsupported-0.7.8/debian/changelog 2008-11-12 10:24:07.000000000 +0000 @@ -1,3 +1,11 @@ +compiz-fusion-plugins-unsupported (0.7.8-0intrepid1) intrepid; urgency=low + + * New upstream release + * the 0.7.6 version of compiz-fusion-plugins-unsupported will + not work with compiz 0.7.8 so this update is needed (LP: #296811) + + -- Michael Vogt Wed, 12 Nov 2008 10:22:53 +0100 + compiz-fusion-plugins-unsupported (0.7.6-1) unstable; urgency=low * New upstream release. diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/debian/control /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/debian/control --- compiz-fusion-plugins-unsupported-0.7.6/debian/control 2008-11-12 10:24:07.000000000 +0000 +++ compiz-fusion-plugins-unsupported-0.7.8/debian/control 2008-11-12 10:24:07.000000000 +0000 @@ -1,6 +1,7 @@ Source: compiz-fusion-plugins-unsupported Priority: extra -Maintainer: Debian X Strike Force +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian X Strike Force Uploaders: Sean Finney Build-Depends: automake1.9, autotools-dev, compiz-dev (>= 0.7.6), compiz-fusion-bcop (>= 0.7.6), debhelper (>= 5), intltool, libgconf2-dev, libglib2.0-dev, libtool, libxml2-dev, libxslt1-dev, pkg-config, xsltproc, librsvg2-dev, libcairo2-dev, libsm-dev, libglu1-mesa-dev, libdbus-1-dev, libdecoration0-dev, libxml-parser-perl, x11proto-core-dev, libxrender-dev Standards-Version: 3.7.2 diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/debian/rules /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/debian/rules --- compiz-fusion-plugins-unsupported-0.7.6/debian/rules 2008-11-12 10:24:07.000000000 +0000 +++ compiz-fusion-plugins-unsupported-0.7.8/debian/rules 2008-11-12 10:24:07.000000000 +0000 @@ -26,7 +26,7 @@ for f in $(UPSTREAM_PRESERVE); do \ cp -a $$f $$f.preserve; \ done - ./autogen.sh +# ./autogen.sh ./configure --prefix=/usr --disable-static touch configure-stamp @@ -42,8 +42,8 @@ rm -f build-stamp configure-stamp [ ! -f Makefile ] || $(MAKE) distclean # clean up extra automake cruft - find . -type f -name Makefile.in -print0 | xargs -0 rm -f - rm -f $(AUTOFOO_DELETE) + #find . -type f -name Makefile.in -print0 | xargs -0 rm -f + #rm -f $(AUTOFOO_DELETE) for f in $(UPSTREAM_PRESERVE); do \ if [ -f $$f.preserve ]; then \ cp -a $$f.preserve $$f; rm -f $$f.preserve; \ diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/depcomp /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/depcomp --- compiz-fusion-plugins-unsupported-0.7.6/depcomp 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/depcomp 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,589 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2007-03-29.01 + +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software +# Foundation, Inc. + +# This program 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. + +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by `PROGRAMS ARGS'. + object Object file output by `PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputing dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz +## The second -e expression handles DOS-style file names with drive letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the `deleted header file' problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory +## that the space means something, we add a space to the output as +## well. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like `#:fec' to the end of the + # dependency line. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ + tr ' +' ' ' >> $depfile + echo >> $depfile + + # The second pass generates a dummy entry for each header file. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> $depfile + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts `$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + # Each line is of the form `foo.o: dependent.h'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +icc) + # Intel's C compiler understands `-MD -MF file'. However on + # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c + # ICC 7.0 will fill foo.d with something like + # foo.o: sub/foo.c + # foo.o: sub/foo.h + # which is wrong. We want: + # sub/foo.o: sub/foo.c + # sub/foo.o: sub/foo.h + # sub/foo.c: + # sub/foo.h: + # ICC 7.1 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using \ : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | + sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" + # Add `dependent.h:' lines. + sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in `foo.d' instead, so we check for that too. + # Subdirectories are respected. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + + if test "$libtool" = yes; then + # With Tru64 cc, shared objects can also be used to make a + # static library. This mechanism is used in libtool 1.4 series to + # handle both shared and static libraries in a single compilation. + # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. + # + # With libtool 1.5 this exception was removed, and libtool now + # generates 2 separate objects for the 2 libraries. These two + # compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 + tmpdepfile2=$dir$base.o.d # libtool 1.5 + tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 + tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.o.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + tmpdepfile4=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for `:' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. + "$@" $dashmflag | + sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + tr ' ' ' +' < "$tmpdepfile" | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no + for arg in "$@"; do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix="`echo $object | sed 's/^.*\././'`" + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E | + sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | + sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o, + # because we must use -o when running libtool. + "$@" || exit $? + IFS=" " + for arg + do + case "$arg" in + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" + . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/images/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/images/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/images/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/images/Makefile.in 2008-09-18 17:22:33.000000000 +0100 @@ -0,0 +1,422 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(imagesdir)" +imagesDATA_INSTALL = $(INSTALL_DATA) +DATA = $(images_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +imagesdir = $(imagedir) +images_DATA = \ + snowflake.png + +EXTRA_DIST = \ + snowflake.png + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu images/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu images/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-imagesDATA: $(images_DATA) + @$(NORMAL_INSTALL) + test -z "$(imagesdir)" || $(MKDIR_P) "$(DESTDIR)$(imagesdir)" + @list='$(images_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(imagesDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(imagesdir)/$$f'"; \ + $(imagesDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(imagesdir)/$$f"; \ + done + +uninstall-imagesDATA: + @$(NORMAL_UNINSTALL) + @list='$(images_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(imagesdir)/$$f'"; \ + rm -f "$(DESTDIR)$(imagesdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(imagesdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-imagesDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-imagesDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-imagesDATA install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-imagesDATA + +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/install-sh /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/install-sh --- compiz-fusion-plugins-unsupported-0.7.6/install-sh 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/install-sh 2008-09-18 17:22:28.000000000 +0100 @@ -0,0 +1,519 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2006-12-25.00 + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call `install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + trap '(exit $?); exit' 1 2 13 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names starting with `-'. + case $src in + -*) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + + dst=$dst_arg + # Protect names starting with `-'. + case $dst in + -*) dst=./$dst;; + esac + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writeable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + -*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test -z "$d" && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/ltmain.sh /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/ltmain.sh --- compiz-fusion-plugins-unsupported-0.7.6/ltmain.sh 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/ltmain.sh 2008-09-18 17:22:28.000000000 +0100 @@ -0,0 +1,7880 @@ +# Generated from ltmain.m4sh. + +# ltmain.sh (GNU libtool) 2.2.4 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool 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 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print informational messages (default) +# --version print version information +# -h, --help print short or long help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.2.4 Debian-2.2.4-0ubuntu4 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . + +PROGRAM=ltmain.sh +PACKAGE=libtool +VERSION="2.2.4 Debian-2.2.4-0ubuntu4" +TIMESTAMP="" +package_revision=1.2976 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# NLS nuisances: We save the old values to restore during execute mode. +# Only set LANG and LC_ALL to C if already set. +# These must not be set unconditionally because not all systems understand +# e.g. LANG=C (notably SCO). +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done + +$lt_unset CDPATH + + + + + +: ${CP="cp -f"} +: ${ECHO="echo"} +: ${EGREP="/bin/grep -E"} +: ${FGREP="/bin/grep -F"} +: ${GREP="/bin/grep"} +: ${LN_S="ln -s"} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SED="/bin/sed"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` +} + +# Generated shell functions inserted here. + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + +# The name of this program: +# In the unlikely event $progname began with a '-', it would play havoc with +# func_echo (imagine progname=-n), so we prepend ./ in that case: +func_dirname_and_basename "$progpath" +progname=$func_basename_result +case $progname in + -*) progname=./$progname ;; +esac + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=: + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname${mode+: }$mode: $*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname${mode+: }$mode: "${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname${mode+: }$mode: warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "X$my_directory_path" | $Xsed -e "$dirname"` + done + my_dir_list=`$ECHO "X$my_dir_list" | $Xsed -e 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "X$my_tmpdir" | $Xsed +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "X$1" | $Xsed -e "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "X$1" | $Xsed \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + + + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $SED -n '/^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $SED -n '/^# Usage:/,/# -h/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + $ECHO + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help +# Echo long help message to standard output and exit. +func_help () +{ + $SED -n '/^# Usage:/,/# Report bugs to/ { + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/ + p + }' < "$progpath" + exit $? +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + func_error "missing argument for $1" + exit_cmd=exit +} + +exit_cmd=: + + + + + +# Check that we have a working $ECHO. +if test "X$1" = X--no-reexec; then + # Discard the --no-reexec flag, and continue. + shift +elif test "X$1" = X--fallback-echo; then + # Avoid inline document here, it may be left over + : +elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t'; then + # Yippee, $ECHO works! + : +else + # Restart under the correct shell, and then maybe $ECHO will work. + exec $SHELL "$progpath" --no-reexec ${1+"$@"} +fi + +if test "X$1" = X--fallback-echo; then + # used as fallback echo + shift + cat </dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# Parse options once, thoroughly. This comes as soon as possible in +# the script to make things like `libtool --version' happen quickly. +{ + + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; + esac + + # Parse non-mode specific arguments: + while test "$#" -gt 0; do + opt="$1" + shift + + case $opt in + --config) func_config ;; + + --debug) preserve_args="$preserve_args $opt" + func_echo "enabling shell trace mode" + opt_debug='set -x' + $opt_debug + ;; + + -dlopen) test "$#" -eq 0 && func_missing_arg "$opt" && break + execute_dlfiles="$execute_dlfiles $1" + shift + ;; + + --dry-run | -n) opt_dry_run=: ;; + --features) func_features ;; + --finish) mode="finish" ;; + + --mode) test "$#" -eq 0 && func_missing_arg "$opt" && break + case $1 in + # Valid mode arguments: + clean) ;; + compile) ;; + execute) ;; + finish) ;; + install) ;; + link) ;; + relink) ;; + uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; + esac + + mode="$1" + shift + ;; + + --preserve-dup-deps) + opt_duplicate_deps=: ;; + + --quiet|--silent) preserve_args="$preserve_args $opt" + opt_silent=: + ;; + + --verbose| -v) preserve_args="$preserve_args $opt" + opt_silent=false + ;; + + --tag) test "$#" -eq 0 && func_missing_arg "$opt" && break + preserve_args="$preserve_args $opt $1" + func_enable_tag "$1" # tagname is set here + shift + ;; + + # Separate optargs to long options: + -dlopen=*|--mode=*|--tag=*) + func_opt_split "$opt" + set dummy "$func_opt_split_opt" "$func_opt_split_arg" ${1+"$@"} + shift + ;; + + -\?|-h) func_usage ;; + --help) opt_help=: ;; + --version) func_version ;; + + -*) func_fatal_help "unrecognized option \`$opt'" ;; + + *) nonopt="$opt" + break + ;; + esac + done + + + case $host in + *cygwin* | *mingw* | *pw32*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_duplicate_deps + ;; + esac + + # Having warned about all mis-specified options, bail out if + # anything was wrong. + $exit_cmd $EXIT_FAILURE +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +## ----------- ## +## Main. ## +## ----------- ## + +$opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + test -z "$mode" && func_fatal_error "error: you must specify a MODE." + + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$execute_dlfiles" && test "$mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$mode' for more information." +} + + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_ltwrapper_scriptname_result="" + if func_ltwrapper_executable_p "$1"; then + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" + fi +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_quote_for_eval "$arg" + CC_quoted="$CC_quoted $func_quote_for_eval_result" + done + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_quote_for_eval "$arg" + CC_quoted="$CC_quoted $func_quote_for_eval_result" + done + case "$@ " in + " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T <?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + removelist="$removelist $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + removelist="$removelist $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + if test -n "$fix_srcfile_path"; then + eval srcfile=\"$fix_srcfile_path\" + fi + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + command="$command -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + command="$command -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + command="$command$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { +test "$mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to building PIC objects only + -prefer-non-pic try to building non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$mode'" + ;; + esac + + $ECHO + $ECHO "Try \`$progname --help' for more information about other modes." + + exit $? +} + + # Now that we've collected a possible --mode arg, show help if necessary + $opt_help && func_mode_help + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $execute_dlfiles; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + dir="$dir/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -*) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_quote_for_eval "$file" + args="$args $func_quote_for_eval_result" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + $ECHO "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libdirs="$nonopt" + admincmds= + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for dir + do + libdirs="$libdirs $dir" + done + + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || admincmds="$admincmds + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + $ECHO "X----------------------------------------------------------------------" | $Xsed + $ECHO "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + $ECHO + $ECHO "If you ever happen to want to link against installed libraries" + $ECHO "in a given directory, LIBDIR, you must either use libtool, and" + $ECHO "specify the full pathname of the library, or use the \`-LLIBDIR'" + $ECHO "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + $ECHO " - add LIBDIR to the \`$shlibpath_var' environment variable" + $ECHO " during execution" + fi + if test -n "$runpath_var"; then + $ECHO " - add LIBDIR to the \`$runpath_var' environment variable" + $ECHO " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + $ECHO " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + $ECHO + + $ECHO "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + $ECHO "more information, such as the ld(1), crle(1) and ld.so(8) manual" + $ECHO "pages." + ;; + *) + $ECHO "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + $ECHO "X----------------------------------------------------------------------" | $Xsed + exit $EXIT_SUCCESS +} + +test "$mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + $ECHO "X$nonopt" | $GREP shtool >/dev/null; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + install_prog="$install_prog$func_quote_for_eval_result" + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + for arg + do + if test -n "$dest"; then + files="$files $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + case " $install_prog " in + *[\\\ /]cp\ *) ;; + *) prev=$arg ;; + esac + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + install_prog="$install_prog $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + staticlibs="$staticlibs $file" + ;; + + *.la) + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) current_libdirs="$current_libdirs $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) future_libdirs="$future_libdirs $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + dir="$dir$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "X$destdir" | $Xsed -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin*|*mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_verbose "extracting global C symbols from \`$progfile'" + $opt_dry_run || eval "$NM $progfile | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin | *mingw* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + eval "$NM $dlprefile 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + $ECHO '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + $ECHO >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +" + case $host in + *cygwin* | *mingw* ) + $ECHO >> "$output_objdir/$my_dlsyms" "\ +/* DATA imports from DLLs on WIN32 con't be const, because + runtime relocations are performed -- see ld's documentation + on pseudo-relocs. */" + lt_dlsym_const= ;; + *osf5*) + echo >> "$output_objdir/$my_dlsyms" "\ +/* This system does not cope well with relocations in const data */" + lt_dlsym_const= ;; + *) + lt_dlsym_const=const ;; + esac + + $ECHO >> "$output_objdir/$my_dlsyms" "\ +extern $lt_dlsym_const lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +$lt_dlsym_const lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + $ECHO >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) symtab_cflags="$symtab_cflags $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then + win32_nmres=`eval $NM -f posix -A $1 | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" 'exit $?' + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + + +# func_emit_wrapper arg +# +# emit a libtool wrapper script on stdout +# don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variable +# set therein. +# +# arg is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the '.lib' directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=no + if test -n "$1" ; then + func_emit_wrapper_arg1=$1 + fi + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed='${SED} -e 1s/^X//' +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + ECHO=\"$qecho\" + file=\"\$0\" + # Make sure echo works. + if test \"X\$1\" = X--no-reexec; then + # Discard the --no-reexec flag, and continue. + shift + elif test \"X\`{ \$ECHO '\t'; } 2>/dev/null\`\" = 'X\t'; then + # Yippee, \$ECHO works! + : + else + # Restart under the correct shell, and then maybe \$ECHO will work. + exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} + fi + fi\ +" + $ECHO "\ + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"X\$file\" | \$Xsed -e 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"X\$thisdir\" | \$Xsed -e 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` + + export $shlibpath_var +" + fi + + # fixup the dll searchpath if we need to. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2*) + $ECHO "\ + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + $ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} +# end: func_emit_wrapper + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +# define setmode _setmode +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +#ifdef _MSC_VER +# define S_IXUSR _S_IEXEC +# define stat _stat +# ifndef _INTPTR_T_DEFINED +# define intptr_t int +# endif +#endif + +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifdef __CYGWIN__ +# define FOPEN_WB "wb" +#endif + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#undef LTWRAPPER_DEBUGPRINTF +#if defined DEBUGWRAPPER +# define LTWRAPPER_DEBUGPRINTF(args) ltwrapper_debugprintf args +static void +ltwrapper_debugprintf (const char *fmt, ...) +{ + va_list args; + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); +} +#else +# define LTWRAPPER_DEBUGPRINTF(args) +#endif + +const char *program_name = NULL; + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_fatal (const char *message, ...); + +static const char *script_text = +EOF + + func_emit_wrapper yes | + $SED -e 's/\([\\"]\)/\\\1/g' \ + -e 's/^/ "/' -e 's/$/\\n"/' + echo ";" + + cat </dev/null || echo $SHELL` + case $lt_newargv0 in + *.exe | *.EXE) ;; + *) lt_newargv0=$lt_newargv0.exe ;; + esac + ;; + * ) lt_newargv0=$SHELL ;; + esac + fi + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + LTWRAPPER_DEBUGPRINTF (("(make_executable) : %s\n", + path ? (*path ? path : "EMPTY!") : "NULL!")); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + LTWRAPPER_DEBUGPRINTF (("(find_executable) : %s\n", + wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!")); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal ("getcwd failed"); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal ("getcwd failed"); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + LTWRAPPER_DEBUGPRINTF (("checking path component for symlinks: %s\n", + tmp_pathspec)); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + char *errstr = strerror (errno); + lt_fatal ("Error accessing file %s (%s)", tmp_pathspec, errstr); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal ("Could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +static void +lt_error_core (int exit_status, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s: %s: ", program_name, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, "FATAL", message, ap); + va_end (ap); +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + dlfiles="$dlfiles $arg" + else + dlprefiles="$dlprefiles $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) deplibs="$deplibs $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# moreargs="$moreargs $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + dlfiles="$dlfiles $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + dlprefiles="$dlprefiles $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) rpath="$rpath $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) xrpath="$xrpath $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + weak_libs="$weak_libs $arg" + prev= + continue + ;; + xcclinker) + linker_flags="$linker_flags $qarg" + compiler_flags="$compiler_flags $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + compiler_flags="$compiler_flags $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + linker_flags="$linker_flags $qarg" + compiler_flags="$compiler_flags $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname '-L' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "*) ;; + *) + deplibs="$deplibs -L$dir" + lib_search_path="$lib_search_path $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) + testbindir=`$ECHO "X$dir" | $Xsed -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + *) dllsearchpath="$dllsearchpath:$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + *) dllsearchpath="$dllsearchpath:$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + deplibs="$deplibs System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + deplibs="$deplibs $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot) + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) new_inherited_linker_flags="$new_inherited_linker_flags $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) xrpath="$xrpath $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + arg="$arg $wl$func_quote_for_eval_result" + compiler_flags="$compiler_flags $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + arg="$arg $wl$func_quote_for_eval_result" + compiler_flags="$compiler_flags $wl$func_quote_for_eval_result" + linker_flags="$linker_flags $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # -64, -mips[0-9] enable 64-bit mode on the SGI compiler + # -r[0-9][0-9]* specifies the processor on the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler + # +DA*, +DD* enable 64-bit mode on the HP compiler + # -q* pass through compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* pass through architecture-specific + # compiler args for GCC + # -F/path gives path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC + # @file GCC response files + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + compiler_flags="$compiler_flags $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + objs="$objs $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + dlfiles="$dlfiles $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + dlprefiles="$dlprefiles $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + deplibs="$deplibs $arg" + old_deplibs="$old_deplibs $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + dlfiles="$dlfiles $arg" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + dlprefiles="$dlprefiles $arg" + prev= + else + deplibs="$deplibs $arg" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_duplicate_deps ; then + case "$libs " in + *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; + esac + fi + libs="$libs $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; + esac + pre_post_deps="$pre_post_deps $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + case $lib in + *.la) func_source "$lib" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + deplib_base=`$ECHO "X$deplib" | $Xsed -e "$basename"` + case " $weak_libs " in + *" $deplib_base "*) ;; + *) deplibs="$deplibs $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + compiler_flags="$compiler_flags $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + newlib_search_path="$newlib_search_path $func_stripname_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + newlib_search_path="$newlib_search_path $func_stripname_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + dir=$func_stripname_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) xrpath="$xrpath $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) lib="$deplib" ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"X$deplib\"" 2>/dev/null | $Xsed -e 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + $ECHO + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have" + $ECHO "*** because the file extensions .$libext of this argument makes me believe" + $ECHO "*** that it is just a static archive that I should not use here." + else + $ECHO + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + newdlprefiles="$newdlprefiles $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + newdlfiles="$newdlfiles $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed -e 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) new_inherited_linker_flags="$new_inherited_linker_flags $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && dlfiles="$dlfiles $dlopen" + test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + convenience="$convenience $ladir/$objdir/$old_library" + old_convenience="$old_convenience $ladir/$objdir/$old_library" + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_duplicate_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; + esac + fi + tmp_libs="$tmp_libs $deplib" + done + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + for l in $old_library $library_names; do + linklib="$l" + done + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + dlprefiles="$dlprefiles $lib $dependency_libs" + else + newdlfiles="$newdlfiles $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$libdir" + absdir="$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + notinst_path="$notinst_path $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + notinst_path="$notinst_path $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + newdlprefiles="$newdlprefiles $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + dlpreconveniencelibs="$dlpreconveniencelibs $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + newdlprefiles="$newdlprefiles $dir/$dlname" + else + newdlprefiles="$newdlprefiles $dir/$linklib" + fi + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + newlib_search_path="$newlib_search_path $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + newlib_search_path="$newlib_search_path $func_stripname_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_duplicate_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; + esac + fi + tmp_libs="$tmp_libs $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) temp_rpath="$temp_rpath$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) compile_rpath="$compile_rpath $absdir" + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath="$finalize_rpath $libdir" + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw*) + # No point in relinking DLLs because paths are not encoded + notinst_deplibs="$notinst_deplibs $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + notinst_deplibs="$notinst_deplibs $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + $ECHO + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) compile_rpath="$compile_rpath $absdir" + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath="$finalize_rpath $libdir" + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + $ECHO + $ECHO "*** And there doesn't seem to be a static archive available" + $ECHO "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$dir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + add_dir="$add_dir -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + add_dir="$add_dir -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + $ECHO + $ECHO "*** Warning: This system can not link to static lib archive $lib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + $ECHO "*** But as you try to build a module library, libtool will still create " + $ECHO "*** a static module, that should work as long as the dlopening application" + $ECHO "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + $ECHO + $ECHO "*** However, this would only work if libtool was able to extract symbol" + $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could" + $ECHO "*** not find such a program. So, this module is probably useless." + $ECHO "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) xrpath="$xrpath $temp_xrpath";; + esac;; + *) temp_deplibs="$temp_deplibs $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + newlib_search_path="$newlib_search_path $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + if $opt_duplicate_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; + esac + fi + tmp_libs="$tmp_libs $deplib" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_dirname "$deplib" "" "." + dir="$func_dirname_result" + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + compiler_flags="$compiler_flags ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + linker_flags="$linker_flags -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) lib_search_path="$lib_search_path $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) tmp_libs="$tmp_libs $deplib" ;; + esac + ;; + *) tmp_libs="$tmp_libs $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + tmp_libs="$tmp_libs $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + objs="$objs$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + $ECHO + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + libobjs="$libobjs $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + *) + func_fatal_configuration "$modename: unknown library version type \`$version_type'" + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + verstring="$verstring:${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + libobjs="$libobjs $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + removelist="$removelist $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + oldlibs="$oldlibs $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"` + # deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"` + # dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + temp_xrpath="$temp_xrpath -R$libdir" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath="$finalize_rpath $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) dlfiles="$dlfiles $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) dlprefiles="$dlprefiles $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + deplibs="$deplibs System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + deplibs="$deplibs -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + newdeplibs="$newdeplibs $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + $ECHO + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have" + $ECHO "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + newdeplibs="$newdeplibs $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + newdeplibs="$newdeplibs $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"X$potent_lib\"" 2>/dev/null | $Xsed -e 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + newdeplibs="$newdeplibs $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + $ECHO + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have" + $ECHO "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + newdeplibs="$newdeplibs $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO "X $deplibs" | $Xsed \ + -e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO "X $tmp_deplibs" | $Xsed -e "s,$i,,"` + done + fi + if $ECHO "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' | + $GREP . >/dev/null; then + $ECHO + if test "X$deplibs_check_method" = "Xnone"; then + $ECHO "*** Warning: inter-library dependencies are not supported in this platform." + else + $ECHO "*** Warning: inter-library dependencies are not known to be supported." + fi + $ECHO "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + fi + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + $ECHO + $ECHO "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + $ECHO "*** a static module, that should work as long as the dlopening" + $ECHO "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + $ECHO + $ECHO "*** However, this would only work if libtool was able to extract symbol" + $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could" + $ECHO "*** not find such a program. So, this module is probably useless." + $ECHO "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + $ECHO "*** The inter-library dependencies that have been dropped here will be" + $ECHO "*** automatically added whenever a program is linked with this library" + $ECHO "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + $ECHO + $ECHO "*** Since this library must not contain undefined symbols," + $ECHO "*** because either the platform does not support them or" + $ECHO "*** it was explicitly requested with -no-undefined," + $ECHO "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO "X $deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + new_libs="$new_libs -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$new_libs $deplib" ;; + esac + ;; + *) new_libs="$new_libs $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + dep_rpath="$dep_rpath $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) perm_rpath="$perm_rpath $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + if test -n "$hardcode_libdir_flag_spec_ld"; then + eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" + else + eval dep_rpath=\"$hardcode_libdir_flag_spec\" + fi + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + rpath="$rpath$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + linknames="$linknames $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + delfiles="$delfiles $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + func_len " $cmd" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + delfiles="$delfiles $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + tmp_deplibs="$tmp_deplibs $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + + func_extract_archives $gentop $convenience + libobjs="$libobjs $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + linker_flags="$linker_flags $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + output_la=`$ECHO "X$output" | $Xsed -e "$basename"` + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + $ECHO 'INPUT (' > $output + for obj in $save_libobjs + do + $ECHO "$obj" >> $output + done + $ECHO ')' >> $output + delfiles="$delfiles $output" + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + $ECHO "$obj" >> $output + done + delfiles="$delfiles $output" + output=$firstobj\"$file_list_spec$output\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + eval concat_cmds=\"$reload_cmds $objlist $last_robj\" + else + # All subsequent reloadable object files will link in + # the last one created. + eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=$obj + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + delfiles="$delfiles $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + delfiles="$delfiles $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + + func_extract_archives $gentop $dlprefiles + libobjs="$libobjs $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + generated="$generated $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + compile_command="$compile_command ${wl}-bind_at_load" + finalize_command="$finalize_command ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + new_libs="$new_libs -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$new_libs $deplib" ;; + esac + ;; + *) new_libs="$new_libs $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + compile_command="$compile_command $compile_deplibs" + finalize_command="$finalize_command $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath="$finalize_rpath $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + rpath="$rpath $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) perm_rpath="$perm_rpath $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + *) dllsearchpath="$dllsearchpath:$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + *) dllsearchpath="$dllsearchpath:$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + rpath="$rpath $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + finalize_command=`$ECHO "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + rpath="$rpath$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + rpath="$rpath$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` + fi + + # Quote $ECHO for shipping. + if test "X$ECHO" = "X$SHELL $progpath --fallback-echo"; then + case $progpath in + [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; + *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; + esac + qecho=`$ECHO "X$qecho" | $Xsed -e "$sed_quote_subst"` + else + qecho=`$ECHO "X$ECHO" | $Xsed -e "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # we should really use a build-platform specific compiler + # here, but OTOH, the wrappers (shell script and this C one) + # are only useful if you want to execute the "real" binary. + # Since the "real" binary is built for $host, then this + # wrapper might as well be built for $host, too. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + oldobjs="$oldobjs $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + + func_extract_archives $gentop $addlibs + oldobjs="$oldobjs $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + + func_extract_archives $gentop $dlprefiles + oldobjs="$oldobjs $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + $ECHO "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + oldobjs="$oldobjs $gentop/$newobj" + ;; + *) oldobjs="$oldobjs $obj" ;; + esac + done + fi + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + newdependency_libs="$newdependency_libs $libdir/$name" + ;; + *) newdependency_libs="$newdependency_libs $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + newdlfiles="$newdlfiles $libdir/$name" + ;; + *) newdlfiles="$newdlfiles $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + newdlprefiles="$newdlprefiles $libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + newdlfiles="$newdlfiles $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + newdlprefiles="$newdlprefiles $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$mode" = link || test "$mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) RM="$RM $arg"; rmforce=yes ;; + -*) RM="$RM $arg" ;; + *) files="$files $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + origobjdir="$objdir" + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + objdir="$origobjdir" + else + objdir="$dir/$origobjdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$mode" = uninstall && objdir="$dir" + + # Remember objdir for removal later, being careful to avoid duplicates + if test "$mode" = clean; then + case " $rmdirs " in + *" $objdir "*) ;; + *) rmdirs="$rmdirs $objdir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + rmfiles="$rmfiles $objdir/$n" + done + test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" + + case "$mode" in + clean) + case " $library_names " in + # " " in the beginning catches empty $dlname + *" $dlname "*) ;; + *) rmfiles="$rmfiles $objdir/$dlname" ;; + esac + test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + rmfiles="$rmfiles $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + rmfiles="$rmfiles $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + rmfiles="$rmfiles $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + rmfiles="$rmfiles $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + rmfiles="$rmfiles $objdir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + rmfiles="$rmfiles $objdir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + objdir="$origobjdir" + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$mode" = uninstall || test "$mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/Makefile.am /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/Makefile.am --- compiz-fusion-plugins-unsupported-0.7.6/Makefile.am 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/Makefile.am 2008-09-17 20:18:39.000000000 +0100 @@ -2,17 +2,8 @@ SUBDIRS = metadata src po images EXTRA_DIST = \ - VERSION \ - intltool-extract.in \ - intltool-merge.in \ - intltool-update.in \ - intltool-extract \ - intltool-merge \ - intltool-update + VERSION DISTCLEANFILES = \ - intltool-extract \ - intltool-merge \ - intltool-update \ po/stamp-it \ po/.intltool-merge-cache diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/Makefile.in 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,703 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = . +DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/config.h.in \ + $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ + TODO config.guess config.sub depcomp install-sh ltmain.sh \ + missing +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + { test ! -d $(distdir) \ + || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr $(distdir); }; } +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +SUBDIRS = metadata src po images +EXTRA_DIST = \ + VERSION + +DISTCLEANFILES = \ + po/stamp-it \ + po/.intltool-merge-cache + +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +.SUFFIXES: +am--refresh: + @: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ + cd $(srcdir) && $(AUTOMAKE) --gnu \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) + +config.h: stamp-h1 + @if test ! -f $@; then \ + rm -f stamp-h1; \ + $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ + else :; fi + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_srcdir) && $(AUTOHEADER) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d $(distdir) || mkdir $(distdir) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r $(distdir) +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-lzma: distdir + tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lzma*) \ + unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir); chmod a+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && cd $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @cd $(distuninstallcheck_dir) \ + && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile config.h +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-hdr \ + distclean-libtool distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-exec-am: + +install-html: install-html-recursive + +install-info: install-info-recursive + +install-man: + +install-pdf: install-pdf-recursive + +install-ps: install-ps-recursive + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ + install-strip + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am am--refresh check check-am clean clean-generic \ + clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ + dist-gzip dist-lzma dist-shar dist-tarZ dist-zip distcheck \ + distclean distclean-generic distclean-hdr distclean-libtool \ + distclean-tags distcleancheck distdir distuninstallcheck dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am + +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/metadata/Makefile.am /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/metadata/Makefile.am --- compiz-fusion-plugins-unsupported-0.7.6/metadata/Makefile.am 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/metadata/Makefile.am 2008-09-18 17:13:04.000000000 +0100 @@ -28,9 +28,7 @@ endif EXTRA_DIST = \ - $(xml_files) \ - $(xml_in_files) \ - $(schema_files) + $(xml_in_files) DISTCLEANFILES = \ $(xml_files) \ diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/metadata/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/metadata/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/metadata/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/metadata/Makefile.in 2008-09-18 17:22:33.000000000 +0100 @@ -0,0 +1,467 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = metadata +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(xmldir)" +schemaDATA_INSTALL = $(INSTALL_DATA) +xmlDATA_INSTALL = $(INSTALL_DATA) +DATA = $(schema_DATA) $(xml_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +xmldir = $(metadatadir) +xml_in_files = \ + atlantis.xml.in \ + fakeargb.xml.in \ + mswitch.xml.in \ + snow.xml.in \ + tile.xml.in + +xml_files = $(xml_in_files:.xml.in=.xml) +xml_DATA = $(xml_files) +@USE_SCHEMAS_TRUE@schemadir = $(GCONF_SCHEMA_FILE_DIR) +@USE_SCHEMAS_TRUE@schema_files = $(patsubst %.xml.in,compiz-%.schemas,$(xml_in_files)) +@USE_SCHEMAS_TRUE@schema_DATA = $(schema_files) +EXTRA_DIST = \ + $(xml_in_files) + +DISTCLEANFILES = \ + $(xml_files) \ + $(schema_files) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu metadata/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu metadata/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-schemaDATA: $(schema_DATA) + @$(NORMAL_INSTALL) + test -z "$(schemadir)" || $(MKDIR_P) "$(DESTDIR)$(schemadir)" + @list='$(schema_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(schemaDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(schemadir)/$$f'"; \ + $(schemaDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(schemadir)/$$f"; \ + done + +uninstall-schemaDATA: + @$(NORMAL_UNINSTALL) + @list='$(schema_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(schemadir)/$$f'"; \ + rm -f "$(DESTDIR)$(schemadir)/$$f"; \ + done +install-xmlDATA: $(xml_DATA) + @$(NORMAL_INSTALL) + test -z "$(xmldir)" || $(MKDIR_P) "$(DESTDIR)$(xmldir)" + @list='$(xml_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(xmlDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(xmldir)/$$f'"; \ + $(xmlDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(xmldir)/$$f"; \ + done + +uninstall-xmlDATA: + @$(NORMAL_UNINSTALL) + @list='$(xml_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(xmldir)/$$f'"; \ + rm -f "$(DESTDIR)$(xmldir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(xmldir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +@GCONF_SCHEMAS_INSTALL_FALSE@install-data-local: +@USE_SCHEMAS_FALSE@install-data-local: +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-schemaDATA install-xmlDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-schemaDATA uninstall-xmlDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-schemaDATA install-strip install-xmlDATA installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-schemaDATA uninstall-xmlDATA + + +@INTLTOOL_XML_RULE@ + +@USE_SCHEMAS_TRUE@%.schemas: $(xml_files) +@USE_SCHEMAS_TRUE@ xsltproc -o $@ $(xsltdir)/schemas.xslt $(subst compiz-,,$*).xml; + +@GCONF_SCHEMAS_INSTALL_TRUE@@USE_SCHEMAS_TRUE@install-data-local: +@GCONF_SCHEMAS_INSTALL_TRUE@@USE_SCHEMAS_TRUE@ if test -z "$(DESTDIR)" ; then \ +@GCONF_SCHEMAS_INSTALL_TRUE@@USE_SCHEMAS_TRUE@ GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA); \ +@GCONF_SCHEMAS_INSTALL_TRUE@@USE_SCHEMAS_TRUE@ fi +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/missing /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/missing --- compiz-fusion-plugins-unsupported-0.7.6/missing 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/missing 2008-09-18 17:22:33.000000000 +0100 @@ -0,0 +1,367 @@ +#! /bin/sh +# Common stub for a few missing GNU programs while installing. + +scriptversion=2006-05-10.23 + +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 +# Free Software Foundation, Inc. +# Originally by Fran,cois Pinard , 1996. + +# This program 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. + +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 +fi + +run=: +sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' +sed_minuso='s/.* -o \([^ ]*\).*/\1/p' + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +msg="missing on your system" + +case $1 in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + # Exit code 63 means version mismatch. This often happens + # when the user try to use an ancient version of a tool on + # a file that requires a minimum version. In this case we + # we should proceed has if the program had been absent, or + # if --run hadn't been passed. + if test $? = 63; then + run=: + msg="probably too old" + fi + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +error status if there is no known handling for PROGRAM. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails + +Supported PROGRAM values: + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' + autom4te touch the output file, or create a stub one + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file + lex create \`lex.yy.c', if possible, from existing .c + makeinfo touch the output file + tar try tar, gnutar, gtar, then tar without non-portable flags + yacc create \`y.tab.[ch]', if possible, from existing .[ch] + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 + ;; + +esac + +# Now exit if we have it, but it failed. Also exit now if we +# don't have it and --version was passed (most likely to detect +# the program). +case $1 in + lex|yacc) + # Not GNU programs, they don't have --version. + ;; + + tar) + if test -n "$run"; then + echo 1>&2 "ERROR: \`tar' requires --run" + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + exit 1 + fi + ;; + + *) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + # Could not run --version or --help. This is probably someone + # running `$TOOL --version' or `$TOOL --help' to check whether + # $TOOL exists and not knowing $TOOL uses missing. + exit 1 + fi + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. +case $1 in + aclocal*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from + any GNU archive site." + touch aclocal.m4 + ;; + + autoconf) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU + archive site." + touch configure + ;; + + autoheader) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them + from any GNU archive site." + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case $f in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files + ;; + + automake*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. + Grab them from any GNU archive site." + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te) + echo 1>&2 "\ +WARNING: \`$1' is needed, but is $msg. + You might have modified some files without having the + proper tools for further handling them. + You can get \`$1' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi + ;; + + bison|yacc) + echo 1>&2 "\ +WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h + if test $# -ne 1; then + eval LASTARG="\${$#}" + case $LASTARG in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi + if test ! -f y.tab.h; then + echo >y.tab.h + fi + if test ! -f y.tab.c; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; + + lex|flex) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c + if test $# -ne 1; then + eval LASTARG="\${$#}" + case $LASTARG in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi + if test ! -f lex.yy.c; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; + + help2man) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit 1 + fi + ;; + + makeinfo) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file + indirectly affecting the aspect of the manual. The spurious + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -z "$file"; then + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n ' + /^@setfilename/{ + s/.* \([^ ]*\) *$/\1/ + p + q + }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info + fi + # If the file does not exist, the user really needs makeinfo; + # let's fail without touching anything. + test -f $file || exit 1 + touch $file + ;; + + tar) + shift + + # We have already tried tar in the generic part. + # Look for gnutar/gtar before invocation to avoid ugly error + # messages. + if (gnutar --version > /dev/null 2>&1); then + gnutar "$@" && exit 0 + fi + if (gtar --version > /dev/null 2>&1); then + gtar "$@" && exit 0 + fi + firstarg="$1" + if shift; then + case $firstarg in + *o*) + firstarg=`echo "$firstarg" | sed s/o//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + case $firstarg in + *h*) + firstarg=`echo "$firstarg" | sed s/h//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + fi + + echo 1>&2 "\ +WARNING: I can't seem to be able to run \`tar' with the given arguments. + You may want to install GNU tar or Free paxutils, or check the + command line arguments." + exit 1 + ;; + + *) + echo 1>&2 "\ +WARNING: \`$1' is needed, and is $msg. + You might have modified some files without having the + proper tools for further handling them. Check the \`README' file, + it often tells you about the needed prerequisites for installing + this package. You may also peek at any GNU archive site, in case + some other package would contain this missing \`$1' program." + exit 1 + ;; +esac + +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/ar.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/ar.po --- compiz-fusion-plugins-unsupported-0.7.6/po/ar.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/ar.po 2008-09-17 14:29:32.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 0.6\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:50+0530\n" +"POT-Creation-Date: 2008-09-15 14:45+0530\n" "PO-Revision-Date: 2007-10-10 00:12+0200\n" "Last-Translator: Banxoo \n" "Language-Team: Compiz Fusion Translators \n" @@ -114,6 +114,12 @@ msgid "Brightness of faded windows" msgstr "نصوع النوافذ المتلاشية" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "إجعلها أكثر سهولة للتركيز و ذلك بجعل النوافذ الخاملة باهتة." @@ -142,12 +148,6 @@ msgid "Window types that should be Opacified." msgstr "أنواع النوافذ التي لا يجب أن تكون شفافة" -msgid "Airplane" -msgstr "طاىٔرة ورقية" - -msgid "Airplane Flying Path Length" -msgstr "طول مسار الطاىٔرة" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -155,20 +155,6 @@ "إختيار جميع المؤثرات بطريقة عشواىٔية، بتجاهل المؤثرات المختارة. إذا لم يتم " "إختيار أي شئ لحدث معين، لن يتم التحريك عند هذا الحدث." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"مدى التردد (لموجات الطوي) للطوي الأفقي بالنسبةلطول النافذة. القيمة السالبة " -"تقوم بطوي معاكس للخارج." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"مدى التردد (لموجات الطوي) للطوي المنحني الأفقي بالنسبةلطول النافذة. القيمة " -"السالبة تقوم بطوي معاكس للخارج." - msgid "Angle of window at the end of the animation." msgstr "زاوية النافذة عند إنتهاﺀ التحريك" @@ -178,9 +164,6 @@ msgid "Animation Time Step" msgstr "وقت الخطوة في التحريك" -msgid "Animation Time Step For Intense Effects" -msgstr "وقت الخطوة في التحريك للمؤثرات الثقيلة" - msgid "Animation duration in milliseconds for close effect." msgstr "مدة التحريك للتأثير الإغلاق بالجزﺀ من الألف من الثانية" @@ -199,51 +182,12 @@ msgid "Animations" msgstr "التحريك" -msgid "Automatic" -msgstr "تلقاىٔي" - msgid "Away Angle" msgstr "زاوية الإبعاد" msgid "Away Position" msgstr "موقع الإبعاد" -msgid "Beam" -msgstr "الشعاع" - -msgid "Beam Color" -msgstr "لون الشعاع" - -msgid "Beam Life" -msgstr "مدة حياة الشعاع" - -msgid "Beam Slowdown" -msgstr "تباطؤ الشعاع" - -msgid "Beam Spacing" -msgstr "تباعد الشعاع" - -msgid "Beam Up" -msgstr "ظهور الشعاع" - -msgid "Beam Width" -msgstr "طول الشعاع" - -msgid "Beam color." -msgstr "لون الشعاع" - -msgid "Beam life." -msgstr "مدة حياة الشعاع" - -msgid "Beam slowdown." -msgstr "تباطؤ الشعاع" - -msgid "Beam width." -msgstr "طول الشعاع" - -msgid "Burn" -msgstr "الحرق" - msgid "Close Animation" msgstr "حركة الإغلاق" @@ -267,7 +211,8 @@ msgid "Curved Fold" msgstr "الطوي المنحني" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "مدى تردد الطوي المنحني" msgid "Dodge" @@ -276,15 +221,6 @@ msgid "Dodge Gap Ratio" msgstr "مستوى هوة المراوغة" -msgid "Domino" -msgstr "دومينو" - -msgid "Domino Piece Falling Direction" -msgstr "إتجاه سقوط قطع الدومينو" - -msgid "Down" -msgstr "أسفل" - msgid "Dream" msgstr "حلم" @@ -294,77 +230,22 @@ msgid "Effect Settings" msgstr "خيارات الموْثرة" -msgid "Explode" -msgstr "تفجير" - msgid "Fade" msgstr "تلاشي" -msgid "Falling direction for Domino pieces." -msgstr "إتجاه سقوط قطع الدومينو." - -msgid "Fire" -msgstr "نار" - -msgid "Fire Particle Color" -msgstr "لون أجزاﺀ النار" - -msgid "Fire Particle Life" -msgstr "مدة حياة اجزاﺀ النار" - -msgid "Fire Particle Size" -msgstr "حجم اجزاﺀ النار" - -msgid "Fire Particle Slowdown" -msgstr "تباطؤ أجزاﺀ النار" - -msgid "Fire Smoke" -msgstr "دخان النار" - -msgid "Fire constant speed" -msgstr "نار ذو سرعة ثابتة" - -msgid "Fire direction" -msgstr "إتجاه النار" - -msgid "Fire direction." -msgstr "إتجاه النار." - -msgid "Fire particle color." -msgstr "لون أجزاﺀ النار." - -msgid "Fire particle life." -msgstr "مدة حياة اجزاﺀ النا.ر" - -msgid "Fire particle size." -msgstr "حجم اجزاﺀ النار." - -msgid "Fire particle slowdown." -msgstr "تباطؤ أجزاﺀ النار." - -msgid "Fire smoke." -msgstr "دخان النار." - msgid "Fixed window interior during the Rollup animation." msgstr "داخل النافذة ثابت أثناﺀ حركة الرفع" -msgid "Fly to TaskBar on Minimize" -msgstr "طيران إلى شريط المهام " - msgid "Focus Animation" msgstr "حركة التركيز" msgid "Focus Effect" msgstr "مؤثرات التركيز" -msgid "Fold" -msgstr "طَوي" - -msgid "Fold Direction" -msgstr "إتجاه الطَوي" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "إتجاه الطوي عند البداية للقطع في تأثير الشفرات " +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "زحلقة ١" @@ -372,16 +253,11 @@ msgid "Glide 2" msgstr "زحلقة ٢" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "إستخدام ألوان عشواىٔية لتأثير النار، معروف أيضا بإسم النار الأسطورية" - -msgid "Hexagonal" -msgstr "مسدس" - msgid "Horizontal Folds" msgstr "طوي أفقي" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "مدى تردد الطوي الأفقي" msgid "How spring-like the Sidekick animation should be." @@ -390,24 +266,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "كيف حركة التقريب عليها ان تكون مع النابض." -msgid "In" -msgstr "داخل" - -msgid "In-out" -msgstr "داخل-خارج" - -msgid "Leaf Spread" -msgstr "إنتشار ورق الشجر" - -msgid "Left" -msgstr "يسار" - -msgid "Left-right" -msgstr "يسار-يمين" - -msgid "Length of airplane's flying path." -msgstr "طول مسار الطاىٔرة" - msgid "Magic Lamp" msgstr "المصباح السحري" @@ -429,9 +287,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "نهاية فتح / غلق المصباح السحري" -msgid "Make fire effect duration be dependent on window height." -msgstr "جعل مدة تأثير النار مرتبط بطول النافذة" - msgid "Minimize Animation" msgstr "حركة التصغير" @@ -441,21 +296,12 @@ msgid "Minimize/Unminimize Only" msgstr "تصغير / إرجاع فقط" -msgid "Movement direction(s) for window pieces." -msgstr "إتجاه حركة قطع النافذة" - msgid "None" msgstr "لا شئ" -msgid "Number Of Fire Particles" -msgstr "عدد أجزاﺀ النار" - msgid "Number of Horizontal Folds" msgstr "عدد الطويات الأفقية" -msgid "Number of fire particles." -msgstr "عدد أجزاﺀ النار." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "عدد الدورات للركلة الجانبية (مع هامش ١٠% عشواىٔية)٭" @@ -484,15 +330,13 @@ msgid "Options" msgstr "خيارات" -msgid "Out" -msgstr "خارج" - msgid "Pool" msgstr "صندوق" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "صندوق من المؤثرات ليتم الإختيار بينهم تأثير عشواىٔي. إضعط إعادة لإستعادة " "اللاىٔحة كاملة." @@ -506,36 +350,15 @@ msgid "Random Effects" msgstr "مؤثرات عشواىٔية" -msgid "Randomly Colored Fire" -msgstr "نار ملونة عشواىٔيا" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "نسبة الفرق بين وقت بداية المناورة و مدة التركيز" -msgid "Razr" -msgstr "شفرات" - -msgid "Razr Fold Opening Direction" -msgstr "إتجاه بداية الطوي الحاد" - -msgid "Rectangular" -msgstr "مستطيل" - -msgid "Right" -msgstr "يمين" - msgid "Roll Up" msgstr "رفع" msgid "Rollup Fixed Interior" msgstr "رفع مع داخل ثابت" -msgid "Rotation Angle" -msgstr "زاوية الدوران" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "زاوية دوران حركة أجزاﺀ النافذة (بالدرجات)" - msgid "Shade Animation" msgstr "حركة التظليل" @@ -551,15 +374,6 @@ msgid "Sidekick Springiness" msgstr "مرونة الركلة الجانبية" -msgid "Skewer" -msgstr "إنحراف" - -msgid "Skewer Direction" -msgstr "إتجاه الإنحراف" - -msgid "Spacing between beams." -msgstr "التباعد بين الأشعة" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -569,15 +383,6 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "العرض عند بداية الفتح و العرض عند الإغلاق لتأثير الفراغ." -msgid "Tessellation Type" -msgstr "نوع الفسيفساﺀ" - -msgid "Tessellation type for exploding window pieces." -msgstr "نوع الفسيفساﺀ لقطع النافذة المتفجرة." - -msgid "Tessellation type for window pieces." -msgstr "نوع الفسيفساﺀ لقطع النافذة." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -585,28 +390,6 @@ "المدة الزمنية بالميللي ثانية لكل صورة في التحريك. كلما كان الرقم أكبر، زاد " "سوﺀ التحريك و أصبح متقطشا." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"المدة الزمنية بالميللي ثانية لكل صورة في التحريك للمؤثرات الثقيلة (النار أو " -"الشعاع مثلا). كلما كان الرقم أكبر، زاد سوﺀ التحريكو أصبح متقطشا." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة على " -"طول النافذة." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة على " -"عرض النافذة." - msgid "The animation effect shown when closing a window." msgstr ".التأثير الذي سيستعمل عند إغلاق النافذة" @@ -622,20 +405,6 @@ msgid "The animation effect shown when shading a window." msgstr ".التأثير الذي سيستعمل عند تظليل النافذة" -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة على " -"طول النافذة." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة على " -"عرض النافذة." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "مدى التردد الأقصى (حجم الموجات) للمصباح السحري." @@ -649,36 +418,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "عدد الطويات الأفقية في تأثير الطوي الأفقي." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "حجم الموجات بالنسبة إلى طول النافذة." - msgid "The width of the wave relative to the window height." msgstr "عرض الموجة بالنسبة لطول النافذة." msgid "The windows that will be animated." msgstr "النوافذ التي ستحرّك." -msgid "Thickness" -msgstr "السماكة" - -msgid "Thickness of Animated Polygons" -msgstr "سماكة المضلّع المحرّك" - -msgid "Thickness of Exploding Polygons" -msgstr "سماكة المضلّع المنفجر" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "سماكة قطع النافذة المحركة (بالنقط)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "سماكة قطع النافذة المنفجرة (بالنقط)." - -msgid "Up" -msgstr "فوق" - -msgid "Up-down" -msgstr "فوق-تحت" - msgid "Use various animations as window effects" msgstr "إستعمل تحريكات متنوعة كمؤثرات للنافذة" @@ -709,17 +454,17 @@ msgid "Wave" msgstr "موجة" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "حجم الموجة" msgid "Wave Width" msgstr "عرض الموجة" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"إذا كان على النافذة الطيران إلى شريط المهام عند تصغيرها مع إستعمال تأثير " -"الطاىٔرة." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -753,28 +498,12 @@ "إذا كان على النافذة أن تُحجّم إلى شريط المهام عند تصغيرها مع إستعمال تأثير " "الطوي الأفقي." -msgid "Window Grid Height" -msgstr "طول شبكة النافذة" - -msgid "Window Grid Width" -msgstr "عرض شبكة النافذة" - -msgid "Window folding direction." -msgstr "إتجاه طوي النافذة" - msgid "Window that should animate with this effect when focused." msgstr "النافذة التي يجب تحريكها مع هذا التأثير عند التركيزعليها" msgid "Window that should animate with this effect when shaded." msgstr "النافذة التي يجب تحريكها مع هذا التأثير عند تظليلها" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"سماكة النافذة بالنقط. ضبط هذه بقيمة أعلى من صفر سيعطّل الظلال و الغباش و " -"الإنعكاسات خلال التحريك." - msgid "Zoom" msgstr "تكبير" @@ -886,84 +615,12 @@ msgid "Y position" msgstr "" -#, fuzzy -msgid "Brightness Decrease" -msgstr "النصوع" - -#, fuzzy -msgid "Brightness Increase" -msgstr "النصوع" - -#, fuzzy -msgid "Brightness Step" -msgstr "النصوع" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "نصوع النوافذ المتلاشية" - -msgid "Brightness and Saturation adjustments" +msgid "Bicubic filter" msgstr "" -#, fuzzy -msgid "Brightness settings" -msgstr "النصوع" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "نصوع النوافذ المتلاشية" - -#, fuzzy -msgid "Brightness window values" -msgstr "نصوع النوافذ المتلاشية" - -#, fuzzy -msgid "Brightness windows" -msgstr "نصوع النوافذ المتلاشية" - -msgid "General" +msgid "Bicubic texture filtering" msgstr "" -#, fuzzy -msgid "Saturation Decrease" -msgstr "قوة الألوان" - -#, fuzzy -msgid "Saturation Increase" -msgstr "قوة الألوان" - -#, fuzzy -msgid "Saturation Step" -msgstr "قوة الألوان" - -#, fuzzy -msgid "Saturation settings" -msgstr "قوة الألوان" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "قوة الألوان في النوافذ المتلاشية" - -#, fuzzy -msgid "Saturation window values" -msgstr "قوة الألوان في النوافذ المتلاشية" - -#, fuzzy -msgid "Saturation windows" -msgstr "قوة الألوان في النوافذ المتلاشية" - -#, fuzzy -msgid "Window specific" -msgstr "مسافة النافذة" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "النوافذ التي يجب أن تعالج بثلاثة أبعاد" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "النوافذ التي يجب أن تعالج بثلاثة أبعاد" - msgid "Color filter" msgstr "" @@ -1049,6 +706,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "" +msgid "Above" +msgstr "" + msgid "Adjust bottom face image to rotation" msgstr "" @@ -1070,6 +730,18 @@ msgid "Appearance" msgstr "" +msgid "Aspect ratio" +msgstr "" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "" + msgid "Behaviour" msgstr "" @@ -1097,110 +769,132 @@ msgid "Color of bottom face of the cube" msgstr "" +msgid "Color of the ground (far)." +msgstr "" + +msgid "Color of the ground (near)." +msgstr "" + msgid "Color of top face of the cube" msgstr "" +msgid "Compiz cube reflection and deformation" +msgstr "" + msgid "Cube Bottom Color" msgstr "" -msgid "Cube Caps" +msgid "Cube Reflection and Deformation" msgstr "" msgid "Cube Top Color" msgstr "" -msgid "Draw bottom face" +msgid "Cube caps" msgstr "" -msgid "Draw bottom face of the cube" +msgid "Cylinder" msgstr "" -msgid "Draw top face" -msgstr "" +#, fuzzy +msgid "Deform caps" +msgstr "مدة" -msgid "Draw top face of the cube" +msgid "Deform cube caps." msgstr "" -msgid "Go back to previous image for bottom face of the cube" +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "ثلاثة أبعاد فقط عند دوران الفأرة" + +#, fuzzy +msgid "Deformation" +msgstr "مدة" + +msgid "Deformation in unfold cube mode." msgstr "" -msgid "Go back to previous image for top face of the cube" +#, fuzzy +msgid "Deformation mode." +msgstr "مدة" + +msgid "Distance" msgstr "" -msgid "" -"List of PNG and SVG files that should be rendered on bottom face of cube" +msgid "Draw bottom face" msgstr "" -msgid "List of PNG and SVG files that should be rendered on top face of cube" +msgid "Draw bottom face of the cube" msgstr "" -msgid "Next bottom image" +msgid "Draw top face" msgstr "" -msgid "Next top image" +msgid "Draw top face of the cube" msgstr "" -msgid "Prev bottom image" +msgid "Enabled" msgstr "" -msgid "Prev top image" +msgid "Give cube a reflective ground." msgstr "" -msgid "Render images on top and bottom of the cube" +msgid "Go back to previous image for bottom face of the cube" msgstr "" -msgid "Scale bottom image" +msgid "Go back to previous image for top face of the cube" msgstr "" -msgid "Scale image to cover bottom face of cube" +msgid "Ground color(far)" msgstr "" -msgid "Scale image to cover top face of cube" +msgid "Ground color(near)" msgstr "" -msgid "Scale top image" +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." msgstr "" -msgid "Top image files" +msgid "Intensity" msgstr "" -msgid "Above" +msgid "Jumpy" msgstr "" -msgid "Auto zoom" +msgid "Jumpy reflection" msgstr "" -msgid "Auto zoom only on Mouse Rotate" +msgid "" +"List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" -msgid "Color of the ground (far)." +msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "" -msgid "Color of the ground (near)." +msgid "Maintain bottom aspect ratio" msgstr "" -msgid "Compiz cube reflection" +msgid "Maintain bottom cap image aspect ratio." msgstr "" -msgid "Cube Reflection" +msgid "Maintain top aspect ratio" msgstr "" -msgid "Distance" +msgid "Maintain top cap image aspect ratio." msgstr "" -msgid "Ground color(far)" +msgid "Next bottom image" msgstr "" -msgid "Ground color(near)" +msgid "Next top image" msgstr "" -msgid "Intensity" +msgid "Prev bottom image" msgstr "" -msgid "Jumpy" +msgid "Prev top image" msgstr "" -msgid "Jumpy reflection" +msgid "Reflection" msgstr "" msgid "Reflection ground size" @@ -1218,12 +912,45 @@ msgid "Reflection mode." msgstr "" +msgid "Scale bottom image" +msgstr "" + +msgid "Scale image to cover bottom face of cube" +msgstr "" + +msgid "Scale image to cover top face of cube" +msgstr "" + +msgid "Scale top image" +msgstr "" + +msgid "Sphere" +msgstr "" + +msgid "Top image files" +msgstr "" + +msgid "Unfold cube deformation" +msgstr "" + msgid "Zoom out automatically only on mouse rotate." msgstr "" msgid "Zoom out automatically to make the cube fit to the screen." msgstr "" +msgid "Cube Caps" +msgstr "" + +msgid "Render images on top and bottom of the cube" +msgstr "" + +msgid "Compiz cube reflection" +msgstr "" + +msgid "Cube Reflection" +msgstr "" + msgid "Animation used when switching to expo mode" msgstr "" @@ -1246,10 +973,6 @@ msgid "Curve strength" msgstr "" -#, fuzzy -msgid "Deformation" -msgstr "مدة" - msgid "Deformation of the expo wall" msgstr "" @@ -1340,9 +1063,6 @@ msgid "Previous viewport" msgstr "" -msgid "Reflection" -msgstr "" - msgid "Reflection Scale" msgstr "" @@ -1441,6 +1161,9 @@ msgid "Center the mouse" msgstr "" +msgid "Dynamic mouse pointer scale" +msgstr "" + msgid "Enable focus tracking" msgstr "" @@ -1495,15 +1218,10 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" - -msgid "Mouse Behaviour" +msgid "Minimum zoom factor" msgstr "" -msgid "Mouse Poll Interval" +msgid "Mouse Behaviour" msgstr "" msgid "Mouse Restrain Margin" @@ -1584,12 +1302,20 @@ msgid "Speed" msgstr "" +msgid "Static mouse pointer scale" +msgstr "" + msgid "Sync Mouse" msgstr "" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" @@ -1605,10 +1331,24 @@ msgid "Use linear filter when zoomed in" msgstr "" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "تكبير من الوسط" +#, fuzzy +msgid "Zoom Box" +msgstr "تكبير" + msgid "Zoom In" msgstr "" @@ -1636,6 +1376,9 @@ msgid "Zoom factor" msgstr "" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" @@ -1689,6 +1432,13 @@ msgid "Toggle window fake ARGB." msgstr "" +#, fuzzy +msgid "Add Particle" +msgstr "مدة حياة اجزاﺀ النار" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "" @@ -1704,6 +1454,33 @@ msgid "Clear (key)" msgstr "" +msgid "Fire Particle Color" +msgstr "لون أجزاﺀ النار" + +msgid "Fire Particle Life" +msgstr "مدة حياة اجزاﺀ النار" + +msgid "Fire Particle Size" +msgstr "حجم اجزاﺀ النار" + +msgid "Fire Particle Slowdown" +msgstr "تباطؤ أجزاﺀ النار" + +msgid "Fire particle color." +msgstr "لون أجزاﺀ النار." + +msgid "Fire particle life." +msgstr "مدة حياة اجزاﺀ النا.ر" + +msgid "Fire particle size." +msgstr "حجم اجزاﺀ النار." + +msgid "Fire particle slowdown." +msgstr "تباطؤ أجزاﺀ النار." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "إستخدام ألوان عشواىٔية لتأثير النار، معروف أيضا بإسم النار الأسطورية" + msgid "Initiate (button)" msgstr "" @@ -1725,6 +1502,9 @@ msgid "Paint fire or other particles on the screen" msgstr "" +msgid "Randomly Colored Fire" +msgstr "نار ملونة عشواىٔيا" + msgid "Cube Gears" msgstr "" @@ -1815,6 +1595,9 @@ msgid "Font Size" msgstr "" +msgid "General" +msgstr "" + msgid "Glass" msgstr "" @@ -2396,9 +2179,17 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "" + msgid "Mouse position polling" msgstr "" @@ -3091,8 +2882,13 @@ msgid "Background color of the window title" msgstr "" -msgid "Close Windows In Scale" -msgstr "" +#, fuzzy +msgid "Close Window" +msgstr "نوافذ ثلاثية الأبعاد" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "إرفع النوافذ عند دوران المكعب" msgid "Close windows while in scale mode" msgstr "" @@ -3100,9 +2896,18 @@ msgid "Color used for highlighting the hovered window" msgstr "" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "" @@ -3118,6 +2923,10 @@ msgid "Highlights the hovered window with the given color" msgstr "" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + msgid "No display" msgstr "" @@ -3127,6 +2936,13 @@ msgid "Organic - EXPERIMENTAL" msgstr "" +#, fuzzy +msgid "Pull Window" +msgstr "نوافذ ثلاثية الأبعاد" + +msgid "Pull window to current viewport while in scale mode" +msgstr "" + msgid "Scale Addons" msgstr "" @@ -3151,6 +2967,10 @@ msgid "Window Layout Mode" msgstr "" +#, fuzzy +msgid "Window Pull" +msgstr "عمق النافذة" + msgid "Window Title" msgstr "" @@ -3161,10 +2981,11 @@ msgid "Window title display in scale mode" msgstr "" -msgid "Zoom Windows In Scale" -msgstr "" +#, fuzzy +msgid "Zoom Window" +msgstr "نوافذ ثلاثية الأبعاد" -msgid "Zoom windows while in scale mode" +msgid "Zoom window while in scale mode" msgstr "" msgid "Filter Case Insensitive" @@ -3417,18 +3238,30 @@ msgid "Direction of window movement" msgstr "" +msgid "Down" +msgstr "أسفل" + +msgid "Left" +msgstr "يسار" + msgid "Left/Right" msgstr "" msgid "Movement Direction" msgstr "" +msgid "Right" +msgstr "يمين" + msgid "Show desktop" msgstr "" msgid "To Corners" msgstr "" +msgid "Up" +msgstr "فوق" + msgid "Up/Down" msgstr "" @@ -3554,211 +3387,424 @@ msgid "Choose 'Resistance', 'Attraction' or 'Full Mode'." msgstr "" -msgid "Control" +msgid "Control" +msgstr "" + +msgid "Edge Attraction Distance" +msgstr "" + +msgid "Edge Resistance Distance" +msgstr "" + +msgid "Edge attraction" +msgstr "" + +msgid "Edge resistance" +msgstr "" + +msgid "Edges" +msgstr "" + +msgid "Enables windows edges resistance" +msgstr "" + +msgid "Meta" +msgstr "" + +msgid "Screen edges" +msgstr "" + +msgid "Shift" +msgstr "" + +msgid "Snap Type" +msgstr "" + +msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." +msgstr "" + +msgid "Snapping Windows" +msgstr "" + +msgid "The distance until edge attraction takes place." +msgstr "" + +msgid "The distance until edge resistance takes place." +msgstr "" + +msgid "Use this bindings to avoid snapping." +msgstr "" + +msgid "Window edges" +msgstr "" + +msgid "Bottom to Top" +msgstr "" + +msgid "" +"Delay (in ms) between screen updates. Decreasing this value may make snow " +"fall more smoothly, but will also increase CPU usage." +msgstr "" + +msgid "Enable Blending" +msgstr "" + +msgid "Enable Textures" +msgstr "" + +msgid "Enables alpha blending of snowflakes." +msgstr "" + +msgid "Enables textured snowflakes. If not selected, color gradients are used." +msgstr "" + +msgid "Flakes rotate if checked." +msgstr "" + +msgid "How deep into the screen snowflakes can be drawn before being removed" +msgstr "" + +msgid "" +"How far outside the screen resolution snow flakes can be before being " +"removed. Needed because of FOV." +msgstr "" + +msgid "Key Bindings" +msgstr "" + +msgid "Left to Right" +msgstr "" + +msgid "Number Of Snowflakes" +msgstr "" + +msgid "Number of snowflakes" +msgstr "" + +msgid "Right to Left" +msgstr "" + +msgid "Rotate Flakes" +msgstr "" + +msgid "Screen Boxing" +msgstr "" + +msgid "Screen Depth" +msgstr "" + +msgid "Select snow flake movement direction" +msgstr "" + +msgid "Settings" +msgstr "" + +msgid "Size Of Snowflakes" +msgstr "" + +msgid "Size of snowflakes" +msgstr "" + +msgid "Snow" +msgstr "" + +msgid "Snow Direction" +msgstr "" + +msgid "Snow Over Windows" +msgstr "" + +msgid "Snow Speed" +msgstr "" + +msgid "Snow Textures" +msgstr "" + +msgid "Snow Toggle" +msgstr "" + +msgid "Snow for Compiz" +msgstr "" + +msgid "Snow is drawn above windows" +msgstr "" + +msgid "Snow textures" +msgstr "" + +msgid "Snow toggle key" +msgstr "" + +msgid "Speed of falling snow" +msgstr "" + +msgid "Textures" +msgstr "" + +msgid "Top to Bottom" msgstr "" -msgid "Edge Attraction Distance" +msgid "Update Delay" msgstr "" -msgid "Edge Resistance Distance" +msgid "A simple splash plugin" msgstr "" -msgid "Edge attraction" +msgid "Background File" msgstr "" -msgid "Edge resistance" +msgid "Background brightness." msgstr "" -msgid "Edges" +msgid "Background image File." msgstr "" -msgid "Enables windows edges resistance" +msgid "Background saturation." msgstr "" -msgid "Meta" +msgid "Display In/Out Time." msgstr "" -msgid "Screen edges" +msgid "Display Time" msgstr "" -msgid "Shift" +msgid "Images" msgstr "" -msgid "Snap Type" +msgid "Initiate Splash" msgstr "" -msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." +msgid "Logo File" msgstr "" -msgid "Snapping Windows" +msgid "Logo image File." msgstr "" -msgid "The distance until edge attraction takes place." +msgid "Show on first start" msgstr "" -msgid "The distance until edge resistance takes place." +msgid "Show splash on first start." msgstr "" -msgid "Use this bindings to avoid snapping." +msgid "Splash" msgstr "" -msgid "Window edges" +msgid "Start Splash." msgstr "" -msgid "Bottom to Top" +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" msgstr "" -msgid "" -"Delay (in ms) between screen updates. Decreasing this value may make snow " -"fall more smoothly, but will also increase CPU usage." +msgid "Behavior" msgstr "" -msgid "Enable Blending" +msgid "Darken background when showing the stack" msgstr "" -msgid "Enable Textures" +msgid "On Thumbnail" msgstr "" -msgid "Enables alpha blending of snowflakes." +#, fuzzy +msgid "Rotate inactive windows" +msgstr "قوة الألوان في النوافذ المتلاشية" + +msgid "Should not selected windows be rotated" msgstr "" -msgid "Enables textured snowflakes. If not selected, color gradients are used." +#, fuzzy +msgid "Stack Window Switcher" +msgstr "تطابق النافذة" + +msgid "Tilt angle of the background." msgstr "" -msgid "Flakes rotate if checked." +#, fuzzy +msgid "Windows" +msgstr "نوافذ ثلاثية الأبعاد" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "النوافذ التي يجب أن تعالج بثلاثة أبعاد" + +msgid "Alignment for rows that are not fully filled" msgstr "" -msgid "How deep into the screen snowflakes can be drawn before being removed" +msgid "Amount of brightness in percent" msgstr "" -msgid "" -"How far outside the screen resolution snow flakes can be before being " -"removed. Needed because of FOV." +msgid "Amount of opacity in percent" msgstr "" -msgid "Key Bindings" +msgid "Amount of saturation in percent" msgstr "" -msgid "Left to Right" +msgid "Auto Change Viewport" msgstr "" -msgid "Number Of Snowflakes" +msgid "Bring Selected To Front" msgstr "" -msgid "Number of snowflakes" +msgid "Centered" msgstr "" -msgid "Right to Left" +msgid "Change to the viewport of the selected window while switching" msgstr "" -msgid "Rotate Flakes" +msgid "Color of highlight rectangle" msgstr "" -msgid "Screen Boxing" +msgid "Color of highlight rectangle border" msgstr "" -msgid "Screen Depth" +msgid "Color of inlay in highlight rectangle border" msgstr "" -msgid "Select snow flake movement direction" +msgid "Generate mipmaps when possible for higher quality scaling" msgstr "" -msgid "Settings" +#, fuzzy +msgid "Highlight Border Color" +msgstr "لون الشعاع" + +msgid "Highlight Border Inlay Color" msgstr "" -msgid "Size Of Snowflakes" +msgid "Highlight Mode" msgstr "" -msgid "Size of snowflakes" +#, fuzzy +msgid "Icon" +msgstr "داخل" + +msgid "Minimized Window Highlight Rectangle" msgstr "" -msgid "Snow" +msgid "Mipmap" msgstr "" -msgid "Snow Direction" +msgid "Mode for highlighting the currently selected window" msgstr "" -msgid "Snow Over Windows" +msgid "Next Panel" msgstr "" -msgid "Snow Speed" +#, fuzzy +msgid "Next window" +msgstr "نوافذ ثلاثية الأبعاد" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "نوافذ ثلاثية الأبعاد" + +msgid "Next window (Group)" msgstr "" -msgid "Snow Textures" +msgid "Next window (No popup)" msgstr "" -msgid "Snow Toggle" +msgid "Original Window Position" msgstr "" -msgid "Snow for Compiz" +#, fuzzy +msgid "Popup Window Delay" +msgstr "نوافذ ثلاثية الأبعاد" + +msgid "Popup switcher if not visible and select next window" msgstr "" -msgid "Snow is drawn above windows" +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." msgstr "" -msgid "Snow textures" +msgid "Popup switcher if not visible and select next window out of all windows" msgstr "" -msgid "Snow toggle key" +msgid "Popup switcher if not visible and select previous window" msgstr "" -msgid "Speed of falling snow" +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." msgstr "" -msgid "Textures" +msgid "" +"Popup switcher if not visible and select previous window out of all windows" msgstr "" -msgid "Top to Bottom" +msgid "Prev Panel" msgstr "" -msgid "Update Delay" +#, fuzzy +msgid "Prev window" +msgstr "نوافذ ثلاثية الأبعاد" + +#, fuzzy +msgid "Prev window (All windows)" +msgstr "نوافذ ثلاثية الأبعاد" + +msgid "Prev window (Group)" msgstr "" -msgid "A simple splash plugin" +msgid "Prev window (No popup)" msgstr "" -msgid "Background File" +msgid "Row Alignment" msgstr "" -msgid "Background brightness." +msgid "Select next panel type window." msgstr "" -msgid "Background image File." +msgid "Select next window without showing the popup window." msgstr "" -msgid "Background saturation." +msgid "Select previous panel type window." msgstr "" -msgid "Display In/Out Time." +msgid "Select previous window without showing the popup window." msgstr "" -msgid "Display Time" +msgid "Selected Window Highlight" msgstr "" -msgid "Images" +#, fuzzy +msgid "Show Rectangle" +msgstr "مستطيل" + +msgid "Show icon next to thumbnail" msgstr "" -msgid "Initiate Splash" +msgid "Show minimized windows" msgstr "" -msgid "Logo File" +msgid "Static Application Switcher" msgstr "" -msgid "Logo image File." +msgid "Switcher speed" msgstr "" -msgid "Show on first start" +msgid "Switcher timestep" msgstr "" -msgid "Show splash on first start." +#, fuzzy +msgid "Switcher windows" +msgstr "نصوع النوافذ المتلاشية" + +msgid "Taskbar Entry" msgstr "" -msgid "Splash" +msgid "Time (in s) the popup window should be delayed before appearing" msgstr "" -msgid "Start Splash." +msgid "Where to draw highlight rectangle for minimized windows" msgstr "" +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "النوافذ التي يجب أن تعالج بثلاثة أبعاد" + msgid "Render text to texture" msgstr "" @@ -4412,9 +4458,6 @@ msgid "Center Tiled" msgstr "" -msgid "Centered" -msgstr "" - msgid "Color 1" msgstr "" @@ -4551,6 +4594,13 @@ msgid "Matches" msgstr "" +msgid "Maximized" +msgstr "" + +#, fuzzy +msgid "Maximized windows" +msgstr "نصوع النوافذ المتلاشية" + msgid "No ARGB visuals" msgstr "" @@ -4629,6 +4679,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "" @@ -4670,6 +4723,9 @@ "viewports." msgstr "" +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" @@ -4694,6 +4750,329 @@ msgid "Workarounds" msgstr "" +#~ msgid "Airplane" +#~ msgstr "طاىٔرة ورقية" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "طول مسار الطاىٔرة" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "وقت الخطوة في التحريك للمؤثرات الثقيلة" + +#~ msgid "Automatic" +#~ msgstr "تلقاىٔي" + +#~ msgid "Beam" +#~ msgstr "الشعاع" + +#~ msgid "Beam Color" +#~ msgstr "لون الشعاع" + +#~ msgid "Beam Life" +#~ msgstr "مدة حياة الشعاع" + +#~ msgid "Beam Slowdown" +#~ msgstr "تباطؤ الشعاع" + +#~ msgid "Beam Spacing" +#~ msgstr "تباعد الشعاع" + +#~ msgid "Beam Up" +#~ msgstr "ظهور الشعاع" + +#~ msgid "Beam Width" +#~ msgstr "طول الشعاع" + +#~ msgid "Beam color." +#~ msgstr "لون الشعاع" + +#~ msgid "Beam life." +#~ msgstr "مدة حياة الشعاع" + +#~ msgid "Beam slowdown." +#~ msgstr "تباطؤ الشعاع" + +#~ msgid "Beam width." +#~ msgstr "طول الشعاع" + +#~ msgid "Burn" +#~ msgstr "الحرق" + +#~ msgid "Domino" +#~ msgstr "دومينو" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "إتجاه سقوط قطع الدومينو" + +#~ msgid "Explode" +#~ msgstr "تفجير" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "إتجاه سقوط قطع الدومينو." + +#~ msgid "Fire" +#~ msgstr "نار" + +#~ msgid "Fire Smoke" +#~ msgstr "دخان النار" + +#~ msgid "Fire constant speed" +#~ msgstr "نار ذو سرعة ثابتة" + +#~ msgid "Fire direction" +#~ msgstr "إتجاه النار" + +#~ msgid "Fire direction." +#~ msgstr "إتجاه النار." + +#~ msgid "Fire smoke." +#~ msgstr "دخان النار." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "طيران إلى شريط المهام " + +#~ msgid "Fold" +#~ msgstr "طَوي" + +#~ msgid "Fold Direction" +#~ msgstr "إتجاه الطَوي" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "إتجاه الطوي عند البداية للقطع في تأثير الشفرات " + +#~ msgid "Hexagonal" +#~ msgstr "مسدس" + +#~ msgid "In" +#~ msgstr "داخل" + +#~ msgid "In-out" +#~ msgstr "داخل-خارج" + +#~ msgid "Leaf Spread" +#~ msgstr "إنتشار ورق الشجر" + +#~ msgid "Left-right" +#~ msgstr "يسار-يمين" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "طول مسار الطاىٔرة" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "جعل مدة تأثير النار مرتبط بطول النافذة" + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "إتجاه حركة قطع النافذة" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "عدد أجزاﺀ النار" + +#~ msgid "Number of fire particles." +#~ msgstr "عدد أجزاﺀ النار." + +#~ msgid "Out" +#~ msgstr "خارج" + +#~ msgid "Razr" +#~ msgstr "شفرات" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "إتجاه بداية الطوي الحاد" + +#~ msgid "Rectangular" +#~ msgstr "مستطيل" + +#~ msgid "Rotation Angle" +#~ msgstr "زاوية الدوران" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "زاوية دوران حركة أجزاﺀ النافذة (بالدرجات)" + +#~ msgid "Skewer" +#~ msgstr "إنحراف" + +#~ msgid "Skewer Direction" +#~ msgstr "إتجاه الإنحراف" + +#~ msgid "Spacing between beams." +#~ msgstr "التباعد بين الأشعة" + +#~ msgid "Tessellation Type" +#~ msgstr "نوع الفسيفساﺀ" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "نوع الفسيفساﺀ لقطع النافذة المتفجرة." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "نوع الفسيفساﺀ لقطع النافذة." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "المدة الزمنية بالميللي ثانية لكل صورة في التحريك للمؤثرات الثقيلة (النار " +#~ "أو الشعاع مثلا). كلما كان الرقم أكبر، زاد سوﺀ التحريكو أصبح متقطشا." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة " +#~ "على طول النافذة." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة " +#~ "على عرض النافذة." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة " +#~ "على طول النافذة." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "النافذة المتحركة ستقسم لقطع على طول شبكة. الرجاﺀ تحديد عدد خلايا الشبكة " +#~ "على عرض النافذة." + +#~ msgid "Thickness" +#~ msgstr "السماكة" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "سماكة المضلّع المحرّك" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "سماكة المضلّع المنفجر" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "سماكة قطع النافذة المحركة (بالنقط)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "سماكة قطع النافذة المنفجرة (بالنقط)." + +#~ msgid "Up-down" +#~ msgstr "فوق-تحت" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "إذا كان على النافذة الطيران إلى شريط المهام عند تصغيرها مع إستعمال تأثير " +#~ "الطاىٔرة." + +#~ msgid "Window Grid Height" +#~ msgstr "طول شبكة النافذة" + +#~ msgid "Window Grid Width" +#~ msgstr "عرض شبكة النافذة" + +#~ msgid "Window folding direction." +#~ msgstr "إتجاه طوي النافذة" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "سماكة النافذة بالنقط. ضبط هذه بقيمة أعلى من صفر سيعطّل الظلال و الغباش و " +#~ "الإنعكاسات خلال التحريك." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "مدى التردد (لموجات الطوي) للطوي الأفقي بالنسبةلطول النافذة. القيمة " +#~ "السالبة تقوم بطوي معاكس للخارج." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "مدى التردد (لموجات الطوي) للطوي المنحني الأفقي بالنسبةلطول النافذة. " +#~ "القيمة السالبة تقوم بطوي معاكس للخارج." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "حجم الموجات بالنسبة إلى طول النافذة." + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "النصوع" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "النصوع" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "النصوع" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "نصوع النوافذ المتلاشية" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "النصوع" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "نصوع النوافذ المتلاشية" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "نصوع النوافذ المتلاشية" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "نصوع النوافذ المتلاشية" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "قوة الألوان" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "قوة الألوان" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "قوة الألوان" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "قوة الألوان" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "قوة الألوان في النوافذ المتلاشية" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "قوة الألوان في النوافذ المتلاشية" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "قوة الألوان في النوافذ المتلاشية" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "مسافة النافذة" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "النوافذ التي يجب أن تعالج بثلاثة أبعاد" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "النوافذ التي يجب أن تعالج بثلاثة أبعاد" + #~ msgid "Animation Speed" #~ msgstr "سرعة الحركة" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/bn.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/bn.po --- compiz-fusion-plugins-unsupported-0.7.6/po/bn.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/bn.po 2008-09-17 14:29:32.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: compiz\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:50+0530\n" +"POT-Creation-Date: 2008-09-15 14:45+0530\n" "PO-Revision-Date: 2007-12-26 09:57+0100\n" "Last-Translator: Mahdee Jameel \n" "Language-Team: gist bengali team ,মাহদী জামীল \n" "Language-Team: Catalan \n" @@ -121,6 +121,12 @@ msgid "Brightness of faded windows" msgstr "Brillantor de les finestres quan s'esvaeixen" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -151,12 +157,6 @@ msgid "Window types that should be Opacified." msgstr "Tipus de finestres afectades per la opacitat." -msgid "Airplane" -msgstr "Aviò" - -msgid "Airplane Flying Path Length" -msgstr "Longitud del camí de vol de l'avió" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -164,16 +164,6 @@ "Tots els efectes són triats aleatòriament, ignorant quin efecte s'ha " "escollit. Si l'event escollit és Cap, no s'animarà l'event." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" - msgid "Angle of window at the end of the animation." msgstr "Angle de la finestra en acabar l'animació" @@ -183,9 +173,6 @@ msgid "Animation Time Step" msgstr "" -msgid "Animation Time Step For Intense Effects" -msgstr "" - msgid "Animation duration in milliseconds for close effect." msgstr "Duració de l'animació en milisegons per l'efecte de tancar." @@ -204,51 +191,12 @@ msgid "Animations" msgstr "Animacions" -msgid "Automatic" -msgstr "Automàtic" - msgid "Away Angle" msgstr "" msgid "Away Position" msgstr "" -msgid "Beam" -msgstr "" - -msgid "Beam Color" -msgstr "" - -msgid "Beam Life" -msgstr "" - -msgid "Beam Slowdown" -msgstr "" - -msgid "Beam Spacing" -msgstr "" - -msgid "Beam Up" -msgstr "" - -msgid "Beam Width" -msgstr "" - -msgid "Beam color." -msgstr "" - -msgid "Beam life." -msgstr "" - -msgid "Beam slowdown." -msgstr "" - -msgid "Beam width." -msgstr "" - -msgid "Burn" -msgstr "Flames" - msgid "Close Animation" msgstr "Animació de tancament" @@ -273,7 +221,7 @@ msgid "Curved Fold" msgstr "" -msgid "Curved Fold Amplitude" +msgid "Curved Fold Amplitude Multiplier" msgstr "" msgid "Dodge" @@ -282,15 +230,6 @@ msgid "Dodge Gap Ratio" msgstr "" -msgid "Domino" -msgstr "Dòmino" - -msgid "Domino Piece Falling Direction" -msgstr "Direcció de caiguda de les peces del dòmino" - -msgid "Down" -msgstr "Avall" - msgid "Dream" msgstr "Somni" @@ -300,76 +239,21 @@ msgid "Effect Settings" msgstr "Paràmetres de l'efecte" -msgid "Explode" -msgstr "Explota" - msgid "Fade" msgstr "Difumina" -msgid "Falling direction for Domino pieces." -msgstr "Direcció de caiguda per les peces del dòmino." - -msgid "Fire" -msgstr "Foc" - -msgid "Fire Particle Color" -msgstr "Color de les partícules del foc" - -msgid "Fire Particle Life" -msgstr "Vida de les partícules del foc" - -msgid "Fire Particle Size" -msgstr "Mida de les partícules del foc" - -msgid "Fire Particle Slowdown" -msgstr "Alentiment de les partícules del foc" - -msgid "Fire Smoke" -msgstr "Fum" - -msgid "Fire constant speed" -msgstr "Velocitat constant del foc" - -msgid "Fire direction" -msgstr "Direcció del foc" - -msgid "Fire direction." -msgstr "Direcció del foc." - -msgid "Fire particle color." -msgstr "Color de les partícules del foc." - -msgid "Fire particle life." -msgstr "Vida de les partícules del foc." - -msgid "Fire particle size." -msgstr "Mida de les partícules del foc." - -msgid "Fire particle slowdown." -msgstr "Alentiment de les partícules del foc." - -msgid "Fire smoke." -msgstr "Fum." - msgid "Fixed window interior during the Rollup animation." msgstr "" -msgid "Fly to TaskBar on Minimize" -msgstr "Vola a la varra de tasques al Minimitzar" - msgid "Focus Animation" msgstr "" msgid "Focus Effect" msgstr "" -msgid "Fold" -msgstr "Plec" - -msgid "Fold Direction" -msgstr "Direcció del plec" - -msgid "Fold opening direction for pieces in Razr effect." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "Glide 1" @@ -378,17 +262,11 @@ msgid "Glide 2" msgstr "Deslliçament 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Tenir colors aleatoris per l'efecte de foc, també conegut com Foc Místic." - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Plecs horitzontals" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Amplitud dels plecs horitzontals" msgid "How spring-like the Sidekick animation should be." @@ -397,24 +275,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "" -msgid "In" -msgstr "Dins" - -msgid "In-out" -msgstr "Dins-fora" - -msgid "Leaf Spread" -msgstr "" - -msgid "Left" -msgstr "Esquerra" - -msgid "Left-right" -msgstr "Esquerra-dreta" - -msgid "Length of airplane's flying path." -msgstr "Longitud del camí de vol de l'avió." - msgid "Magic Lamp" msgstr "Llàntia màgica" @@ -436,10 +296,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Punt final d'obertura/tancament de la llàntia màgica" -msgid "Make fire effect duration be dependent on window height." -msgstr "" -"Fer que la duració de l'efecte de foc depengui de l'alçada de la finestra." - msgid "Minimize Animation" msgstr "Animació de minimitzar" @@ -449,21 +305,12 @@ msgid "Minimize/Unminimize Only" msgstr "Només minimitza/desminimitza" -msgid "Movement direction(s) for window pieces." -msgstr "Direccions del moviment de les peces de les finestres." - msgid "None" msgstr "Cap" -msgid "Number Of Fire Particles" -msgstr "Nombre de partícules del foc" - msgid "Number of Horizontal Folds" msgstr "Nombre de plecs horitzontals" -msgid "Number of fire particles." -msgstr "Nombre de partícules de foc." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -495,15 +342,13 @@ msgid "Options" msgstr "Opcions" -msgid "Out" -msgstr "Fora" - msgid "Pool" msgstr "Conjunt" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Conjunt d'efectes d'entre els quals s'escollirà si s'activa l'efecte " "Aleatòri. Clica reiniciar per restaurar la llista." @@ -517,36 +362,15 @@ msgid "Random Effects" msgstr "Efectes aleatoris" -msgid "Randomly Colored Fire" -msgstr "Foc colorejat aleatòriament" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" -msgid "Razr" -msgstr "" - -msgid "Razr Fold Opening Direction" -msgstr "" - -msgid "Rectangular" -msgstr "Rectangular" - -msgid "Right" -msgstr "Dreta" - msgid "Roll Up" msgstr "" msgid "Rollup Fixed Interior" msgstr "" -msgid "Rotation Angle" -msgstr "Angle de rotació" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Angle de rotació per les peces de la finestra (en graus)." - msgid "Shade Animation" msgstr "Animació d'ombrejar" @@ -562,15 +386,6 @@ msgid "Sidekick Springiness" msgstr "" -msgid "Skewer" -msgstr "" - -msgid "Skewer Direction" -msgstr "" - -msgid "Spacing between beams." -msgstr "" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -584,15 +399,6 @@ "Amplada d'inici de l'efecte d'obrir i amplada final de l'efecte de tancar " "per a l'Aspirador." -msgid "Tessellation Type" -msgstr "" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -msgid "Tessellation type for window pieces." -msgstr "" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -600,22 +406,6 @@ "La quantitat de temps en milisegons entres cada renderitzat de l'animació. " "Els moviments seran més bruscos quan més alt sigui el nombre." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The animation effect shown when closing a window." msgstr "L'efecte d'animació mostrat quan es tanca una finestra." @@ -631,18 +421,6 @@ msgid "The animation effect shown when shading a window." msgstr "L'efecte d'animació que es mostra quan s'ombreja una finestra." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"La finestra que explota serà trencada a miques al llarg d'una reixa. " -"Especifica el nombre de cel·les al llarg de l'alçada de la finestra." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "L'amplada màxima (mida de les ones) que tindrà la Llàntia Màgica." @@ -656,36 +434,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" - msgid "The width of the wave relative to the window height." msgstr "" msgid "The windows that will be animated." msgstr "Les finestres que tindran un efecte d'animació." -msgid "Thickness" -msgstr "Gruix" - -msgid "Thickness of Animated Polygons" -msgstr "Gruix dels polígons animats" - -msgid "Thickness of Exploding Polygons" -msgstr "Gruix dels polígons que exploten" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Gruix de les peces de la finestra (en píxels)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Gruix de les peces de la finestra que exploten (en píxels)." - -msgid "Up" -msgstr "Amunt" - -msgid "Up-down" -msgstr "Amunt-avall" - msgid "Use various animations as window effects" msgstr "Usa diverses animacions com efectes de finestra" @@ -716,17 +470,17 @@ msgid "Wave" msgstr "Ona" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Amplitut de l'ona" msgid "Wave Width" msgstr "Amplada de l'ona" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"La finestra ha de volar a la barra de tasques quan es minimitza amb l'efecte " -"de l'Avió." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -760,26 +514,12 @@ "La finestra ha de volar a la barra de tasques quan es minimitza amb l'efecte " "de Plecs Horitzontals." -msgid "Window Grid Height" -msgstr "Alçada de la reixa de la finestra" - -msgid "Window Grid Width" -msgstr "Amplada de la reixa de la finestra" - -msgid "Window folding direction." -msgstr "Direcció de plegament de la finestra." - msgid "Window that should animate with this effect when focused." msgstr "" msgid "Window that should animate with this effect when shaded." msgstr "" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" - msgid "Zoom" msgstr "Zoom" @@ -894,83 +634,12 @@ msgstr "Posició de les Y" #, fuzzy -msgid "Brightness Decrease" -msgstr "Brillantor" - -#, fuzzy -msgid "Brightness Increase" -msgstr "Brillantor" - -#, fuzzy -msgid "Brightness Step" -msgstr "Brillantor" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "Brillantor de les finestres quan s'esvaeixen" - -msgid "Brightness and Saturation adjustments" -msgstr "" - -#, fuzzy -msgid "Brightness settings" -msgstr "Brillantor de les finestres seleccionades" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Brillantor de les finestres quan s'esvaeixen" - -#, fuzzy -msgid "Brightness window values" -msgstr "Brillantor de les finestres quan s'esvaeixen" - -#, fuzzy -msgid "Brightness windows" -msgstr "Brillantor de les finestres quan s'esvaeixen" +msgid "Bicubic filter" +msgstr "Intercambia el filtre" -msgid "General" +msgid "Bicubic texture filtering" msgstr "" -#, fuzzy -msgid "Saturation Decrease" -msgstr "Saturació" - -#, fuzzy -msgid "Saturation Increase" -msgstr "Saturació" - -#, fuzzy -msgid "Saturation Step" -msgstr "Saturació" - -#, fuzzy -msgid "Saturation settings" -msgstr "Saturació de les finestres seleccionades" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "Saturació de les finestres quan s'esvaeixen" - -#, fuzzy -msgid "Saturation window values" -msgstr "Saturació de les finestres quan s'esvaeixen" - -#, fuzzy -msgid "Saturation windows" -msgstr "Saturació de les finestres quan s'esvaeixen" - -#, fuzzy -msgid "Window specific" -msgstr "Opacitat de la finestra" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "Finestres que s'haurien de dimensionar per defecte" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "Finestres que s'haurien de dimensionar per defecte" - msgid "Color filter" msgstr "Filtre del color" @@ -1063,6 +732,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Línia de comandes del gestor de finestres. NO ESCRIGUIS COMPIZ AQUÍ!!!" +msgid "Above" +msgstr "Per damunt" + msgid "Adjust bottom face image to rotation" msgstr "Ajusta la imatge de la cara inferior a la rotació" @@ -1084,6 +756,19 @@ msgid "Appearance" msgstr "Aparença" +#, fuzzy +msgid "Aspect ratio" +msgstr "Relació d'aspecte" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Zoom automàtic" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zoom automàtic només quan girem amb el ratolí" + msgid "Behaviour" msgstr "Comportament" @@ -1111,18 +796,61 @@ msgid "Color of bottom face of the cube" msgstr "Color de la cara inferior del cub" +msgid "Color of the ground (far)." +msgstr "Color del terra (lluny)." + +msgid "Color of the ground (near)." +msgstr "Color del terra (a prop)." + msgid "Color of top face of the cube" msgstr "Color de la cara superior del cub" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Reflexió del cub Compiz" + msgid "Cube Bottom Color" msgstr "Color inferior del cub" -msgid "Cube Caps" -msgstr "Tapes del cub" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Fitxer d'imatge de reflexió" msgid "Cube Top Color" msgstr "Color superior del cub" +#, fuzzy +msgid "Cube caps" +msgstr "Tapes del cub" + +msgid "Cylinder" +msgstr "" + +#, fuzzy +msgid "Deform caps" +msgstr "Duració" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Zoom automàtic només quan girem amb el ratolí" + +#, fuzzy +msgid "Deformation" +msgstr "Duració" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "Duració" + +msgid "Distance" +msgstr "Distància" + msgid "Draw bottom face" msgstr "Dibuixa la cara inferior" @@ -1135,12 +863,38 @@ msgid "Draw top face of the cube" msgstr "Dibuixa la cara superior del cub" +#, fuzzy +msgid "Enabled" +msgstr "Activa" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Reflexió del cub Compiz" + msgid "Go back to previous image for bottom face of the cube" msgstr "Torna a la imatge anterior per la cara inferior del cub" msgid "Go back to previous image for top face of the cube" msgstr "Torna a la imatge anterior per la cara superior del cub" +msgid "Ground color(far)" +msgstr "Color del terra(lluny)" + +msgid "Ground color(near)" +msgstr "Color del terra(a prop)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensitat" + +msgid "Jumpy" +msgstr "" + +msgid "Jumpy reflection" +msgstr "" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1150,6 +904,22 @@ msgstr "" "Llista d'arxius PNG i SVG que s'han de renderitzar a la tapa superior del cub" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Relació d'aspecte del mode expo" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Ajusta la imatge de la cara inferior a la rotació" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Relació d'aspecte del mode expo" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Ajusta la imatge superior a la rotació" + msgid "Next bottom image" msgstr "Següent imatge inferior" @@ -1162,8 +932,23 @@ msgid "Prev top image" msgstr "Imatge superior prèvia." -msgid "Render images on top and bottom of the cube" -msgstr "Renderitza imatges en les cares superior i inferior del cub" +msgid "Reflection" +msgstr "Reflexió" + +msgid "Reflection ground size" +msgstr "Mida del terra en la reflexió" + +msgid "Reflection ground size." +msgstr "Mida del terra en la reflexió." + +msgid "Reflection intensity" +msgstr "Intensitat de la reflexió" + +msgid "Reflection mode" +msgstr "Mode de reflexió" + +msgid "Reflection mode." +msgstr "Mode de reflexió." msgid "Scale bottom image" msgstr "Escala la imatge inferior" @@ -1177,69 +962,36 @@ msgid "Scale top image" msgstr "Escala la imatge superior" +#, fuzzy +msgid "Sphere" +msgstr "Velocitat" + msgid "Top image files" msgstr "Arxius de les imatges superiors" -msgid "Above" -msgstr "Per damunt" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Zoom automàtic" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Allunya automàticament només quan girem amb el ratolí." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zoom automàtic només quan girem amb el ratolí" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Allunya automàticament per encavir el cub a la pantalla." -msgid "Color of the ground (far)." -msgstr "Color del terra (lluny)." +#, fuzzy +msgid "Cube Caps" +msgstr "Tapes del cub" -msgid "Color of the ground (near)." -msgstr "Color del terra (a prop)." +msgid "Render images on top and bottom of the cube" +msgstr "Renderitza imatges en les cares superior i inferior del cub" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Reflexió del cub Compiz" +msgstr "Reflexió del Cub" msgid "Cube Reflection" msgstr "Reflexió del Cub" -msgid "Distance" -msgstr "Distància" - -msgid "Ground color(far)" -msgstr "Color del terra(lluny)" - -msgid "Ground color(near)" -msgstr "Color del terra(a prop)" - -msgid "Intensity" -msgstr "Intensitat" - -msgid "Jumpy" -msgstr "" - -msgid "Jumpy reflection" -msgstr "" - -msgid "Reflection ground size" -msgstr "Mida del terra en la reflexió" - -msgid "Reflection ground size." -msgstr "Mida del terra en la reflexió." - -msgid "Reflection intensity" -msgstr "Intensitat de la reflexió" - -msgid "Reflection mode" -msgstr "Mode de reflexió" - -msgid "Reflection mode." -msgstr "Mode de reflexió." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Allunya automàticament només quan girem amb el ratolí." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Allunya automàticament per encavir el cub a la pantalla." - msgid "Animation used when switching to expo mode" msgstr "Animació que s'usa quan es canvia al mode expo" @@ -1263,10 +1015,6 @@ msgstr "" #, fuzzy -msgid "Deformation" -msgstr "Duració" - -#, fuzzy msgid "Deformation of the expo wall" msgstr "Distància de la paret expo" @@ -1358,9 +1106,6 @@ msgid "Previous viewport" msgstr "Vista anterior" -msgid "Reflection" -msgstr "Reflexió" - msgid "Reflection Scale" msgstr "Escala de reflexió" @@ -1464,6 +1209,10 @@ msgid "Center the mouse" msgstr "Centre el ratolí" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Escala el punter del ratolí" + msgid "Enable focus tracking" msgstr "Activa el seguiment del focus" @@ -1524,18 +1273,14 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Factor d'escalat mínim" #, fuzzy msgid "Mouse Behaviour" msgstr "Comportament del Ratolí" -msgid "Mouse Poll Interval" -msgstr "Interval de sondeig del ratolí" - msgid "Mouse Restrain Margin" msgstr "Marge de restricció del ratolí" @@ -1618,12 +1363,21 @@ msgid "Speed" msgstr "Velocitat" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Escala el punter del ratolí" + msgid "Sync Mouse" msgstr "Sincronitza el ratolí" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "La mida del marge a afegir quan volem restringir el ratolí." @@ -1639,10 +1393,24 @@ msgid "Use linear filter when zoomed in" msgstr "" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "Moviment de zoom" +#, fuzzy +msgid "Zoom Box" +msgstr "Zoom" + msgid "Zoom In" msgstr "Apropar" @@ -1671,6 +1439,9 @@ msgid "Zoom factor" msgstr "Factor de zoom" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Apropa/allunya segons aquest factor. Un valor gran provoca un zoom més ràpid." @@ -1725,20 +1496,55 @@ msgid "Toggle window fake ARGB." msgstr "" +#, fuzzy +msgid "Add Particle" +msgstr "Vida de les partícules del foc" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Brillantor del fons" -msgid "Background brightness during paint" -msgstr "Brillantor del fons mentres es pinta" +msgid "Background brightness during paint" +msgstr "Brillantor del fons mentres es pinta" + +msgid "Clear" +msgstr "" + +msgid "Clear (button)" +msgstr "Neteja (botó)" + +msgid "Clear (key)" +msgstr "Neteja (tecla)" + +msgid "Fire Particle Color" +msgstr "Color de les partícules del foc" + +msgid "Fire Particle Life" +msgstr "Vida de les partícules del foc" + +msgid "Fire Particle Size" +msgstr "Mida de les partícules del foc" + +msgid "Fire Particle Slowdown" +msgstr "Alentiment de les partícules del foc" + +msgid "Fire particle color." +msgstr "Color de les partícules del foc." -msgid "Clear" -msgstr "" +msgid "Fire particle life." +msgstr "Vida de les partícules del foc." -msgid "Clear (button)" -msgstr "Neteja (botó)" +msgid "Fire particle size." +msgstr "Mida de les partícules del foc." -msgid "Clear (key)" -msgstr "Neteja (tecla)" +msgid "Fire particle slowdown." +msgstr "Alentiment de les partícules del foc." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Tenir colors aleatoris per l'efecte de foc, també conegut com Foc Místic." msgid "Initiate (button)" msgstr "Inicia (botó)" @@ -1761,6 +1567,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Dibuixa foc o d'altres partícules a la pantalla" +msgid "Randomly Colored Fire" +msgstr "Foc colorejat aleatòriament" + msgid "Cube Gears" msgstr "" @@ -1852,6 +1661,9 @@ msgid "Font Size" msgstr "" +msgid "General" +msgstr "" + msgid "Glass" msgstr "" @@ -2456,9 +2268,17 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "Interval de sondeig del ratolí" + #, fuzzy msgid "Mouse position polling" msgstr "Moviment amb el ratolí" @@ -3168,8 +2988,13 @@ msgid "Background color of the window title" msgstr "Color de fons del títol de la finestra" -msgid "Close Windows In Scale" -msgstr "Tanca finestres en escalat" +#, fuzzy +msgid "Close Window" +msgstr "Mosaic" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Tanca finestres mentres estem en el mode d'escalat" msgid "Close windows while in scale mode" msgstr "Tanca finestres mentres estem en el mode d'escalat" @@ -3177,9 +3002,18 @@ msgid "Color used for highlighting the hovered window" msgstr "" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Dibuixa la finestra realçada" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Color de la lletra del títol de la finestra" @@ -3196,6 +3030,10 @@ msgid "Highlights the hovered window with the given color" msgstr "" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + #, fuzzy msgid "No display" msgstr "Mostra el títol de la finestra" @@ -3206,6 +3044,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organic - EXPERIMENTAL" +#, fuzzy +msgid "Pull Window" +msgstr "Posa finestra" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Tanca finestres mentres estem en el mode d'escalat" + msgid "Scale Addons" msgstr "Afegits d'escalat" @@ -3230,6 +3076,10 @@ msgid "Window Layout Mode" msgstr "Mode de col·locació de la finestra" +#, fuzzy +msgid "Window Pull" +msgstr "Títol de la finestra" + msgid "Window Title" msgstr "Títol de la finestra" @@ -3241,10 +3091,12 @@ msgid "Window title display in scale mode" msgstr "Mostra el títol de la finestra el el mode d'escalat" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "Zoom finestres en escalat" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "Fes zoom a les finestres en mode escalat" msgid "Filter Case Insensitive" @@ -3505,18 +3357,30 @@ msgid "Direction of window movement" msgstr "" +msgid "Down" +msgstr "Avall" + +msgid "Left" +msgstr "Esquerra" + msgid "Left/Right" msgstr "" msgid "Movement Direction" msgstr "" +msgid "Right" +msgstr "Dreta" + msgid "Show desktop" msgstr "" msgid "To Corners" msgstr "" +msgid "Up" +msgstr "Amunt" + msgid "Up/Down" msgstr "" @@ -3747,119 +3611,375 @@ msgid "Number Of Snowflakes" msgstr "Nombre de flocs de neu" -msgid "Number of snowflakes" -msgstr "Nombre de flocs de neu" +msgid "Number of snowflakes" +msgstr "Nombre de flocs de neu" + +msgid "Right to Left" +msgstr "De dreta a esquerra" + +msgid "Rotate Flakes" +msgstr "Rota els flocs" + +msgid "Screen Boxing" +msgstr "" + +msgid "Screen Depth" +msgstr "Profunditat de Pantalla" + +msgid "Select snow flake movement direction" +msgstr "Selecciona la direcció del moviment dels flocs de neu" + +msgid "Settings" +msgstr "Configuració" + +msgid "Size Of Snowflakes" +msgstr "Mida dels flocs de neu" + +msgid "Size of snowflakes" +msgstr "Mida dels flocs de neu" + +msgid "Snow" +msgstr "Neu" + +msgid "Snow Direction" +msgstr "Direcció de la Neu" + +msgid "Snow Over Windows" +msgstr "Neu sobre les finestres" + +msgid "Snow Speed" +msgstr "Velocitat de la neu" + +msgid "Snow Textures" +msgstr "Textures de neu" + +msgid "Snow Toggle" +msgstr "Activa/desactiva la neu" + +msgid "Snow for Compiz" +msgstr "Neu per al Compiz" + +msgid "Snow is drawn above windows" +msgstr "La neu es dibuixa per damunt les finestres" + +msgid "Snow textures" +msgstr "Textures de neu" + +msgid "Snow toggle key" +msgstr "Tecla per activar/desactivar la neu" + +msgid "Speed of falling snow" +msgstr "Velocitat dels flocs" + +msgid "Textures" +msgstr "Textures" + +msgid "Top to Bottom" +msgstr "De dalt a baix" + +msgid "Update Delay" +msgstr "Retard d'actualització" + +msgid "A simple splash plugin" +msgstr "Un connector de pantalla de presentació" + +msgid "Background File" +msgstr "Fitxer de fons" + +msgid "Background brightness." +msgstr "Brillantor de fons" + +msgid "Background image File." +msgstr "Fitxer d'imatge de fons" + +msgid "Background saturation." +msgstr "Saturació del fons" + +msgid "Display In/Out Time." +msgstr "" + +msgid "Display Time" +msgstr "Mostra el temps" + +msgid "Images" +msgstr "Imatges" + +msgid "Initiate Splash" +msgstr "Inicia la pantalla de presentació" + +msgid "Logo File" +msgstr "Fitxer de logo" + +msgid "Logo image File." +msgstr "Fitxer de la imatge del logo." + +msgid "Show on first start" +msgstr "Mostra a l'inici" + +msgid "Show splash on first start." +msgstr "Mostra la presentació a l'inici." + +msgid "Splash" +msgstr "Presentació" + +msgid "Start Splash." +msgstr "Comença la presentació" + +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" + +#, fuzzy +msgid "Behavior" +msgstr "Comportament" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Enfosqueix el fons quan mostra l'anell" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Amplada de la miniatura" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Saturació de les finestres quan s'esvaeixen" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Dibuixa el títol de la finestra en negreta." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Amplada de finestra" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Color 1 del degradat de fons." + +#, fuzzy +msgid "Windows" +msgstr "Finestres 3D" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Finestres que es mostraran en l'anell" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Brillantor del fons mentres es pinta" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "No mostra l'aplicació en el paginador" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Posa a la vista" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "Posa al centre" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Color de la línia del rectangle de selecció" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" +"Genera mipmaps quan sigui possible per una millor qualitat de l'escalat." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Color de realçat" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Color de realçat" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Color de realçat" + +#, fuzzy +msgid "Icon" +msgstr "Dins" -msgid "Right to Left" -msgstr "De dreta a esquerra" +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Realçat de finestra" -msgid "Rotate Flakes" -msgstr "Rota els flocs" +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" -msgid "Screen Boxing" +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Mostra el títol de la finestra seleccionada." + +msgid "Next Panel" msgstr "" -msgid "Screen Depth" -msgstr "Profunditat de Pantalla" +#, fuzzy +msgid "Next window" +msgstr "Finestra següent" -msgid "Select snow flake movement direction" -msgstr "Selecciona la direcció del moviment dels flocs de neu" +#, fuzzy +msgid "Next window (All windows)" +msgstr "Finestra següent (tots els espais de treball)" -msgid "Settings" -msgstr "Configuració" +#, fuzzy +msgid "Next window (Group)" +msgstr "Finestra següent (grup)" -msgid "Size Of Snowflakes" -msgstr "Mida dels flocs de neu" +#, fuzzy +msgid "Next window (No popup)" +msgstr "Finestra següent (grup)" -msgid "Size of snowflakes" -msgstr "Mida dels flocs de neu" +msgid "Original Window Position" +msgstr "" -msgid "Snow" -msgstr "Neu" +#, fuzzy +msgid "Popup Window Delay" +msgstr "Agrupa finestres" -msgid "Snow Direction" -msgstr "Direcció de la Neu" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "" +"Mostra el commutador si no és visible i selecciona la següent finestra." -msgid "Snow Over Windows" -msgstr "Neu sobre les finestres" +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Mostra el commutador si no és visible i selecciona la finestra següent de " +"l'aplicació actual." -msgid "Snow Speed" -msgstr "Velocitat de la neu" +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Mostra el commutador si no és visible i selecciona la següent finestra " +"d'entre totes les finestres." -msgid "Snow Textures" -msgstr "Textures de neu" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "" +"Mostra el commutador si no és visible i selecciona la finestra anterior." -msgid "Snow Toggle" -msgstr "Activa/desactiva la neu" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Mostra el commutador si no és visible i selecciona la finestra anterior de " +"l'aplicació actual." -msgid "Snow for Compiz" -msgstr "Neu per al Compiz" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Mostra el commutador si no és visible i selecciona la finestra anterior " +"d'entre totes les finestres." -msgid "Snow is drawn above windows" -msgstr "La neu es dibuixa per damunt les finestres" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Textures de neu" +#, fuzzy +msgid "Prev window" +msgstr "Finestra prèvia" -msgid "Snow toggle key" -msgstr "Tecla per activar/desactivar la neu" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Finestra prèvia (tots els espais de treball)" -msgid "Speed of falling snow" -msgstr "Velocitat dels flocs" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Finestra prèvia (grup)" -msgid "Textures" -msgstr "Textures" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Finestra prèvia (grup)" -msgid "Top to Bottom" -msgstr "De dalt a baix" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Retard d'actualització" +#, fuzzy +msgid "Select next panel type window." +msgstr "Selecciona on posar el títol de la finestra." -msgid "A simple splash plugin" -msgstr "Un connector de pantalla de presentació" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Fitxer de fons" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Selecciona on posar el títol de la finestra." -msgid "Background brightness." -msgstr "Brillantor de fons" +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Fitxer d'imatge de fons" +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Realçat de finestra" -msgid "Background saturation." -msgstr "Saturació del fons" +#, fuzzy +msgid "Show Rectangle" +msgstr "Rectangular" -msgid "Display In/Out Time." -msgstr "" +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Mostra el títol de la finestra en la miniatura." -msgid "Display Time" -msgstr "Mostra el temps" +msgid "Show minimized windows" +msgstr "Mostra finestres minimitzades" -msgid "Images" -msgstr "Imatges" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Inicia la pantalla de presentació" +msgid "Switcher speed" +msgstr "" -msgid "Logo File" -msgstr "Fitxer de logo" +#, fuzzy +msgid "Switcher timestep" +msgstr "Intercambia el filtre" -msgid "Logo image File." -msgstr "Fitxer de la imatge del logo." +#, fuzzy +msgid "Switcher windows" +msgstr "Finestres filtrades" -msgid "Show on first start" -msgstr "Mostra a l'inici" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Barra de tasques" -msgid "Show splash on first start." -msgstr "Mostra la presentació a l'inici." +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Presentació" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Comença la presentació" +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Finestres que es mostraran en l'anell" msgid "Render text to texture" msgstr "Renderitza el text a una textura" @@ -4521,10 +4641,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "Posa al centre" - -#, fuzzy msgid "Color 1" msgstr "Colors" @@ -4671,6 +4787,14 @@ msgid "Matches" msgstr "" +#, fuzzy +msgid "Maximized" +msgstr "Mostra minimitzat" + +#, fuzzy +msgid "Maximized windows" +msgstr "Finestres no maximitzables" + msgid "No ARGB visuals" msgstr "" @@ -4750,6 +4874,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Ajusta el menú del firefox" @@ -4794,6 +4921,9 @@ "Fer apegaloses les finestres que estan \"a tots els escriptoris\". Les " "finestres apegaloses són visibles a totes les vistes." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "Fer que les aplicacions antigues i Wine puguin anar a pantalla complerta " @@ -4821,6 +4951,213 @@ msgid "Workarounds" msgstr "" +#~ msgid "Airplane" +#~ msgstr "Aviò" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Longitud del camí de vol de l'avió" + +#~ msgid "Automatic" +#~ msgstr "Automàtic" + +#~ msgid "Burn" +#~ msgstr "Flames" + +#~ msgid "Domino" +#~ msgstr "Dòmino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Direcció de caiguda de les peces del dòmino" + +#~ msgid "Explode" +#~ msgstr "Explota" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Direcció de caiguda per les peces del dòmino." + +#~ msgid "Fire" +#~ msgstr "Foc" + +#~ msgid "Fire Smoke" +#~ msgstr "Fum" + +#~ msgid "Fire constant speed" +#~ msgstr "Velocitat constant del foc" + +#~ msgid "Fire direction" +#~ msgstr "Direcció del foc" + +#~ msgid "Fire direction." +#~ msgstr "Direcció del foc." + +#~ msgid "Fire smoke." +#~ msgstr "Fum." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Vola a la varra de tasques al Minimitzar" + +#~ msgid "Fold" +#~ msgstr "Plec" + +#~ msgid "Fold Direction" +#~ msgstr "Direcció del plec" + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "Dins" + +#~ msgid "In-out" +#~ msgstr "Dins-fora" + +#~ msgid "Left-right" +#~ msgstr "Esquerra-dreta" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Longitud del camí de vol de l'avió." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "" +#~ "Fer que la duració de l'efecte de foc depengui de l'alçada de la finestra." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Direccions del moviment de les peces de les finestres." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Nombre de partícules del foc" + +#~ msgid "Number of fire particles." +#~ msgstr "Nombre de partícules de foc." + +#~ msgid "Out" +#~ msgstr "Fora" + +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#~ msgid "Rotation Angle" +#~ msgstr "Angle de rotació" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Angle de rotació per les peces de la finestra (en graus)." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "La finestra que explota serà trencada a miques al llarg d'una reixa. " +#~ "Especifica el nombre de cel·les al llarg de l'alçada de la finestra." + +#~ msgid "Thickness" +#~ msgstr "Gruix" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Gruix dels polígons animats" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Gruix dels polígons que exploten" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Gruix de les peces de la finestra (en píxels)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Gruix de les peces de la finestra que exploten (en píxels)." + +#~ msgid "Up-down" +#~ msgstr "Amunt-avall" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "La finestra ha de volar a la barra de tasques quan es minimitza amb " +#~ "l'efecte de l'Avió." + +#~ msgid "Window Grid Height" +#~ msgstr "Alçada de la reixa de la finestra" + +#~ msgid "Window Grid Width" +#~ msgstr "Amplada de la reixa de la finestra" + +#~ msgid "Window folding direction." +#~ msgstr "Direcció de plegament de la finestra." + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "Brillantor" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "Brillantor" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "Brillantor" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "Brillantor de les finestres quan s'esvaeixen" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "Brillantor de les finestres seleccionades" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "Brillantor de les finestres quan s'esvaeixen" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "Brillantor de les finestres quan s'esvaeixen" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "Brillantor de les finestres quan s'esvaeixen" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "Saturació" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "Saturació" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "Saturació" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "Saturació de les finestres seleccionades" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "Saturació de les finestres quan s'esvaeixen" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "Saturació de les finestres quan s'esvaeixen" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "Saturació de les finestres quan s'esvaeixen" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Opacitat de la finestra" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Finestres que s'haurien de dimensionar per defecte" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Finestres que s'haurien de dimensionar per defecte" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Tanca finestres en escalat" + #~ msgid "Animation Speed" #~ msgstr "Velocitat d'animació" @@ -4850,9 +5187,6 @@ #~ msgid "Misc. options" #~ msgstr "Altres opcions" -#~ msgid "Show minimized windows" -#~ msgstr "Mostra finestres minimitzades" - #~ msgid "Corner Bevelling" #~ msgstr "Arrodoniment de cantons" @@ -4879,6 +5213,3 @@ #~ msgstr "" #~ "Això crearà mipmaps que millorarà l'aparença general de la textura, i " #~ "reduirà els cantons escapçats." - -#~ msgid "Window width" -#~ msgstr "Amplada de finestra" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/cs.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/cs.po --- compiz-fusion-plugins-unsupported-0.7.6/po/cs.po 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/cs.po 2008-09-17 14:29:32.000000000 +0100 @@ -0,0 +1,4837 @@ +# Compiz Fusion plugins translation. +# Copyright (C) compiz-fusion.org +# This file is distributed under the same license as the compiz-fusion-plugins package. +# Tomas Hejatko . +# +msgid "" +msgstr "" +"Project-Id-Version: compiz-fusion-plugins\n" +"Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" +"POT-Creation-Date: 2008-09-15 14:45+0530\n" +"PO-Revision-Date: 2008-02-11 17:32+0100\n" +"Last-Translator: Tomas Hejatko \n" +"Language-Team: Tomas Hejatko \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.0.2\n" + +msgid "3D Only On Mouse Rotate" +msgstr "3D pouze pi oten my" + +msgid "3D Windows" +msgstr "3D okna" + +msgid "Bevel Bottom Left" +msgstr "" + +msgid "Bevel Bottom Right" +msgstr "" + +msgid "Bevel Corners" +msgstr "" + +msgid "Bevel Top Left" +msgstr "" + +msgid "Bevel Top Right" +msgstr "" + +msgid "Bevel bottom left corner" +msgstr "" + +msgid "Bevel bottom right corner" +msgstr "" + +msgid "Bevel top left corner" +msgstr "" + +msgid "Bevel top right corner" +msgstr "" + +msgid "" +"Change the amount of space between the windows (in percent of the cube size)." +msgstr "Zmnit velikost mezery mezi okny (v procentech velikosti kostky)" + +msgid "Color of an inactive window's depth" +msgstr "" + +msgid "Color of the active window's depth" +msgstr "" + +msgid "Elevates windows while rotating the cube" +msgstr "" + +msgid "" +"Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " +"cube via the mouse)" +msgstr "" + +msgid "Minimum Cube Size" +msgstr "Minimln velikost kostky" + +msgid "Minimum cube size (in percent)." +msgstr "Minimln velikost kostky (v procentech)" + +msgid "Misc. Options" +msgstr "Dal monosti" + +#, fuzzy +msgid "Roundoff corners for consistency with rounded decorations" +msgstr "Zakulatit rohy kvli splinut s kulatmi dekoracemi oken" + +msgid "Window Color (Active)" +msgstr "" + +msgid "Window Color (Inactive)" +msgstr "" + +msgid "Window Depth" +msgstr "" + +msgid "Window Match" +msgstr "" + +msgid "Window Space" +msgstr "" + +msgid "Window depth" +msgstr "" + +msgid "Windows that should be handled by 3D" +msgstr "" + +msgid "ADD Helper" +msgstr "" + +msgid "Bindings" +msgstr "" + +msgid "Brightness" +msgstr "Jas" + +msgid "Brightness of faded windows" +msgstr "Jas ztmavench oken" + +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + +msgid "" +"Make it slightly easier to concentrate by dimming all but the active window." +msgstr "Mrn uleh koncentraci ztmavenm vech oken krom aktivnho." + +msgid "Opacity" +msgstr "Ztmaven" + +#, fuzzy +msgid "Opacity of faded windows" +msgstr "Mra ztmaven oken v pozad" + +msgid "Saturation" +msgstr "Sytost" + +msgid "Saturation of faded windows" +msgstr "Sytost oken v pozad" + +msgid "Toggle AddHelper" +msgstr "Zapnout AddHelper" + +msgid "Use this to enable/disable AddHelper on the fly." +msgstr "Pouijte toto pro zapnut/vypnut AddHelperu za bhu" + +msgid "Window Types" +msgstr "Typy Oken" + +msgid "Window types that should be Opacified." +msgstr "Typy oken, kter mohou bt ztmaveny." + +msgid "" +"All effects are chosen randomly, ignoring the selected effect. If None is " +"selected for an event, that event won't be animated." +msgstr "" + +msgid "Angle of window at the end of the animation." +msgstr "" + +msgid "Animation Selection" +msgstr "Vbr animace" + +msgid "Animation Time Step" +msgstr "" + +msgid "Animation duration in milliseconds for close effect." +msgstr "" + +msgid "Animation duration in milliseconds for focus effect." +msgstr "" + +msgid "Animation duration in milliseconds for minimize effect." +msgstr "" + +msgid "Animation duration in milliseconds for open effect." +msgstr "" + +msgid "Animation duration in milliseconds for shade effect." +msgstr "" + +msgid "Animations" +msgstr "Animace" + +msgid "Away Angle" +msgstr "" + +msgid "Away Position" +msgstr "" + +# hmm ? +#, fuzzy +msgid "Close Animation" +msgstr "Animace zavrn" + +#, fuzzy +msgid "Close Effect" +msgstr "Efekt zavrn" + +msgid "" +"Closeness of window to camera at the end of the animation (1.0: Close to " +"camera, -2.0: Away from camera)." +msgstr "" +"Blzkost okna k pohledu na konci animace(1.0: Ble ke kamee, -2.0 : Dle od " +"kamery)." + +msgid "" +"Comma separated list of option value assignments to override effect " +"settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1" +msgstr "" +"Seznam hodnot pro pepsn nastaven oddlen rkou, nap. fire_color=#0080ffff, " +"fire_particles=700, fire_smoke=1" + +msgid "Curved Fold" +msgstr "Zakiven ohyb" + +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" +msgstr "Rozsah zakivenho ohybu" + +msgid "Dodge" +msgstr "" + +msgid "Dodge Gap Ratio" +msgstr "" + +msgid "Dream" +msgstr "Sen" + +msgid "Duration" +msgstr "Trvn" + +msgid "Effect Settings" +msgstr "Nastaven efektu" + +msgid "Fade" +msgstr "Zmizen" + +#, fuzzy +msgid "Fixed window interior during the Rollup animation." +msgstr "Nemnn obsah okna pi animaci Sloen" + +#, fuzzy +msgid "Focus Animation" +msgstr "Animace zaosten" + +msgid "Focus Effect" +msgstr "Efekt zaosten" + +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" + +msgid "Glide 1" +msgstr "Plachtn 1" + +msgid "Glide 2" +msgstr "Plachtn 2" + +#, fuzzy +msgid "Horizontal Folds" +msgstr "Horizontln skldn" + +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "Rozsah horizontlnho skldn" + +msgid "How spring-like the Sidekick animation should be." +msgstr "" + +msgid "How spring-like the Zoom animation should be." +msgstr "" + +msgid "Magic Lamp" +msgstr "Magick lampa" + +msgid "Magic Lamp Grid Y Resolution" +msgstr "" + +msgid "Magic Lamp Max Wave Amplitude" +msgstr "" + +msgid "Magic Lamp Max Waves" +msgstr "" + +msgid "Magic Lamp Min Wave Amplitude" +msgstr "" + +msgid "Magic Lamp Open Start Width" +msgstr "" + +msgid "Magic Lamp Open/Close Moving End" +msgstr "" + +msgid "Minimize Animation" +msgstr "Animace minimalizace" + +msgid "Minimize Effect" +msgstr "Efekt minimalizace" + +msgid "Minimize/Unminimize Only" +msgstr "" + +msgid "None" +msgstr "Nic" + +msgid "Number of Horizontal Folds" +msgstr "" + +#, no-c-format +msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." +msgstr "" + +msgid "Off" +msgstr "Vypnuto" + +msgid "On" +msgstr "Zapnuto" + +msgid "On open/close, move magic lamp ending point with the mouse pointer." +msgstr "" + +msgid "On open/close, move vacuum ending point with the mouse pointer." +msgstr "" + +msgid "Open Animation" +msgstr "Animace oteven" + +msgid "Open Effect" +msgstr "Efekt oteven" + +msgid "Open/Close Only" +msgstr "Pouze Otevt/Zavt" + +msgid "Options" +msgstr "Nastaven" + +msgid "Pool" +msgstr "" + +msgid "" +"Pool of effects to be chosen from if Random effect is selected. Click reset " +"to use all effects." +msgstr "" + +msgid "Random" +msgstr "Nhodn" + +msgid "Random Animations For All Events" +msgstr "Nhodn animace pro vechny udlosti" + +msgid "Random Effects" +msgstr "Nhodn efekty" + +msgid "Ratio of gaps between dodge start times to focus duration." +msgstr "" + +msgid "Roll Up" +msgstr "" + +msgid "Rollup Fixed Interior" +msgstr "" + +msgid "Shade Animation" +msgstr "Animace stnu" + +msgid "Shade Effect" +msgstr "Efekt Stn" + +msgid "Sidekick" +msgstr "Odkopnut" + +msgid "Sidekick Number of Rotations" +msgstr "Poet rotac Odkopnut" + +msgid "Sidekick Springiness" +msgstr "Prunost Odkopnut" + +msgid "" +"Starting width of open effect and ending width of close effect for Magic " +"Lamp." +msgstr "" + +msgid "" +"Starting width of open effect and ending width of close effect for Vacuum." +msgstr "" + +msgid "" +"The amount of time in milliseconds between each render of the animation. The " +"higher the number, the jerkier the movements become." +msgstr "" + +msgid "The animation effect shown when closing a window." +msgstr "Efekt zobrazen pi zavrn okna." + +msgid "The animation effect shown when creating a window." +msgstr "Efekt zobrazen pi otevrn okna." + +msgid "The animation effect shown when focusing a window." +msgstr "" + +msgid "The animation effect shown when minimizing a window." +msgstr "Efekt zobrazen pi minimalizaci okna" + +msgid "The animation effect shown when shading a window." +msgstr "" + +msgid "The maximum amplitude (size of the waves) Magic Lamp will have." +msgstr "" + +msgid "The maximum number of waves for Magic Lamp." +msgstr "" + +msgid "The minimum amplitude (size of the waves) Magic Lamp will have." +msgstr "" + +msgid "" +"The number of horizontal folds that occur in the Horizontal Fold animation." +msgstr "" + +msgid "The width of the wave relative to the window height." +msgstr "" + +msgid "The windows that will be animated." +msgstr "Okna, kter budou animovna" + +msgid "Use various animations as window effects" +msgstr "" + +msgid "Vacuum" +msgstr "" + +msgid "Vacuum Grid Y Resolution" +msgstr "" + +msgid "Vacuum Open Start Width" +msgstr "" + +msgid "Vacuum Open/Close Moving End" +msgstr "" + +msgid "" +"Vertex grid resolution for Magic Lamp (Y dimension only). This is the number " +"of points used to define the curves. The higher the number, the smoother the " +"curves. However there will be a loss of performance (CPU usage increases)." +msgstr "" + +msgid "" +"Vertex grid resolution for Vacuum (Y dimension only). This is the number of " +"points used to define the curves. The higher the number, the smoother the " +"curves. However there will be a loss of performance (CPU usage increases)." +msgstr "" + +msgid "Wave" +msgstr "" + +msgid "Wave Amplitude Multiplier" +msgstr "" + +msgid "Wave Width" +msgstr "" + +msgid "" +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" + +msgid "" +"Whether the window should zoom to taskbar when minimized with Curved Fold " +"effect." +msgstr "" + +msgid "" +"Whether the window should zoom to taskbar when minimized with Dream effect." +msgstr "" + +msgid "" +"Whether the window should zoom to taskbar when minimized with Glide 1 effect." +msgstr "" + +msgid "" +"Whether the window should zoom to taskbar when minimized with Glide 2 effect." +msgstr "" + +msgid "" +"Whether the window should zoom to taskbar when minimized with Horizontal " +"Folds effect." +msgstr "" + +msgid "Window that should animate with this effect when focused." +msgstr "" + +msgid "Window that should animate with this effect when shaded." +msgstr "" + +msgid "Zoom" +msgstr "" + +msgid "Zoom Springiness" +msgstr "" + +msgid "Zoom from Center" +msgstr "" + +msgid "Zoom from center when playing the Sidekick animation." +msgstr "" + +msgid "Zoom from center when playing the Zoom animation." +msgstr "" + +msgid "Zoom to TaskBar on Minimize" +msgstr "" + +msgid "Colors" +msgstr "" + +msgid "Cube Atlantis" +msgstr "" + +msgid "Dolphin size" +msgstr "" + +msgid "Dolphin size." +msgstr "" + +msgid "Enable colors" +msgstr "" + +msgid "Fish size" +msgstr "" + +msgid "Number of fish" +msgstr "" + +msgid "Number of fish inside the cube" +msgstr "" + +msgid "Render some fish inside of the transparent cube" +msgstr "" + +msgid "Shark size" +msgstr "" + +msgid "Whale size" +msgstr "" + +msgid "Whale size." +msgstr "" + +msgid "A simple benchmark plugin" +msgstr "" + +msgid "Benchmark" +msgstr "" + +msgid "Console Output" +msgstr "" + +msgid "Console output update time" +msgstr "" + +msgid "Disable Compiz integrated FPS limiter" +msgstr "" + +msgid "Disable limiter" +msgstr "" + +msgid "Display FPS on screen" +msgstr "" + +msgid "Enable" +msgstr "" + +msgid "Initiate" +msgstr "" + +msgid "Main" +msgstr "" + +msgid "Print FPS to console" +msgstr "" + +msgid "Screen Output" +msgstr "" + +msgid "Start benchmark" +msgstr "" + +msgid "Update time" +msgstr "" + +msgid "X Position of benchmark window" +msgstr "" + +msgid "X position" +msgstr "" + +msgid "Y Position of benchmark window" +msgstr "" + +msgid "Y position" +msgstr "" + +msgid "Bicubic filter" +msgstr "" + +msgid "Bicubic texture filtering" +msgstr "" + +msgid "Color filter" +msgstr "" + +msgid "Exclude windows" +msgstr "" + +msgid "Filter colors for accessibility purposes" +msgstr "" + +msgid "Filter window decorations" +msgstr "" + +msgid "Filtered windows" +msgstr "" + +msgid "Filters files" +msgstr "" + +msgid "" +"List of plain text filter files that should be applied when filtering " +"windows or screen." +msgstr "" + +msgid "" +"Select filter to use from filters list : either apply all filters or only " +"one specific filter (triggering this action switches filters one by one and " +"eventually comes back to the \"all filters\" mode)." +msgstr "" + +msgid "Switch filter" +msgstr "" + +msgid "Toggle filtering for currently focused window." +msgstr "" + +msgid "Toggle filtering for every window on the screen." +msgstr "" + +msgid "Toggle screen filtering" +msgstr "" + +msgid "Toggle window filtering" +msgstr "" + +msgid "" +"Window decorations (borders and titlebar) will be filtered as well as window " +"contents if enabled." +msgstr "" + +msgid "Windows to be filtered by default." +msgstr "" + +msgid "Windows to exclude from filtering." +msgstr "" + +msgid "Activate Crash Handler." +msgstr "" + +msgid "Compiz crash handler plugin" +msgstr "" + +msgid "Crash Dump Directory" +msgstr "" + +msgid "Crash handler" +msgstr "" + +msgid "Directory to dump the crash logs to." +msgstr "" + +msgid "Enable Crash Handler" +msgstr "" + +msgid "Start Other Window Manager" +msgstr "" + +msgid "Start other window manager on Crash." +msgstr "" + +msgid "Window Manager Command Line" +msgstr "" + +msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" +msgstr "" + +msgid "Above" +msgstr "" + +msgid "Adjust bottom face image to rotation" +msgstr "" + +msgid "Adjust bottom image" +msgstr "" + +msgid "Adjust top face image to rotation" +msgstr "" + +msgid "Adjust top image" +msgstr "" + +msgid "Advance to next image for bottom face of the cube" +msgstr "" + +msgid "Advance to next image for top face of the cube" +msgstr "" + +msgid "Appearance" +msgstr "" + +msgid "Aspect ratio" +msgstr "" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "" + +msgid "Behaviour" +msgstr "" + +msgid "Bottom image files" +msgstr "" + +msgid "Clamp bottom face image to border" +msgstr "" + +msgid "" +"Clamp bottom face image to border. This is often the best if your image " +"doesn't fit the size of the cube or if it's transparent. It can lead to some " +"ugly dotted lines when enabled (especially with large enough images) though." +msgstr "" + +msgid "Clamp top face image to border" +msgstr "" + +msgid "" +"Clamp top face image to border. This is often the best if your image doesn't " +"fit the size of the cube or if it's transparent. It can lead to some ugly " +"dotted lines when enabled (especially with large enough images) though." +msgstr "" + +msgid "Color of bottom face of the cube" +msgstr "" + +msgid "Color of the ground (far)." +msgstr "" + +msgid "Color of the ground (near)." +msgstr "" + +msgid "Color of top face of the cube" +msgstr "" + +msgid "Compiz cube reflection and deformation" +msgstr "" + +msgid "Cube Bottom Color" +msgstr "" + +msgid "Cube Reflection and Deformation" +msgstr "" + +msgid "Cube Top Color" +msgstr "" + +msgid "Cube caps" +msgstr "" + +msgid "Cylinder" +msgstr "" + +msgid "Deform caps" +msgstr "" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "3D pouze pi oten my" + +#, fuzzy +msgid "Deformation" +msgstr "Trvn" + +msgid "Deformation in unfold cube mode." +msgstr "" + +msgid "Deformation mode." +msgstr "" + +msgid "Distance" +msgstr "" + +msgid "Draw bottom face" +msgstr "" + +msgid "Draw bottom face of the cube" +msgstr "" + +msgid "Draw top face" +msgstr "" + +msgid "Draw top face of the cube" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Give cube a reflective ground." +msgstr "" + +msgid "Go back to previous image for bottom face of the cube" +msgstr "" + +msgid "Go back to previous image for top face of the cube" +msgstr "" + +msgid "Ground color(far)" +msgstr "" + +msgid "Ground color(near)" +msgstr "" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "" + +msgid "Jumpy" +msgstr "" + +msgid "Jumpy reflection" +msgstr "" + +msgid "" +"List of PNG and SVG files that should be rendered on bottom face of cube" +msgstr "" + +msgid "List of PNG and SVG files that should be rendered on top face of cube" +msgstr "" + +msgid "Maintain bottom aspect ratio" +msgstr "" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "" + +msgid "Maintain top aspect ratio" +msgstr "" + +msgid "Maintain top cap image aspect ratio." +msgstr "" + +msgid "Next bottom image" +msgstr "" + +msgid "Next top image" +msgstr "" + +msgid "Prev bottom image" +msgstr "" + +msgid "Prev top image" +msgstr "" + +msgid "Reflection" +msgstr "" + +msgid "Reflection ground size" +msgstr "" + +msgid "Reflection ground size." +msgstr "" + +msgid "Reflection intensity" +msgstr "" + +msgid "Reflection mode" +msgstr "" + +msgid "Reflection mode." +msgstr "" + +msgid "Scale bottom image" +msgstr "" + +msgid "Scale image to cover bottom face of cube" +msgstr "" + +msgid "Scale image to cover top face of cube" +msgstr "" + +msgid "Scale top image" +msgstr "" + +msgid "Sphere" +msgstr "" + +msgid "Top image files" +msgstr "" + +msgid "Unfold cube deformation" +msgstr "" + +msgid "Zoom out automatically only on mouse rotate." +msgstr "" + +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "" + +msgid "Cube Caps" +msgstr "" + +msgid "Render images on top and bottom of the cube" +msgstr "" + +msgid "Compiz cube reflection" +msgstr "" + +msgid "Cube Reflection" +msgstr "" + +msgid "Animation used when switching to expo mode" +msgstr "" + +msgid "Aspect Ratio" +msgstr "" + +msgid "Button binding for drag & drop of windows" +msgstr "" + +msgid "Button binding to exit expo" +msgstr "" + +msgid "Button binding to switch to next viewport in expo" +msgstr "" + +#, fuzzy +msgid "Curve" +msgstr "Zakiven ohyb" + +msgid "Curve strength" +msgstr "" + +msgid "Deformation of the expo wall" +msgstr "" + +msgid "Distance between viewports" +msgstr "" + +msgid "Distance of the expo wall" +msgstr "" + +msgid "Double click time" +msgstr "" + +msgid "Drag&drop" +msgstr "" + +msgid "Duration of the zoomout animation" +msgstr "" + +msgid "Engage wall expo mode button binding" +msgstr "" + +msgid "Engage wall expo mode edge binding" +msgstr "" + +msgid "Engage wall expo mode key binding" +msgstr "" + +msgid "Exit expo" +msgstr "" + +msgid "Expo" +msgstr "" + +msgid "Expo Animation" +msgstr "" + +msgid "Expo Plugin" +msgstr "" + +msgid "Expo button" +msgstr "" + +msgid "Expo edge" +msgstr "" + +msgid "Expo key" +msgstr "" + +msgid "Expo mode aspect ratio" +msgstr "" + +msgid "Fade + Zoom" +msgstr "" + +msgid "Generate mipmaps in expo mode" +msgstr "" + +msgid "Hide panels/docks in expo" +msgstr "" + +msgid "Hide panels/docks in expo." +msgstr "" + +msgid "Immediate moves" +msgstr "" + +msgid "Inactive viewport brightness." +msgstr "" + +msgid "Inactive viewport saturation." +msgstr "" + +msgid "Mipmaps" +msgstr "" + +msgid "Multi Output Mode" +msgstr "" + +msgid "Next viewport" +msgstr "" + +msgid "One big wall" +msgstr "" + +msgid "One wall per output" +msgstr "" + +msgid "Previous viewport" +msgstr "" + +msgid "Reflection Scale" +msgstr "" + +msgid "Scale factor of the expo wall reflection" +msgstr "" + +msgid "" +"Selects how the expo wall is displayed if multiple output devices are used." +msgstr "" + +msgid "" +"Selects if windows movements in expo mode should be immediate - this among " +"other things disables wobbliness" +msgstr "" + +msgid "Show a reflection of the viewports on the ground" +msgstr "" + +msgid "Strength of the deformation in curve mode" +msgstr "" + +msgid "Tilt" +msgstr "" + +msgid "Timeframe to execute a double click" +msgstr "" + +msgid "Viewport distance" +msgstr "" + +msgid "Vortex" +msgstr "" + +msgid "Zoom time" +msgstr "" + +msgid "Activate Demanding Attention Window" +msgstr "" + +msgid "Activate Window" +msgstr "" + +msgid "Activate a given window" +msgstr "" + +msgid "Activate next window which has the \"demands attention\" flag set." +msgstr "" + +msgid "Extra WM Actions" +msgstr "" + +msgid "Provides less commonly used WM actions" +msgstr "" + +msgid "Toggle Always-On-Top" +msgstr "" + +msgid "Toggle Fullscreen" +msgstr "" + +msgid "Toggle Redirect" +msgstr "" + +msgid "Toggle Sticky" +msgstr "" + +msgid "Toggle always on top for the active window" +msgstr "" + +msgid "Toggle window fullscreen" +msgstr "" + +msgid "Toggle window redirect" +msgstr "" + +msgid "Toggle window stickyness" +msgstr "" + +msgid "Always fit to window on focus track" +msgstr "" + +msgid "" +"Always keep the zoomed area in sync with where the mouse is, and vice versa. " +"Use this if you don't intend to draw a scaled pointer or hide the original " +"pointer. The zoomed area will move as you move your mouse." +msgstr "" + +msgid "Animation" +msgstr "" + +msgid "" +"Attempt to keep the zoomed mouse visible by warping it when it is moved " +"outside the zoom area." +msgstr "" + +msgid "Center the mouse" +msgstr "" + +msgid "Dynamic mouse pointer scale" +msgstr "" + +msgid "Enable focus tracking" +msgstr "" + +msgid "Enable this to get a gradually larger mouse pointer as you zoom in" +msgstr "" + +msgid "" +"Enable this to target the focused window when jumping to a specific zoom " +"level. Disable to target mouse." +msgstr "" + +msgid "Enhanced Zoom Desktop" +msgstr "" + +msgid "Enhanced zoom functions for the visually impaired and other users" +msgstr "" + +msgid "Filter Linear" +msgstr "" + +msgid "Fit the window to the zoom level" +msgstr "" + +msgid "" +"Fit the zoomed area to the window when the zoomed area moves as a result of " +"focus tracking." +msgstr "" + +msgid "" +"Fit the zoomed area to the window when the zoomed area moves as a result of " +"focus tracking. Even when not initially zoomed in." +msgstr "" + +msgid "Fit zoom level to window on focus change" +msgstr "" + +msgid "Fit zoomed area to window" +msgstr "" + +msgid "Fitting" +msgstr "" + +msgid "Focus Tracking" +msgstr "" + +msgid "Follow Focus Delay" +msgstr "" + +msgid "Hide original mouse pointer" +msgstr "" + +msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" +msgstr "" + +msgid "Minimum zoom factor" +msgstr "" + +msgid "Mouse Behaviour" +msgstr "" + +msgid "Mouse Restrain Margin" +msgstr "" + +msgid "Mouse panning" +msgstr "" + +msgid "Move the zoom area when focus changes." +msgstr "" + +msgid "" +"Move the zoomed area this much whenever you pan the zoomed area with keys." +msgstr "" + +msgid "" +"Only attempt to center newly focused windows if the mouse hasn't moved in " +"this amount of seconds. Use this to avoid jumping when using sloppy focus." +msgstr "" + +msgid "Pan (move) the zoom area down" +msgstr "" + +msgid "Pan (move) the zoom area left" +msgstr "" + +msgid "Pan (move) the zoom area right" +msgstr "" + +msgid "Pan (move) the zoom area up" +msgstr "" + +msgid "Pan Factor" +msgstr "" + +msgid "Pan Zoom Down" +msgstr "" + +msgid "Pan Zoom Left" +msgstr "" + +msgid "Pan Zoom Right" +msgstr "" + +msgid "Pan Zoom Up" +msgstr "" + +msgid "Pan the zoom area when the mouse cursor moves outside the visible area." +msgstr "" + +msgid "Panning" +msgstr "" + +msgid "Puts the mouse in the middle of the screen (Regardless of zoom level)" +msgstr "" + +msgid "Resize the window so it matches the current zoom level." +msgstr "" + +msgid "Restrain the mouse to the zoom area" +msgstr "" + +msgid "Scale the mouse pointer" +msgstr "" + +msgid "Specific Zoom" +msgstr "" + +msgid "Specific zoom factor 1" +msgstr "" + +msgid "Specific zoom factor 2" +msgstr "" + +msgid "Specific zoom factor 3" +msgstr "" + +msgid "Speed" +msgstr "" + +msgid "Static mouse pointer scale" +msgstr "" + +msgid "Sync Mouse" +msgstr "" + +msgid "Target Focused Window on Specific level" +msgstr "" + +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + +msgid "The size of the margin to add when attempting to restrain the mouse." +msgstr "" + +msgid "Timestep" +msgstr "" + +msgid "Toggle zoom area lock" +msgstr "" + +msgid "Toggles a lock on the zoom area so it doesn't change on various events" +msgstr "" + +msgid "Use linear filter when zoomed in" +msgstr "" + +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + +msgid "Zoom Area Movement" +msgstr "" + +msgid "Zoom Box" +msgstr "" + +msgid "Zoom In" +msgstr "" + +msgid "Zoom In/Out" +msgstr "" + +msgid "Zoom Out" +msgstr "" + +msgid "Zoom Specific Level 1" +msgstr "" + +msgid "Zoom Specific Level 2" +msgstr "" + +msgid "Zoom Specific Level 3" +msgstr "" + +msgid "Zoom Speed" +msgstr "" + +msgid "Zoom Timestep" +msgstr "" + +msgid "Zoom factor" +msgstr "" + +msgid "Zoom in on a boxed area" +msgstr "" + +msgid "Zoom in/out by this factor. Higher value means quicker zooming." +msgstr "" + +msgid "Zoom level to go to when triggering hotkey 1" +msgstr "" + +msgid "Zoom level to go to when triggering hotkey 2" +msgstr "" + +msgid "Zoom level to go to when triggering hotkey 3" +msgstr "" + +msgid "Zoom to the specific zoom level 1" +msgstr "" + +msgid "Zoom to the specific zoom level 2" +msgstr "" + +msgid "Zoom to the specific zoom level 3" +msgstr "" + +msgid "" +"Zooms in/out so the focused window is zoomed to the maximum while still " +"being fully visible." +msgstr "" + +msgid "Easily access your desktop" +msgstr "" + +msgid "Fade Time" +msgstr "" + +msgid "Fade time (in ms)" +msgstr "" + +msgid "Fade to Desktop" +msgstr "" + +msgid "Windows that should be faded to desktop" +msgstr "" + +msgid "Alter window opacity based on color." +msgstr "" + +msgid "Color Opacity" +msgstr "" + +msgid "Toggle Window Fake ARGB" +msgstr "" + +msgid "Toggle window fake ARGB." +msgstr "" + +#, fuzzy +msgid "Add Particle" +msgstr "ivotnost plamen" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + +msgid "Background brightness" +msgstr "" + +msgid "Background brightness during paint" +msgstr "" + +msgid "Clear" +msgstr "" + +msgid "Clear (button)" +msgstr "" + +msgid "Clear (key)" +msgstr "" + +msgid "Fire Particle Color" +msgstr "Barva plamen" + +msgid "Fire Particle Life" +msgstr "ivotnost plamen" + +msgid "Fire Particle Size" +msgstr "Velikost plamen" + +msgid "Fire Particle Slowdown" +msgstr "Zpomalen plamen" + +msgid "Fire particle color." +msgstr "Barva plamen." + +msgid "Fire particle life." +msgstr "ivotnost plamen." + +msgid "Fire particle size." +msgstr "Velikost plamen." + +msgid "Fire particle slowdown." +msgstr "Spomalen plamen." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Nhodn barvy pro efekt ohn, tak znm jako Mystick Ohe" + +msgid "Initiate (button)" +msgstr "" + +msgid "Initiate (key)" +msgstr "" + +msgid "Initiate fire drawing" +msgstr "" + +msgid "Maximum number of active particles" +msgstr "" + +msgid "Number of particles" +msgstr "" + +msgid "Paint fire on the screen" +msgstr "" + +msgid "Paint fire or other particles on the screen" +msgstr "" + +msgid "Randomly Colored Fire" +msgstr "Nhodn obarven ohe" + +msgid "Cube Gears" +msgstr "" + +msgid "Render gears inside of the transparent cube" +msgstr "" + +msgid "Animation Options" +msgstr "" + +msgid "Autotab windows on creation" +msgstr "" + +msgid "Autotab windows with themselves on window creation" +msgstr "" + +msgid "Border Radius" +msgstr "" + +msgid "Border Width" +msgstr "" + +msgid "Border color of the tab bar" +msgstr "" + +msgid "Brightness of selected windows" +msgstr "" + +msgid "Change Tab Left" +msgstr "" + +msgid "Change Tab Right" +msgstr "" + +msgid "Change tab animation duration" +msgstr "" + +msgid "Close Group" +msgstr "" + +msgid "Create mipmaps for thumbnails" +msgstr "" + +msgid "Create mipmaps for thumbnails in the tab bar" +msgstr "" + +msgid "" +"Distance (in pixels) between the tab bar and the dragged slot for applying " +"the spring model. If the distance is larger than that value, the model isn't " +"applied." +msgstr "" + +msgid "Duration (in s) of the animation that happens when changing tabs" +msgstr "" + +msgid "Duration (in s) of the tab bar fading animation when showing/hiding it" +msgstr "" + +msgid "Duration (in s) of the tab bar pulse animation" +msgstr "" + +msgid "Duration (in s) of the tab bar reflex animation" +msgstr "" + +msgid "Duration (in s) of the text fading animation when showing/hiding it" +msgstr "" + +msgid "Enable Glow" +msgstr "" + +msgid "Enable grouped window glowing" +msgstr "" + +msgid "Fade time for tab bar animations" +msgstr "" + +msgid "Fade time for text animations" +msgstr "" + +msgid "Fill color of the selection rectangle" +msgstr "" + +msgid "Fill color of the tab bar" +msgstr "" + +msgid "Font Color" +msgstr "" + +msgid "Font Size" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Glass" +msgstr "" + +msgid "Glow" +msgstr "" + +msgid "Glow Color Change" +msgstr "" + +msgid "Glow Size" +msgstr "" + +msgid "Glow Type" +msgstr "" + +msgid "Glow ring" +msgstr "" + +msgid "Gradient" +msgstr "" + +msgid "Group Window Match" +msgstr "" + +msgid "Group Windows" +msgstr "" + +msgid "Group and Tab Windows" +msgstr "" + +msgid "Group the windows after selection" +msgstr "" + +msgid "Grouping" +msgstr "" + +msgid "Hover time for slot dragging" +msgstr "" + +msgid "" +"If one window in the group is (un)maximized, all other group windows are (un)" +"maximized as well." +msgstr "" + +msgid "" +"If one window in the group is (un)minimized, all other group windows are (un)" +"minimized as well." +msgstr "" + +msgid "" +"If one window in the group is (un)shaded, all other group windows are (un)" +"shaded as well." +msgstr "" + +msgid "" +"If one window in the group is activated, all other group windows are raised " +"as well." +msgstr "" + +msgid "" +"If one window in the group is moved, all other group windows are moved as " +"well." +msgstr "" + +msgid "" +"If one window in the group is resized, all other group windows are resized " +"as well." +msgstr "" + +msgid "If there is only 1 window left in the group, it will be ungrouped." +msgstr "" + +msgid "" +"If you don't like the current glow color, you can change it with this key." +msgstr "" + +msgid "" +"If you have selected some windows, this automatically groups them (Doesn't " +"work with selection mode 'Normal')." +msgstr "" + +msgid "Ignore Group" +msgstr "" + +msgid "Key bindings" +msgstr "" + +msgid "Line Color" +msgstr "" + +msgid "Line color of the selection rectangle" +msgstr "" + +msgid "Maximize/unmaximize with group" +msgstr "" + +msgid "Metal" +msgstr "" + +msgid "Minimize with group" +msgstr "" + +msgid "" +"Mouse pointer movement speed limit (in pixels/second) for the spring model" +msgstr "" + +msgid "Move every window in the group" +msgstr "" + +msgid "Murrina" +msgstr "" + +msgid "Opacity of selected windows" +msgstr "" + +msgid "Play animations on the tab bar e.g. on fade in." +msgstr "" + +msgid "Precision" +msgstr "" + +msgid "" +"Precision of the selection (percentage of the visible window area which must " +"be selected for the selection to be recognized)." +msgstr "" + +msgid "Raise every window in the group" +msgstr "" + +msgid "Rectangular glow" +msgstr "" + +msgid "Remove Group Window" +msgstr "" + +msgid "Remove window from group after dropping it outside a tab bar" +msgstr "" + +msgid "Resize every window in the group" +msgstr "" + +msgid "Saturation of selected windows" +msgstr "" + +msgid "Select" +msgstr "" + +msgid "Select Single Window" +msgstr "" + +msgid "Selection" +msgstr "" + +msgid "Selection Color" +msgstr "" + +msgid "Shade with group" +msgstr "" + +msgid "Simple" +msgstr "" + +msgid "Slot Drag Spring K" +msgstr "" + +msgid "Slot Dragging" +msgstr "" + +msgid "Slot drag friction" +msgstr "" + +msgid "Space" +msgstr "" + +msgid "Speed limit for spring model" +msgstr "" + +msgid "Spring Konstant used for slot dragging" +msgstr "" + +msgid "Spring friction for slot dragging" +msgstr "" + +msgid "Tab Bar Show Delay" +msgstr "" + +msgid "Tab Base Color" +msgstr "" + +msgid "Tab Border Color" +msgstr "" + +msgid "Tab Group" +msgstr "" + +msgid "Tab Highlight Color" +msgstr "" + +msgid "Tab Style" +msgstr "" + +msgid "Tab bar visibility time after tab change" +msgstr "" + +msgid "Tabbing" +msgstr "" + +msgid "Tabbing Speed" +msgstr "" + +msgid "Tabbing Timestep" +msgstr "" + +msgid "Tabbing speed" +msgstr "" + +msgid "Tabbing timestep" +msgstr "" + +msgid "The color of the window title in the tab bar" +msgstr "" + +msgid "The key for closing all windows in the group." +msgstr "" + +msgid "The key for grouping windows." +msgstr "" + +msgid "" +"The key for ignoring the group. If this key is pressed, you can do actions " +"for a single window in the group only." +msgstr "" + +msgid "The key for removing the selected window from its group." +msgstr "" + +msgid "The key for selecting the current window." +msgstr "" + +msgid "The key for starting selecting windows." +msgstr "" + +msgid "The key for switching to the tab left of the current one." +msgstr "" + +msgid "The key for switching to the tab right of the current one." +msgstr "" + +msgid "The key for toggling the tab mode for the current group." +msgstr "" + +msgid "The key for ungrouping the current group." +msgstr "" + +msgid "The radius for the tab bar edges" +msgstr "" + +msgid "The size of the grouped window glow" +msgstr "" + +msgid "The size of the window thumbs in the task bar" +msgstr "" + +msgid "The size of the window title font in the tab bar" +msgstr "" + +msgid "The space between the thumbs" +msgstr "" + +msgid "The style of the tab bar" +msgstr "" + +msgid "The type of the glow" +msgstr "" + +msgid "The width of the tab bar outline" +msgstr "" + +msgid "Thumb Size" +msgstr "" + +msgid "Time (in s) before the tab bar is shown after hovering the title bar" +msgstr "" + +msgid "Time (in s) the tab bar is visibly after a tab change" +msgstr "" + +msgid "Time for tab bar pulse animation" +msgstr "" + +msgid "Time for tab bar reflex animation" +msgstr "" + +msgid "" +"Timespan (in s) after which a grouped window is activated if a window of " +"another group is dragged over it" +msgstr "" + +msgid "Ungroup Windows" +msgstr "" + +msgid "Ungroup the windows if only one window is left" +msgstr "" + +msgid "Untab the group when closing the top tab window instead of changing tab" +msgstr "" + +msgid "Untab when closing top tab" +msgstr "" + +msgid "Use tab bar animations" +msgstr "" + +msgid "Window Title Font" +msgstr "" + +msgid "Windows that should be allowed to be grouped" +msgstr "" + +msgid "With this plugin you can group and tab windows" +msgstr "" + +msgid "Y distance for spring model" +msgstr "" + +msgid "Compression Quality" +msgstr "" + +msgid "JPEG" +msgstr "" + +msgid "JPEG image format plugin" +msgstr "" + +msgid "Quality of compression when saving JPEG images" +msgstr "" + +msgid "Background/Window brightness." +msgstr "" + +msgid "Background/Window saturation." +msgstr "" + +msgid "Fade In/Out Time" +msgstr "" + +msgid "Fade In/Out Time." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Login Window Match" +msgstr "" + +msgid "Login Window match" +msgstr "" + +msgid "Login/Logout" +msgstr "" + +msgid "Login/Logout effect" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Logout Window Match" +msgstr "" + +msgid "Logout Window match" +msgstr "" + +msgid "Window opacity." +msgstr "" + +#, fuzzy +msgid "Border color" +msgstr "Barva paprsku." + +#, fuzzy +msgid "Border width" +msgstr "ka paprsku." + +#, fuzzy +msgid "Border widtht." +msgstr "ka paprsku." + +msgid "Box height." +msgstr "" + +#, fuzzy +msgid "Box width." +msgstr "ka paprsku." + +msgid "Clip mask" +msgstr "" + +msgid "Clip mask." +msgstr "" + +msgid "Fisheye" +msgstr "" + +msgid "Height" +msgstr "" + +msgid "Image overlay" +msgstr "" + +msgid "Keep fully on screen" +msgstr "" + +msgid "Keep fully on screen." +msgstr "" + +msgid "Magnifier" +msgstr "" + +msgid "Magnifier box" +msgstr "" + +msgid "Magnifier image" +msgstr "" + +msgid "Magnifier image." +msgstr "" + +msgid "Mode" +msgstr "" + +msgid "Mode." +msgstr "" + +msgid "Radius" +msgstr "" + +msgid "Radius of the magnification area." +msgstr "" + +msgid "Width" +msgstr "" + +msgid "X offset of the cursor" +msgstr "" + +msgid "X offset of the cursor." +msgstr "" + +msgid "Y offset of the cursor" +msgstr "" + +msgid "Y offset of the cursor." +msgstr "" + +msgid "Zoom factor for keyboard initiated magnifier." +msgstr "" + +msgid "Ignore already overlapping windows in the calculations" +msgstr "" + +msgid "Ignore sticky windows in the calculations" +msgstr "" + +msgid "Maximumize" +msgstr "" + +msgid "Maximumizes windows (resize them to fit the available screenspace)." +msgstr "" + +msgid "" +"Treat sticky windows as non-existant when calculating space to use for the " +"maximumize window." +msgstr "" + +msgid "" +"Treat windows that are already overlapping with the current window as non-" +"existant when calculating space to use for the maximumize window." +msgstr "" + +msgid "" +"Trigger a resize of the window currently focused so it fits as much of the " +"available screenspae as possible." +msgstr "" + +msgid "Trigger maximumize" +msgstr "" + +msgid "Accumulation buffer" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Execute Motion Blur if the screen is transformed." +msgstr "" + +msgid "Motion Blur Strength" +msgstr "" + +msgid "Motion Blur mode" +msgstr "" + +msgid "Motion Blur on Transformed Screen" +msgstr "" + +msgid "Motion Blur render mode." +msgstr "" + +msgid "Motion Blur strength." +msgstr "" + +msgid "Motion blur" +msgstr "" + +msgid "Motion blur effect" +msgstr "" + +msgid "Texture Copy" +msgstr "" + +msgid "Toggle Motion Blur" +msgstr "" + +msgid "Toggle motion Blur effect." +msgstr "" + +msgid "Visibility/Performance" +msgstr "" + +msgid "Action" +msgstr "" + +msgid "Action that is to be invoked." +msgstr "" + +msgid "Assign mousegestures to any existing action" +msgstr "" + +msgid "Detect Diagonal Movements" +msgstr "" + +msgid "Gesture" +msgstr "" + +msgid "Gesture assignment" +msgstr "" + +msgid "Gestures" +msgstr "" + +msgid "" +"If this option is selected, diagonal movements are detected, which may lead " +"to a decreased detection accuracy." +msgstr "" + +msgid "Mouse gesture to assign an action to." +msgstr "" + +msgid "Mousegestures" +msgstr "" + +msgid "Plugin" +msgstr "" + +msgid "Plugin the action belongs to." +msgstr "" + +msgid "Start gesture" +msgstr "" + +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" + +msgid "Misc" +msgstr "" + +msgid "Mouse Poll Interval" +msgstr "" + +msgid "Mouse position polling" +msgstr "" + +msgid "Updates the mouse pointer position from the xserver" +msgstr "" + +msgid "Begin Gesture" +msgstr "" + +msgid "Begin Mouse Gesture" +msgstr "" + +msgid "Mouse switch" +msgstr "" + +msgid "Switch viewport in response to mouse gesture" +msgstr "" + +msgid "Also negate window decorations, not only the window contents." +msgstr "" + +msgid "Exclude Windows" +msgstr "" + +msgid "Neg Windows" +msgstr "" + +msgid "Negate Decorations" +msgstr "" + +msgid "Negative" +msgstr "" + +msgid "Toggle Screen Negative" +msgstr "" + +msgid "Toggle Window Negative" +msgstr "" + +msgid "Toggle active window negative" +msgstr "" + +msgid "Toggle screen negative" +msgstr "" + +msgid "Used to set a window or screen negative" +msgstr "" + +msgid "Windows to be negative by default" +msgstr "" + +msgid "Windows to exclude from negating" +msgstr "" + +msgid "Debug" +msgstr "" + +msgid "Display errors and other messages using libnotify." +msgstr "" + +msgid "Error" +msgstr "" + +msgid "Error Notifications" +msgstr "" + +msgid "Fatal" +msgstr "" + +msgid "Hide Timeout" +msgstr "" + +msgid "Info" +msgstr "" + +msgid "Maximum Log Level" +msgstr "" + +msgid "The maximum log level to display" +msgstr "" + +msgid "" +"Timeout (in seconds) before hiding the notification, set to -1 for system " +"default and 0 for indefinite" +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "Active Opacity" +msgstr "" + +msgid "" +"Bypass delay when Opacify is reducing the opacity on one or more windows " +"already." +msgstr "" + +msgid "Bypass delay when the new active window is the focused window." +msgstr "" + +msgid "Delay until Opacification" +msgstr "" + +msgid "" +"Do not wait if the window we are hovering is the focused window. This allows " +"us to instantly see the focused window. You probably want to disable this if " +"you are not using 'Click to Focus'." +msgstr "" + +msgid "Make windows easily visible by hovering the mouse over them" +msgstr "" + +msgid "Only increase opacity if a window is blocking" +msgstr "" + +msgid "" +"Only increase the opacity on the targeted window if it has one or more " +"windows blocking it from view." +msgstr "" + +msgid "Opacify" +msgstr "" + +msgid "Opacity Levels" +msgstr "" + +msgid "Passive Opacity" +msgstr "" + +msgid "Reset opacity to original values when toggling" +msgstr "" + +msgid "" +"Reset the opacity of all windows modified by opacify when toggling Opacify " +"with the defined key-combination." +msgstr "" + +msgid "" +"The delay (in ms) before Opacify changes opacity after the active window has " +"changed." +msgstr "" + +msgid "" +"The maximum opacity percentage a window blocking the current targeted window " +"can have. A blocking window will have either this opacity or the preset " +"opacity, whichever is lower." +msgstr "" + +msgid "" +"The minimum opacity percentage to ensure a targeted window has. A target " +"window will have either this opacity or the preset opacity, whichever is " +"higher." +msgstr "" + +msgid "" +"This enables you to let Opacify instantly opacify new windows when you're " +"already making one or more windows invisible. Makes for faster behavior " +"while looking through layers of hidden windows." +msgstr "" + +msgid "Toggle Opacify" +msgstr "" + +msgid "Toggle Opacify on by default" +msgstr "" + +msgid "" +"Use this to enable/disable Opacify on the fly. Previously opacified windows " +"will not be reset once you disable it like this." +msgstr "" + +msgid "Windows that should be opacified." +msgstr "" + +msgid "" +"With this enabled, opacify will be on when you load Opacify, which is " +"usually when you start Compiz." +msgstr "" + +msgid "Animation speed" +msgstr "" + +msgid "Animation timestep" +msgstr "" + +msgid "Avoid Offscreen" +msgstr "" + +msgid "Avoids putting window borders offscreen" +msgstr "" + +msgid "Move window arbitrarily by passing x, y and type." +msgstr "" + +msgid "Move window to a certain viewport" +msgstr "" + +msgid "Move window to the bottom edge" +msgstr "" + +msgid "Move window to the bottom left corner" +msgstr "" + +msgid "Move window to the bottom right corner" +msgstr "" + +msgid "Move window to the center" +msgstr "" + +msgid "Move window to the last position" +msgstr "" + +msgid "Move window to the left edge" +msgstr "" + +msgid "Move window to the pointer position" +msgstr "" + +msgid "Move window to the right edge" +msgstr "" + +msgid "Move window to the top edge" +msgstr "" + +msgid "Move window to the top left corner" +msgstr "" + +msgid "Move window to the top right corner" +msgstr "" + +msgid "Move window to the viewport on the bottom" +msgstr "" + +msgid "Move window to the viewport on the left" +msgstr "" + +msgid "Move window to the viewport on the right" +msgstr "" + +msgid "Move window to the viewport on the top" +msgstr "" + +msgid "Move window to viewport 1" +msgstr "" + +msgid "Move window to viewport 10" +msgstr "" + +msgid "Move window to viewport 11" +msgstr "" + +msgid "Move window to viewport 12" +msgstr "" + +msgid "Move window to viewport 2" +msgstr "" + +msgid "Move window to viewport 3" +msgstr "" + +msgid "Move window to viewport 4" +msgstr "" + +msgid "Move window to viewport 5" +msgstr "" + +msgid "Move window to viewport 6" +msgstr "" + +msgid "Move window to viewport 7" +msgstr "" + +msgid "Move window to viewport 8" +msgstr "" + +msgid "Move window to viewport 9" +msgstr "" + +msgid "" +"Number of pixels from the bottom edge where the window will come to rest" +msgstr "" + +msgid "Number of pixels from the left edge where the window will come to rest" +msgstr "" + +msgid "Number of pixels from the right edge where the window will come to rest" +msgstr "" + +msgid "Number of pixels from the top edge where the window will come to rest" +msgstr "" + +msgid "Pad Bottom" +msgstr "" + +msgid "Pad Left" +msgstr "" + +msgid "Pad Right" +msgstr "" + +msgid "Pad Top" +msgstr "" + +msgid "Padding" +msgstr "" + +msgid "Put" +msgstr "" + +msgid "Put Bottom" +msgstr "" + +msgid "Put Bottom Left" +msgstr "" + +msgid "Put Bottom Right" +msgstr "" + +msgid "Put Center" +msgstr "" + +msgid "Put Left" +msgstr "" + +msgid "Put On Viewport" +msgstr "" + +msgid "Put On Viewport 1" +msgstr "" + +msgid "Put On Viewport 10" +msgstr "" + +msgid "Put On Viewport 11" +msgstr "" + +msgid "Put On Viewport 12" +msgstr "" + +msgid "Put On Viewport 2" +msgstr "" + +msgid "Put On Viewport 3" +msgstr "" + +msgid "Put On Viewport 4" +msgstr "" + +msgid "Put On Viewport 5" +msgstr "" + +msgid "Put On Viewport 6" +msgstr "" + +msgid "Put On Viewport 7" +msgstr "" + +msgid "Put On Viewport 8" +msgstr "" + +msgid "Put On Viewport 9" +msgstr "" + +msgid "Put Pointer" +msgstr "" + +msgid "Put Right" +msgstr "" + +msgid "Put Top" +msgstr "" + +msgid "Put Top Left" +msgstr "" + +msgid "Put Top Right" +msgstr "" + +msgid "Put pointer uses the center of the window" +msgstr "" + +msgid "Put to adjacent viewport" +msgstr "" + +msgid "Put to arbitrary viewport" +msgstr "" + +msgid "Put window" +msgstr "" + +msgid "Put within viewport" +msgstr "" + +msgid "Restore Position" +msgstr "" + +msgid "Unfocus Window" +msgstr "" + +msgid "Unfocus windows that are moved off the viewport" +msgstr "" + +msgid "Viewport Bottom" +msgstr "" + +msgid "Viewport Left" +msgstr "" + +msgid "Viewport Right" +msgstr "" + +msgid "Viewport Top" +msgstr "" + +msgid "Window Center" +msgstr "" + +msgid "Alpha Dependence Threshold" +msgstr "" + +msgid "Alpha dependence threshold." +msgstr "" + +msgid "Draw Reflection for decorations." +msgstr "" + +msgid "Draw Reflection for windows." +msgstr "" + +msgid "Draws reflections" +msgstr "" + +msgid "Move the reflection on window move." +msgstr "" + +msgid "Moving reflection" +msgstr "" + +msgid "Reflection Image" +msgstr "" + +msgid "Reflection Image file" +msgstr "" + +msgid "Reflection Window Match" +msgstr "" + +msgid "Reflection for Decorations" +msgstr "" + +msgid "Reflection for Windows" +msgstr "" + +msgid "Window match" +msgstr "" + +msgid "Color 1 of the gradient background." +msgstr "" + +msgid "Color 2 of the gradient background." +msgstr "" + +msgid "Color 3 of the gradient background." +msgstr "" + +msgid "Color of text on resize popup." +msgstr "" + +msgid "Display info on resize similar to metacity" +msgstr "" + +msgid "Fade time (in ms) for popup window" +msgstr "" + +msgid "Gradient Color 1" +msgstr "" + +msgid "Gradient Color 2" +msgstr "" + +msgid "Gradient Color 3" +msgstr "" + +msgid "Resize Info" +msgstr "" + +msgid "" +"Show resize info for all windows as opposed to just windows with a resize " +"increment of greater than 1." +msgstr "" + +msgid "Show resize info for all windows." +msgstr "" + +msgid "Text color." +msgstr "" + +msgid "Above ring" +msgstr "" + +msgid "Allow Mouse Selection" +msgstr "" + +msgid "" +"Allow the selection of windows by just clicking on them while the switcher " +"is active." +msgstr "" + +msgid "" +"Amount of opacity (in percent) for windows in the ring which are not selected" +msgstr "" + +msgid "Background Color" +msgstr "" + +msgid "Background color for the window title" +msgstr "" + +msgid "Below ring" +msgstr "" + +msgid "Big" +msgstr "" + +msgid "Bold Font" +msgstr "" + +msgid "Centered on screen" +msgstr "" + +msgid "" +"Changes the minimum brightness factor for windows in the ring. The farer " +"away windows are, the less bright are they." +msgstr "" + +msgid "" +"Changes the minimum scale factor for windows in the ring. The farer away " +"windows are, the smaller are they." +msgstr "" + +msgid "Darken Background" +msgstr "" + +msgid "Darken background when showing the ring" +msgstr "" + +msgid "Emblem" +msgstr "" + +msgid "Font color for the window title" +msgstr "" + +msgid "Font size for the window title" +msgstr "" + +msgid "Inactive Window Opacity" +msgstr "" + +msgid "Maximum horizontal size of a thumbnail in the ring" +msgstr "" + +msgid "Maximum vertical size of a thumbnail in the ring" +msgstr "" + +msgid "Minimum Brightness Factor" +msgstr "" + +msgid "Minimum Scale Factor" +msgstr "" + +msgid "Next Window" +msgstr "" + +msgid "Next Window (All Workspaces)" +msgstr "" + +msgid "Next Window (Group)" +msgstr "" + +msgid "Overlay Icon" +msgstr "" + +msgid "Overlay an icon on windows in the ring" +msgstr "" + +msgid "Previous Window" +msgstr "" + +msgid "Previous Window (All Workspaces)" +msgstr "" + +msgid "Previous Window (Group)" +msgstr "" + +msgid "Ring Height" +msgstr "" + +msgid "Ring Switcher" +msgstr "" + +msgid "Ring Width" +msgstr "" + +msgid "Ring Windows" +msgstr "" + +msgid "Ring appearance" +msgstr "" + +msgid "Ring height (in percent of the screen height)" +msgstr "" + +msgid "Ring speed" +msgstr "" + +msgid "Ring timestep" +msgstr "" + +msgid "Ring width (in percent of the screen width)" +msgstr "" + +msgid "Rotate Ring Clockwise on Next" +msgstr "" + +msgid "Rotate ring clockwise for next window instead of counterclockwise" +msgstr "" + +msgid "Selects if the window title should be displayed in bold font or not." +msgstr "" + +msgid "Selects where to place the window title." +msgstr "" + +msgid "Show Minimized" +msgstr "" + +msgid "Show Window Title" +msgstr "" + +msgid "" +"Show switcher if not visible and select next window of the current " +"application." +msgstr "" + +msgid "Show switcher if not visible and select next window out of all windows." +msgstr "" + +msgid "Show switcher if not visible and select next window." +msgstr "" + +msgid "" +"Show switcher if not visible and select previous window of the current " +"application." +msgstr "" + +msgid "" +"Show switcher if not visible and select previous window out of all windows." +msgstr "" + +msgid "Show switcher if not visible and select previous window." +msgstr "" + +msgid "Show window title of currently selected window." +msgstr "" + +msgid "Show windows that are minimized, shaded or in show desktop mode." +msgstr "" + +msgid "Text Placement" +msgstr "" + +msgid "Thumbnail Height" +msgstr "" + +msgid "Thumbnail Width" +msgstr "" + +msgid "Window title display" +msgstr "" + +msgid "Windows that should be shown in ring" +msgstr "" + +#, fuzzy +msgid "All windows" +msgstr "3D okna" + +msgid "Background color of the window title" +msgstr "" + +#, fuzzy +msgid "Close Window" +msgstr "3D okna" + +msgid "Close window while in scale mode" +msgstr "" + +msgid "Close windows while in scale mode" +msgstr "" + +msgid "Color used for highlighting the hovered window" +msgstr "" + +msgid "Constrain Pull To Screen" +msgstr "" + +msgid "Draw Window Highlight" +msgstr "" + +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + +msgid "Font color of the window title" +msgstr "" + +msgid "Font size for window title display" +msgstr "" + +msgid "Highlight Color" +msgstr "" + +msgid "Highlighted window only" +msgstr "" + +msgid "Highlights the hovered window with the given color" +msgstr "" + +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + +msgid "No display" +msgstr "" + +msgid "Normal" +msgstr "" + +msgid "Organic - EXPERIMENTAL" +msgstr "" + +#, fuzzy +msgid "Pull Window" +msgstr "3D okna" + +msgid "Pull window to current viewport while in scale mode" +msgstr "" + +msgid "Scale Addons" +msgstr "" + +msgid "Selects the mode to layout the windows in scale mode" +msgstr "" + +msgid "Size of the border around the window title" +msgstr "" + +msgid "Some useful additions to the scale plugin" +msgstr "" + +msgid "Title Border Size" +msgstr "" + +msgid "Use bold font for window title display" +msgstr "" + +msgid "Window Highlight" +msgstr "" + +msgid "Window Layout Mode" +msgstr "" + +#, fuzzy +msgid "Window Pull" +msgstr "Typy Oken" + +msgid "Window Title" +msgstr "" + +#, fuzzy +msgid "Window Title Display" +msgstr "Typy Oken" + +msgid "Window title display in scale mode" +msgstr "" + +#, fuzzy +msgid "Zoom Window" +msgstr "3D okna" + +msgid "Zoom window while in scale mode" +msgstr "" + +msgid "Filter Case Insensitive" +msgstr "" + +msgid "Filter Type Timeout" +msgstr "" + +msgid "Scale Window Title Filter" +msgstr "" + +msgid "Show Filter Text" +msgstr "" + +msgid "Show filter text." +msgstr "" + +msgid "Time (in ms) after which the filter typing is automatically ended" +msgstr "" + +msgid "Use case insensitive string matching when filtering." +msgstr "" + +msgid "Window title filter facility for the scale plugin" +msgstr "" + +msgid "" +"Embeds a Guile scheme interpreter and provides bindings for meaningful " +"Compiz integration." +msgstr "" + +msgid "Scheme Interpreter" +msgstr "" + +msgid "Toggle Prompt Visible" +msgstr "" + +msgid "Toggle prompt visible." +msgstr "" + +msgid "Directory" +msgstr "" + +msgid "Initiate screencasting" +msgstr "" + +msgid "Put screenshot images in this directory" +msgstr "" + +msgid "ScreenCast plugin" +msgstr "" + +msgid "ScreenCasting" +msgstr "" + +msgid "" +"Also try to save and restore legacy apps that don't support the X session " +"management protocol. This setting only should be used in KDE, as only KDE's " +"session manager also saves those applications." +msgstr "" + +msgid "Save Legacy Apps" +msgstr "" + +msgid "Session Management" +msgstr "" + +msgid "Talk to session manager and save/load window state" +msgstr "" + +msgid "Animation duration" +msgstr "" + +msgid "Duration of the animation in milliseconds." +msgstr "" + +msgid "Increase the scale factor making the window bigger." +msgstr "" + +msgid "Make the window bigger" +msgstr "" + +msgid "Make the window smaller" +msgstr "" + +msgid "Reduces the scale factor making the window smaller." +msgstr "" + +msgid "Reset the window to original size" +msgstr "" + +msgid "Resets the currently focused window to original size" +msgstr "" + +msgid "Scale a window down to a portion of it's size." +msgstr "" + +msgid "" +"Scale a window down to a ration of the screen size. Respectively half, a " +"third or a sixth of the screen." +msgstr "" + +msgid "Scale interval" +msgstr "" + +msgid "Shelf" +msgstr "" + +msgid "" +"The number to divide the scale factor by or multiply it with when " +"(respectively) increasing and decreasing the scale level manually. Higher " +"number means finer changes." +msgstr "" + +msgid "Trigger scale down" +msgstr "" + +msgid "Trigger scale down to screen" +msgstr "" + +msgid "" +"Visually scales a window down to allow easy monitoring without true/" +"traditional resizing." +msgstr "" + +msgid "Background intensity" +msgstr "" + +msgid "Background intensity." +msgstr "" + +msgid "Below" +msgstr "" + +msgid "Click duration" +msgstr "" + +msgid "Cover" +msgstr "" + +msgid "Cover movement offset." +msgstr "" + +msgid "Cover offset" +msgstr "" + +msgid "Disabled" +msgstr "" + +msgid "Fade in/out speed" +msgstr "" + +msgid "Fade speed" +msgstr "" + +msgid "Flip" +msgstr "" + +msgid "Flip angle" +msgstr "" + +msgid "Generate mipmaps" +msgstr "" + +msgid "Hide all non Desktop windows during switching" +msgstr "" + +msgid "Hide non Desktop windows" +msgstr "" + +msgid "Initiate (All Workspaces)" +msgstr "" + +msgid "Initiate switcher (All Workspaces)." +msgstr "" + +msgid "Initiate switcher." +msgstr "" + +msgid "Max window size" +msgstr "" + +msgid "Maximum click duration in miliseconds." +msgstr "" + +msgid "Maximum window size (in percent of the screen width)" +msgstr "" + +msgid "Mouse movement speed" +msgstr "" + +msgid "Mouse speed" +msgstr "" + +msgid "On activated output" +msgstr "" + +msgid "One big switcher" +msgstr "" + +msgid "Overlay an icon on windows in the shift switcher" +msgstr "" + +msgid "Rotation angle of the flip animation" +msgstr "" + +msgid "" +"Selects how the switcher is displayed if multiple output devices are used." +msgstr "" + +msgid "Shift Switcher" +msgstr "" + +msgid "Shift Switcher Plugin" +msgstr "" + +msgid "Shift Windows" +msgstr "" + +msgid "Shift animation speed" +msgstr "" + +msgid "Shift speed" +msgstr "" + +msgid "Shift timestep" +msgstr "" + +msgid "Switcher mode" +msgstr "" + +msgid "Switcher mode." +msgstr "" + +msgid "Terminate" +msgstr "" + +msgid "Terminate switcher." +msgstr "" + +msgid "Windows that should be shown in the shift switcher" +msgstr "" + +msgid "Access your desktop easily" +msgstr "" + +msgid "Direction of window movement" +msgstr "" + +msgid "Down" +msgstr "Dol" + +msgid "Left" +msgstr "Zleva" + +msgid "Left/Right" +msgstr "" + +msgid "Movement Direction" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Show desktop" +msgstr "" + +msgid "To Corners" +msgstr "" + +msgid "Up" +msgstr "Nahor" + +msgid "Up/Down" +msgstr "" + +msgid "Window Opacity" +msgstr "" + +msgid "Window Part Size" +msgstr "" + +msgid "Window movement speed" +msgstr "" + +msgid "Window movement timestep" +msgstr "" + +msgid "Window opacity when showdesktop'd" +msgstr "" + +msgid "Window part size when showdesktop'd" +msgstr "" + +msgid "" +"Window types that should be moved out of sight when entering showdesktop mode" +msgstr "" + +msgid "Additive blending" +msgstr "" + +msgid "Additive blending of particles" +msgstr "" + +msgid "Darken backgound" +msgstr "" + +msgid "Darken background under particles" +msgstr "" + +msgid "Emiters" +msgstr "" + +#, fuzzy +msgid "Have random colors for the particles" +msgstr "Nhodn barvy pro efekt ohn, tak znm jako Mystick Ohe" + +msgid "Increases the visibility of the mouse pointer" +msgstr "" + +#, fuzzy +msgid "Number Of Particles" +msgstr "Poet stic ohn" + +#, fuzzy +msgid "Number of particle emiters." +msgstr "Poet stic ohn." + +#, fuzzy +msgid "Number of particles." +msgstr "Poet stic ohn." + +#, fuzzy +msgid "Particle Color" +msgstr "Barva plamen" + +#, fuzzy +msgid "Particle Life" +msgstr "ivotnost plamen" + +#, fuzzy +msgid "Particle Options" +msgstr "Dal monosti" + +#, fuzzy +msgid "Particle Size" +msgstr "Velikost plamen" + +#, fuzzy +msgid "Particle Slowdown" +msgstr "Zpomalen plamen" + +#, fuzzy +msgid "Particle color." +msgstr "Barva plamen." + +#, fuzzy +msgid "Particle life." +msgstr "ivotnost plamen." + +#, fuzzy +msgid "Particle size." +msgstr "Velikost plamen." + +#, fuzzy +msgid "Particle slowdown." +msgstr "Spomalen plamen." + +#, fuzzy +msgid "Randomly Colored Particles" +msgstr "Nhodn obarven ohe" + +msgid "Ring radius" +msgstr "" + +#, fuzzy +msgid "Rotation speed" +msgstr "Smr oten" + +#, fuzzy +msgid "Rotation speed." +msgstr "Smr oten" + +msgid "Show mouse" +msgstr "" + +msgid "Toggle the mouse pointer trail." +msgstr "" + +msgid "Alt" +msgstr "" + +msgid "Avoid Snap Modifier" +msgstr "" + +msgid "Choose 'Resistance', 'Attraction' or 'Full Mode'." +msgstr "" + +msgid "Control" +msgstr "" + +msgid "Edge Attraction Distance" +msgstr "" + +msgid "Edge Resistance Distance" +msgstr "" + +msgid "Edge attraction" +msgstr "" + +msgid "Edge resistance" +msgstr "" + +msgid "Edges" +msgstr "" + +msgid "Enables windows edges resistance" +msgstr "" + +msgid "Meta" +msgstr "" + +msgid "Screen edges" +msgstr "" + +msgid "Shift" +msgstr "" + +msgid "Snap Type" +msgstr "" + +msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." +msgstr "" + +msgid "Snapping Windows" +msgstr "" + +msgid "The distance until edge attraction takes place." +msgstr "" + +msgid "The distance until edge resistance takes place." +msgstr "" + +msgid "Use this bindings to avoid snapping." +msgstr "" + +msgid "Window edges" +msgstr "" + +msgid "Bottom to Top" +msgstr "" + +msgid "" +"Delay (in ms) between screen updates. Decreasing this value may make snow " +"fall more smoothly, but will also increase CPU usage." +msgstr "" + +msgid "Enable Blending" +msgstr "" + +msgid "Enable Textures" +msgstr "" + +msgid "Enables alpha blending of snowflakes." +msgstr "" + +msgid "Enables textured snowflakes. If not selected, color gradients are used." +msgstr "" + +msgid "Flakes rotate if checked." +msgstr "" + +msgid "How deep into the screen snowflakes can be drawn before being removed" +msgstr "" + +msgid "" +"How far outside the screen resolution snow flakes can be before being " +"removed. Needed because of FOV." +msgstr "" + +msgid "Key Bindings" +msgstr "" + +msgid "Left to Right" +msgstr "" + +msgid "Number Of Snowflakes" +msgstr "" + +msgid "Number of snowflakes" +msgstr "" + +msgid "Right to Left" +msgstr "" + +msgid "Rotate Flakes" +msgstr "" + +msgid "Screen Boxing" +msgstr "" + +msgid "Screen Depth" +msgstr "" + +msgid "Select snow flake movement direction" +msgstr "" + +msgid "Settings" +msgstr "" + +msgid "Size Of Snowflakes" +msgstr "" + +msgid "Size of snowflakes" +msgstr "" + +msgid "Snow" +msgstr "" + +msgid "Snow Direction" +msgstr "" + +msgid "Snow Over Windows" +msgstr "" + +msgid "Snow Speed" +msgstr "" + +msgid "Snow Textures" +msgstr "" + +msgid "Snow Toggle" +msgstr "" + +msgid "Snow for Compiz" +msgstr "" + +msgid "Snow is drawn above windows" +msgstr "" + +msgid "Snow textures" +msgstr "" + +msgid "Snow toggle key" +msgstr "" + +msgid "Speed of falling snow" +msgstr "" + +msgid "Textures" +msgstr "" + +msgid "Top to Bottom" +msgstr "" + +msgid "Update Delay" +msgstr "" + +msgid "A simple splash plugin" +msgstr "" + +msgid "Background File" +msgstr "" + +msgid "Background brightness." +msgstr "" + +msgid "Background image File." +msgstr "" + +msgid "Background saturation." +msgstr "" + +msgid "Display In/Out Time." +msgstr "" + +msgid "Display Time" +msgstr "" + +msgid "Images" +msgstr "" + +msgid "Initiate Splash" +msgstr "" + +msgid "Logo File" +msgstr "" + +msgid "Logo image File." +msgstr "" + +msgid "Show on first start" +msgstr "" + +msgid "Show splash on first start." +msgstr "" + +msgid "Splash" +msgstr "" + +msgid "Start Splash." +msgstr "" + +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" + +msgid "Behavior" +msgstr "" + +msgid "Darken background when showing the stack" +msgstr "" + +msgid "On Thumbnail" +msgstr "" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Sytost oken v pozad" + +msgid "Should not selected windows be rotated" +msgstr "" + +msgid "Stack Window Switcher" +msgstr "" + +msgid "Tilt angle of the background." +msgstr "" + +#, fuzzy +msgid "Windows" +msgstr "3D okna" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Typy oken, kter mohou bt ztmaveny." + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +msgid "Amount of brightness in percent" +msgstr "" + +msgid "Amount of opacity in percent" +msgstr "" + +msgid "Amount of saturation in percent" +msgstr "" + +msgid "Auto Change Viewport" +msgstr "" + +msgid "Bring Selected To Front" +msgstr "" + +msgid "Centered" +msgstr "" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +msgid "Color of highlight rectangle" +msgstr "" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" + +msgid "Highlight Border Color" +msgstr "" + +msgid "Highlight Border Inlay Color" +msgstr "" + +msgid "Highlight Mode" +msgstr "" + +#, fuzzy +msgid "Icon" +msgstr "Dovnit" + +msgid "Minimized Window Highlight Rectangle" +msgstr "" + +msgid "Mipmap" +msgstr "" + +msgid "Mode for highlighting the currently selected window" +msgstr "" + +msgid "Next Panel" +msgstr "" + +msgid "Next window" +msgstr "" + +msgid "Next window (All windows)" +msgstr "" + +msgid "Next window (Group)" +msgstr "" + +msgid "Next window (No popup)" +msgstr "" + +msgid "Original Window Position" +msgstr "" + +msgid "Popup Window Delay" +msgstr "" + +msgid "Popup switcher if not visible and select next window" +msgstr "" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" + +msgid "Popup switcher if not visible and select previous window" +msgstr "" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" + +msgid "Prev Panel" +msgstr "" + +msgid "Prev window" +msgstr "" + +msgid "Prev window (All windows)" +msgstr "" + +msgid "Prev window (Group)" +msgstr "" + +msgid "Prev window (No popup)" +msgstr "" + +msgid "Row Alignment" +msgstr "" + +msgid "Select next panel type window." +msgstr "" + +msgid "Select next window without showing the popup window." +msgstr "" + +msgid "Select previous panel type window." +msgstr "" + +msgid "Select previous window without showing the popup window." +msgstr "" + +msgid "Selected Window Highlight" +msgstr "" + +msgid "Show Rectangle" +msgstr "" + +msgid "Show icon next to thumbnail" +msgstr "" + +msgid "Show minimized windows" +msgstr "" + +msgid "Static Application Switcher" +msgstr "" + +msgid "Switcher speed" +msgstr "" + +msgid "Switcher timestep" +msgstr "" + +msgid "Switcher windows" +msgstr "" + +msgid "Taskbar Entry" +msgstr "" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" + +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Typy oken, kter mohou bt ztmaveny." + +msgid "Render text to texture" +msgstr "" + +msgid "Text" +msgstr "" + +msgid "Enable Titles" +msgstr "" + +msgid "Fade In/Out Duration" +msgstr "" + +msgid "Fade In/Out Duration in seconds." +msgstr "" + +msgid "Generate Mipmaps" +msgstr "" + +msgid "Generate mipmaps when possible for higher quality scaling." +msgstr "" + +msgid "Paint Thumbnails Always on Top." +msgstr "" + +msgid "Paint Window Like Background" +msgstr "" + +msgid "Paint Window Like Background instead of Glow." +msgstr "" + +msgid "Set it if the Taskbar shows only Windows of Current Viewport." +msgstr "" + +msgid "Should be the window title Bold." +msgstr "" + +msgid "Show Delay" +msgstr "" + +msgid "Show Window Title in Thumbnail." +msgstr "" + +msgid "Size of Thumbnail Border." +msgstr "" + +msgid "Taskbar" +msgstr "" + +msgid "Taskbar Shows Only Windows of Current Viewport" +msgstr "" + +msgid "Thumbnail Background and Border Glow Color." +msgstr "" + +msgid "Thumbnail Border Glow Color" +msgstr "" + +msgid "Thumbnail Border Size" +msgstr "" + +msgid "Thumbnail Window Size" +msgstr "" + +msgid "Thumbnail window size." +msgstr "" + +msgid "Thumbnails Always on Top" +msgstr "" + +msgid "Time (in ms) before Thumbnail is shown." +msgstr "" + +msgid "Window Previews" +msgstr "" + +msgid "Window thumbnails at the taskbar" +msgstr "" + +msgid "Window title" +msgstr "" + +msgid "Window title Font Color." +msgstr "" + +msgid "Window title Font Size." +msgstr "" + +msgid "Animation Duration" +msgstr "" + +msgid "Cascade" +msgstr "" + +msgid "Cascade Delta" +msgstr "" + +msgid "Cascade Windows" +msgstr "" + +msgid "Choose the tiling type you want when using toggle." +msgstr "" + +msgid "Distance between windows when using cascade" +msgstr "" + +msgid "Drop From Top" +msgstr "" + +msgid "Duration (in ms) of the tiling animation" +msgstr "" + +msgid "Excluded Windows" +msgstr "" + +msgid "Filled Outline" +msgstr "" + +msgid "Join Windows (EXPERIMENTAL)" +msgstr "" + +msgid "Left Occupancy" +msgstr "" + +msgid "" +"Move and resize all visible windows both vertically and horizontally, so " +"that the occupy whole screen and are in a grid." +msgstr "" + +msgid "" +"Move and resize all visible windows so that they have full height, same " +"width and occupy whole screen." +msgstr "" + +msgid "" +"Move and resize all visible windows so that they have full width, same " +"height and occupy whole screen." +msgstr "" + +msgid "" +"Move and resize all visible windows with the delta value set for cascading." +msgstr "" + +msgid "" +"Occupancy percentage for window placed left. This number is percentage of " +"screen width, which the active window will have it as width when tiled. " +"Applies to Left tiling type." +msgstr "" + +msgid "Restore Windows" +msgstr "" + +msgid "Restore windows to their original position they had before tiling." +msgstr "" + +msgid "Selects the animation used while tiling" +msgstr "" + +msgid "Slide" +msgstr "" + +msgid "Tile" +msgstr "" + +msgid "Tile Horizontally" +msgstr "" + +msgid "Tile Vertically" +msgstr "" + +msgid "Tile Windows" +msgstr "" + +msgid "Tile Windows Horizontally" +msgstr "" + +msgid "Tile Windows Vertically" +msgstr "" + +msgid "Tile windows" +msgstr "" + +msgid "Tiling Animation Type" +msgstr "" + +msgid "Tiling Method For Toggle" +msgstr "" + +msgid "Toggle Tiling" +msgstr "" + +msgid "Toggle between tile and restore" +msgstr "" + +msgid "" +"Tries to join the windows together when horizontal, vertical or left tiling " +"is enabled so that when you resize a window surrounding windows resize " +"accordingly. This may cause problems if you dont leave them enough space." +msgstr "" + +msgid "Windows which should be excluded from tiling" +msgstr "" + +msgid "" +"Adjust the opacity, saturation and brightness of windows based on when they " +"last had focus." +msgstr "" + +msgid "Brightness Level of Focused Windows" +msgstr "" + +msgid "Brightness Level of Unfocused Windows" +msgstr "" + +msgid "" +"Brightness of the currently focused window. Windows will get brightness " +"levels between the focused and minimum." +msgstr "" + +msgid "" +"Brightness of the least focused window. Windows will get brightness levels " +"between the focused and minimum." +msgstr "" + +msgid "Number of Windows to Track" +msgstr "" + +msgid "" +"Number of windows Trailfocus will keep track of. Windows that had focus this " +"amount of windows ago or more will be considered completly unfocused." +msgstr "" + +msgid "Opacity Level of Focused Windows" +msgstr "" + +msgid "Opacity Level of Unfocused Windows" +msgstr "" + +msgid "" +"Opacity of the currently focused window. Windows will get opacity levels " +"between the focused and minimum." +msgstr "" + +msgid "" +"Opacity of the least focused window. Windows will get opacity levels between " +"the focused and minimum." +msgstr "" + +msgid "Saturation Level of Focused Windows" +msgstr "" + +msgid "Saturation Level of Unfocused Windows" +msgstr "" + +msgid "" +"Saturation of the currently focused window. Windows will get saturation " +"levels between the focused and minimum." +msgstr "" + +msgid "" +"Saturation of the least focused window. Windows will get saturation levels " +"between the focused and minimum." +msgstr "" + +msgid "" +"This defines when Trailfocus will start fading windows. This lets you set up " +"trailfocus to treat the N first Windows as fully focused." +msgstr "" + +msgid "Trailfocus" +msgstr "" + +msgid "Window to Start Fading" +msgstr "" + +msgid "Window types that should be handled by Trailfocus" +msgstr "" + +msgid "Action name for initiate" +msgstr "" + +msgid "Action name for initiate/terminate" +msgstr "" + +msgid "Begin Viewport Switch" +msgstr "" + +msgid "Begin entering viewport number" +msgstr "" + +msgid "Desktop-based Viewport Switching" +msgstr "" + +msgid "Go to specific viewport" +msgstr "" + +msgid "Initiate plugin action" +msgstr "" + +msgid "Initiate viewport changes through several events" +msgstr "" + +msgid "Initiate/Terminate the selected plugin action" +msgstr "" + +msgid "Move Down" +msgstr "" + +msgid "Move Left" +msgstr "" + +msgid "Move Next" +msgstr "" + +msgid "Move Prev" +msgstr "" + +msgid "Move Right" +msgstr "" + +msgid "Move Up" +msgstr "" + +msgid "Move down" +msgstr "" + +msgid "Move to the left" +msgstr "" + +msgid "Move to the next viewport" +msgstr "" + +msgid "Move to the previous viewport" +msgstr "" + +msgid "Move to the right" +msgstr "" + +msgid "Move up" +msgstr "" + +msgid "Number-Based Viewport Switching" +msgstr "" + +msgid "Plugin for initiate action" +msgstr "" + +msgid "Plugin for initiate/action action" +msgstr "" + +msgid "Switch to Viewport 1" +msgstr "" + +msgid "Switch to Viewport 10" +msgstr "" + +msgid "Switch to Viewport 11" +msgstr "" + +msgid "Switch to Viewport 12" +msgstr "" + +msgid "Switch to Viewport 2" +msgstr "" + +msgid "Switch to Viewport 3" +msgstr "" + +msgid "Switch to Viewport 4" +msgstr "" + +msgid "Switch to Viewport 5" +msgstr "" + +msgid "Switch to Viewport 6" +msgstr "" + +msgid "Switch to Viewport 7" +msgstr "" + +msgid "Switch to Viewport 8" +msgstr "" + +msgid "Switch to Viewport 9" +msgstr "" + +msgid "Switch to viewport 1" +msgstr "" + +msgid "Switch to viewport 10" +msgstr "" + +msgid "Switch to viewport 11" +msgstr "" + +msgid "Switch to viewport 12" +msgstr "" + +msgid "Switch to viewport 2" +msgstr "" + +msgid "Switch to viewport 3" +msgstr "" + +msgid "Switch to viewport 4" +msgstr "" + +msgid "Switch to viewport 5" +msgstr "" + +msgid "Switch to viewport 6" +msgstr "" + +msgid "Switch to viewport 7" +msgstr "" + +msgid "Switch to viewport 8" +msgstr "" + +msgid "Switch to viewport 9" +msgstr "" + +msgid "Viewport Switcher" +msgstr "" + +msgid "Allow Wrap-Around" +msgstr "" + +msgid "Allow wrap-around when moving the wall up/down/left/right" +msgstr "" + +msgid "Arrow Colors" +msgstr "" + +msgid "Background Gradient" +msgstr "" + +msgid "Base Color" +msgstr "" + +msgid "Desktop Wall" +msgstr "" + +msgid "Desktop Wall Plugin" +msgstr "" + +msgid "Duration (in s) for wall sliding viewport switching animation" +msgstr "" + +msgid "" +"Duration (in s) the switch target preview should remain visible after " +"switching ends." +msgstr "" + +msgid "Edge Flip DnD" +msgstr "" + +msgid "Edge Flip Move" +msgstr "" + +msgid "Edge Flip Pointer" +msgstr "" + +msgid "Edge Flipping" +msgstr "" + +msgid "Edge Radius" +msgstr "" + +msgid "Edge flipping" +msgstr "" + +msgid "First color for the background gradient of the switcher window." +msgstr "" + +msgid "First color for the thumb gradient of the switcher window." +msgstr "" + +msgid "First color for the thumb highlight gradient of the switcher window." +msgstr "" + +msgid "First color of the arrow of the switcher window." +msgstr "" + +msgid "Flip Down" +msgstr "" + +msgid "Flip Left" +msgstr "" + +msgid "Flip Right" +msgstr "" + +msgid "Flip Up" +msgstr "" + +msgid "Flip down" +msgstr "" + +msgid "Flip left" +msgstr "" + +msgid "Flip right" +msgstr "" + +msgid "Flip up" +msgstr "" + +msgid "Flip viewport when dragging an object to a screen edge" +msgstr "" + +msgid "Flip viewport when moving a window to a screen edge" +msgstr "" + +msgid "Flip viewport when moving the pointer to a screen edge" +msgstr "" + +msgid "Highlight Gradient" +msgstr "" + +msgid "How should a multimonitor configuration be handled" +msgstr "" + +msgid "Move Down With Window" +msgstr "" + +msgid "Move Left With Window" +msgstr "" + +msgid "Move Right With Window" +msgstr "" + +msgid "Move Up With Window" +msgstr "" + +msgid "Move along the wall down" +msgstr "" + +msgid "Move along the wall to the left" +msgstr "" + +msgid "Move along the wall to the next viewport" +msgstr "" + +msgid "Move along the wall to the previous viewport" +msgstr "" + +msgid "Move along the wall to the right" +msgstr "" + +msgid "Move along the wall up" +msgstr "" + +msgid "Move with window along the wall down" +msgstr "" + +msgid "Move with window along the wall to the left" +msgstr "" + +msgid "Move with window along the wall to the right" +msgstr "" + +msgid "Move with window along the wall up" +msgstr "" + +msgid "Move with window within wall" +msgstr "" + +msgid "Move within wall" +msgstr "" + +msgid "Multimonitor behavior" +msgstr "" + +msgid "Outline Color" +msgstr "" + +msgid "Outline color of the switcher window." +msgstr "" + +msgid "Preview Scale" +msgstr "" + +msgid "Radius of the rounded edge" +msgstr "" + +msgid "Second color for the background gradient of the switcher window." +msgstr "" + +msgid "Second color for the thumb gradient of the switcher window." +msgstr "" + +msgid "Second color for the thumb highlight gradient of the switcher window." +msgstr "" + +msgid "Second color of the arrow of the switcher window." +msgstr "" + +msgid "Shadow Color" +msgstr "barva stnu" + +msgid "Show Live Viewport Previews" +msgstr "" + +msgid "Show Viewport Switcher Preview" +msgstr "" + +msgid "Show live viewport previews in switcher window" +msgstr "" + +msgid "Show switcher window while switching viewports" +msgstr "" + +#, no-c-format +msgid "Size of the preview in %" +msgstr "" + +msgid "Switch Target Preview Visibility Time" +msgstr "" + +msgid "Switch all" +msgstr "" + +msgid "Switch separately" +msgstr "" + +msgid "Third color for the background gradient of the switcher window." +msgstr "" + +msgid "Thumb Gradient" +msgstr "" + +msgid "Viewport Switch Preview" +msgstr "" + +msgid "Viewport Switching" +msgstr "" + +msgid "Wall Sliding Duration" +msgstr "" + +msgid "Width of the border between the previews" +msgstr "" + +msgid "Background fill type." +msgstr "" + +msgid "Backgrounds" +msgstr "" + +msgid "Center Tiled" +msgstr "" + +msgid "Color 1" +msgstr "" + +msgid "Color 2" +msgstr "" + +msgid "Draw the desktop wallpaper" +msgstr "" + +#, fuzzy +msgid "Fill or first gradient color." +msgstr "Barva plamen." + +msgid "Fill type" +msgstr "" + +#, fuzzy +msgid "Horizontal gradient" +msgstr "Horizontln skldn" + +msgid "Image" +msgstr "" + +msgid "Image file." +msgstr "" + +msgid "Image position." +msgstr "" + +# hmm ? +#, fuzzy +msgid "Position" +msgstr "Animace zavrn" + +msgid "Scale and Crop" +msgstr "" + +msgid "Scaled" +msgstr "" + +msgid "Second gradient color." +msgstr "" + +msgid "Solid fill" +msgstr "" + +msgid "Tiled" +msgstr "" + +msgid "Vertical gradient" +msgstr "" + +msgid "Wallpaper" +msgstr "" + +msgid "Background Brightness" +msgstr "" + +msgid "Background Saturation" +msgstr "" + +msgid "Background in Widget Mode" +msgstr "" + +msgid "Brightness of non-widget windows in widget modes." +msgstr "" + +msgid "End Widget Mode on Click" +msgstr "" + +msgid "End widget mode when a non-widget window is clicked." +msgstr "" + +msgid "Focus Widget Layer" +msgstr "" + +msgid "Focus a window in the widget layer when activating the layer" +msgstr "" + +msgid "Saturation of non-widget windows in widget modes." +msgstr "" + +msgid "Show or hide widget windows" +msgstr "" + +msgid "Show widget windows on a separate layer" +msgstr "" + +msgid "Time (in s) for fading into/out of the widget layer." +msgstr "" + +msgid "Toggle Widget Display" +msgstr "" + +msgid "Widget Layer" +msgstr "" + +msgid "Widget Windows" +msgstr "" + +msgid "Windows that always should be treated as widgets" +msgstr "" + +msgid "Above others windows" +msgstr "" + +msgid "Below others windows" +msgstr "" + +msgid "Don't show application in pager" +msgstr "" + +msgid "Don't show application in taskbar" +msgstr "" + +msgid "Fixed Size Windows" +msgstr "" + +msgid "Fullscreen" +msgstr "" + +msgid "Fullscreen windows" +msgstr "" + +msgid "Height values" +msgstr "" + +msgid "Matches" +msgstr "" + +msgid "Maximized" +msgstr "" + +#, fuzzy +msgid "Maximized windows" +msgstr "Sytost oken v pozad" + +msgid "No ARGB visuals" +msgstr "" + +msgid "No focus" +msgstr "" + +msgid "Non closable windows" +msgstr "" + +msgid "Non maximizable windows" +msgstr "" + +msgid "Non minimizable windows" +msgstr "" + +msgid "Non movable windows" +msgstr "" + +msgid "Non resizable windows" +msgstr "" + +msgid "Set window as non closable" +msgstr "" + +msgid "Set window as non maximizable" +msgstr "" + +msgid "Set window as non minimizable" +msgstr "" + +msgid "Set window as non movable" +msgstr "" + +msgid "Set window as non resizable" +msgstr "" + +msgid "Set windows rules" +msgstr "" + +msgid "Size rules" +msgstr "" + +msgid "Sized Windows" +msgstr "" + +msgid "Skip pager" +msgstr "" + +msgid "Skip taskbar" +msgstr "" + +msgid "Sticky" +msgstr "" + +msgid "Sticky windows" +msgstr "" + +msgid "Width values" +msgstr "" + +msgid "Window Rules" +msgstr "" + +msgid "Windows that should be resized by default" +msgstr "" + +msgid "Windows that should be treated as not supporting transparency" +msgstr "" + +msgid "Windows will not have focus" +msgstr "" + +msgid "\"On all desktops\" sticky match" +msgstr "" + +msgid "AIGLX Fragment Parameter Fix" +msgstr "" + +msgid "Convert Urgency to Demands Attention" +msgstr "" + +msgid "Firefox Menu Fix" +msgstr "" + +msgid "Fix broken glProgramEnvParameter4f implementation." +msgstr "" + +msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." +msgstr "" + +msgid "Fix screen updates in XGL with fglrx." +msgstr "" + +msgid "Fix window type of Firefox and Thunderbird menus." +msgstr "" + +msgid "Fix window type of OpenOffice.org menus." +msgstr "" + +msgid "Fix window type of notification daemon windows." +msgstr "" + +msgid "Fix window type of various Java windows." +msgstr "" + +msgid "Fix window type of various Qt windows." +msgstr "" + +msgid "Java Window Fix" +msgstr "" + +msgid "Legacy Fullscreen Support" +msgstr "" + +msgid "Make \"on all desktops\" windows \"sticky\"" +msgstr "" + +msgid "" +"Make \"on all desktops\" windows sticky. Sticky windows are visible on all " +"viewports." +msgstr "" + +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + +msgid "Make Wine and legacy applications fullscreen properly." +msgstr "" + +msgid "Metacity-like workarounds." +msgstr "" + +msgid "Notification Daemon Fix" +msgstr "" + +msgid "OpenOffice.org Menu Fix" +msgstr "" + +msgid "Qt Window Fix" +msgstr "" + +msgid "Window stickyness" +msgstr "" + +msgid "Windows on all desktops that should be made sticky" +msgstr "" + +msgid "Workarounds" +msgstr "" + +#~ msgid "Automatic" +#~ msgstr "Automaticky" + +#~ msgid "Beam" +#~ msgstr "Paprsek" + +#~ msgid "Beam Color" +#~ msgstr "Barva paprsku" + +#~ msgid "Beam Life" +#~ msgstr "ivotnost paprsku" + +#~ msgid "Beam Slowdown" +#~ msgstr "Zpomalen paprsku" + +#~ msgid "Beam Spacing" +#~ msgstr "Odstup paprsku" + +# slouží jako kontext k paprsku? +#, fuzzy +#~ msgid "Beam Up" +#~ msgstr "Paprsek" + +#~ msgid "Beam Width" +#~ msgstr "ka paprsku" + +#~ msgid "Beam color." +#~ msgstr "Barva paprsku." + +#~ msgid "Beam life." +#~ msgstr "ivotnost paprsku." + +#~ msgid "Beam slowdown." +#~ msgstr "Zpomalen paprsku." + +#~ msgid "Beam width." +#~ msgstr "ka paprsku." + +# Opět nevím kam to patří - neznám správný kontext +#, fuzzy +#~ msgid "Burn" +#~ msgstr "Vzplanut" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Explode" +#~ msgstr "Exploze" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Smr pdu kousk Domina." + +# Možná tu bude lepší Vzplanutí +#, fuzzy +#~ msgid "Fire" +#~ msgstr "Ohe" + +#~ msgid "Fire Smoke" +#~ msgstr "Kou" + +#~ msgid "Fire constant speed" +#~ msgstr "Rychlost \"vzplanut\"" + +#~ msgid "Fire direction" +#~ msgstr "Smr vzplanut" + +#~ msgid "Fire direction." +#~ msgstr "Smt Vzplanut." + +#~ msgid "Fire smoke." +#~ msgstr "Kou pi vzplanut." + +#~ msgid "Fold" +#~ msgstr "Poskldat" + +#~ msgid "Fold Direction" +#~ msgstr "Smr skldn" + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonaln" + +#~ msgid "In" +#~ msgstr "Dovnit" + +#~ msgid "In-out" +#~ msgstr "Dovnit-ven" + +#, fuzzy +#~ msgid "Leaf Spread" +#~ msgstr "Destikovit" + +#~ msgid "Left-right" +#~ msgstr "Zleva do prava" + +#, fuzzy +#~ msgid "Length of airplane's flying path." +#~ msgstr "Dlka letu vlatovky" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Vzat dlku efektu ohn na vku okna" + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Smr(y) pohybu kousk okna" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Poet stic ohn" + +#~ msgid "Number of fire particles." +#~ msgstr "Poet stic ohn." + +#~ msgid "Rotation Angle" +#~ msgstr "Smr oten" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "hel natoen animovanch st okna(ve stupnch)" + +#~ msgid "Skewer" +#~ msgstr "Bodec" + +#~ msgid "Skewer Direction" +#~ msgstr "Smr Bodce" + +#~ msgid "Spacing between beams." +#~ msgstr "Msto mezi paprsky" + +#~ msgid "Up-down" +#~ msgstr "Nahor-dol" + +#~ msgid "Animation Speed" +#~ msgstr "Rychlost animace" + +#~ msgid "Change the speed of the 3D animation" +#~ msgstr "Zmnit rychlost 3D animace" + +#~ msgid "Misc. options" +#~ msgstr "Dal nastaven" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/de.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/de.po --- compiz-fusion-plugins-unsupported-0.7.6/po/de.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/de.po 2008-09-17 14:29:32.000000000 +0100 @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: plugins 0.0.1\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:50+0530\n" -"PO-Revision-Date: 2008-02-20 09:57+0100\n" -"Last-Translator: Danny Baumann \n" +"POT-Creation-Date: 2008-09-15 14:45+0530\n" +"PO-Revision-Date: 2008-07-25 21:06+0200\n" +"Last-Translator: Philipp B. \n" "Language-Team: Compiz Fusion translators \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" msgstr "3D-Modus nur bei manueller Rotation mit der Maus" @@ -54,17 +54,17 @@ msgid "" "Change the amount of space between the windows (in percent of the cube size)." msgstr "" -"Verändert den Abstand zwischen den Fenstern. (prozentual auf Würfelgröße " -"bezogen)" +"Verändert den Abstand zwischen den Fenstern (prozentual auf Würfelgröße " +"bezogen)." # ist mit 'window's depth' hier der schatten gemeint? oder geht es um tiefenwirkung innerhalb des fensters? msgid "Color of an inactive window's depth" -msgstr "" +msgstr "Farbe der Abrundung inaktiver Fenster" # siehe eins vorher #, fuzzy msgid "Color of the active window's depth" -msgstr "Schaltet die Negierung des Fensterinhaltes des aktiven Fensters um." +msgstr "Farbe der Abrundung des aktiven Fensters" msgid "Elevates windows while rotating the cube" msgstr "Hebt die Fenster während des Rotierens des Würfels an" @@ -92,7 +92,6 @@ msgid "Window Color (Active)" msgstr "Farbe des aktiven Fensters" -#, fuzzy msgid "Window Color (Inactive)" msgstr "Farbe des inaktiven Fensters" @@ -125,6 +124,12 @@ msgid "Brightness of faded windows" msgstr "Helligkeit von verblassten Fenstern" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -155,12 +160,6 @@ msgid "Window types that should be Opacified." msgstr "Fenstertypen, die sichtbar sein sollen" -msgid "Airplane" -msgstr "Papierflugzeug" - -msgid "Airplane Flying Path Length" -msgstr "Länge des vom Flugzeug zurückgelegten Weges" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -169,23 +168,6 @@ "ignoriert. Wenn 'Keine' als Animation für ein bestimmtes Ereignis ausgewählt " "wurde, wird dieses Ereignis nicht animiert." -#, fuzzy -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Maximale Auslenkung der horizontalen Wellen, relativ zur Fensterbreite. " -"Negative Werte führen zur entgegengesetzten Richtung." - -#, fuzzy -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitude (Umfang des Bogens beim Zusammenfalten) des gebogenen " -"Zusammenfaltens im Verhältnis zur Breite des Fensters. Negative Werte " -"bewirken eine Biegung nach außen." - msgid "Angle of window at the end of the animation." msgstr "Fensterwinkel am Animationsende" @@ -195,10 +177,6 @@ msgid "Animation Time Step" msgstr "Animations-Zeitschritt" -# FIXED - Intense Effects == aufregende Effekte (analog zu OOo) -msgid "Animation Time Step For Intense Effects" -msgstr "Animations-Zeitschritt für aufregende Effekte" - msgid "Animation duration in milliseconds for close effect." msgstr "Animationsdauer (in ms) für Effekt 'Fenster schließen'" @@ -217,54 +195,12 @@ msgid "Animations" msgstr "Animationen" -msgid "Automatic" -msgstr "Automatisch" - msgid "Away Angle" msgstr "" msgid "Away Position" msgstr "" -msgid "Beam" -msgstr "Teleporter" - -# Vielleicht ein bisschen gewagt aber 'Teleportation' wäre die korrekte Übersetzung - zu lang? -msgid "Beam Color" -msgstr "Farbe der Teleportation" - -msgid "Beam Life" -msgstr "Lebensdauer der Teleportation" - -msgid "Beam Slowdown" -msgstr "Verlangsamung der Teleportations-Partikel" - -msgid "Beam Spacing" -msgstr "Zwischenraum" - -# Star-Trek-Referenz im Deutschen sowieso nicht machbar -msgid "Beam Up" -msgstr "Teleporter" - -msgid "Beam Width" -msgstr "Breite der Teleportation" - -msgid "Beam color." -msgstr "Farbe der Teleportation." - -msgid "Beam life." -msgstr "Lebensdauer der Teleportation." - -msgid "Beam slowdown." -msgstr "Verlangsamung der Teleportations-Partikel." - -msgid "Beam width." -msgstr "Breite der Teleportation." - -# Da der Effekt im Original einen eigenen Namen, trifft's 'Verbrennen' besser als 'Feuer' -msgid "Burn" -msgstr "Verbrennen" - msgid "Close Animation" msgstr "Animation 'Schließen'" @@ -292,7 +228,8 @@ msgid "Curved Fold" msgstr "Gebogen Zusammenfalten" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Bogen-Amplitude" msgid "Dodge" @@ -303,15 +240,6 @@ msgid "Dodge Gap Ratio" msgstr "Zeitversetzung zwischen den Fenstern" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Fallrichtung der Dominosteine" - -msgid "Down" -msgstr "Runter" - msgid "Dream" msgstr "Traum" @@ -321,78 +249,22 @@ msgid "Effect Settings" msgstr "Effekt-Einstellungen" -msgid "Explode" -msgstr "Explodieren" - msgid "Fade" msgstr "Ein-/Ausblenden" -msgid "Falling direction for Domino pieces." -msgstr "Richtung, in die die Dominosteine fallen." - -msgid "Fire" -msgstr "Feuer" - -msgid "Fire Particle Color" -msgstr "Farbe der Feuerpartikel" - -msgid "Fire Particle Life" -msgstr "Lebenszeit der Feuerparktikel" - -msgid "Fire Particle Size" -msgstr "Größe der Feuerpartikel" - -msgid "Fire Particle Slowdown" -msgstr "Verlangsamung der Feuerpartikel" - -msgid "Fire Smoke" -msgstr "Feuerrauch" - -msgid "Fire constant speed" -msgstr "Konstante Geschwindigkeit für Feuerpartikel" - -msgid "Fire direction" -msgstr "Feuer-Richtung" - -msgid "Fire direction." -msgstr "Feuer-Richtung" - -msgid "Fire particle color." -msgstr "Farbe der Feuerparktikel." - -msgid "Fire particle life." -msgstr "Lebenszeit der Feuerparktikel." - -msgid "Fire particle size." -msgstr "Größe der Feuerpartikel." - -msgid "Fire particle slowdown." -msgstr "Verlangsamung der Feuerpartikel." - -msgid "Fire smoke." -msgstr "Fügt dem Feuer Rauch hinzu" - msgid "Fixed window interior during the Rollup animation." msgstr "Der Fensterinhalt bewegt sich beim einrollen nicht mit" -msgid "Fly to TaskBar on Minimize" -msgstr "" - msgid "Focus Animation" msgstr "Fokusanimation" msgid "Focus Effect" msgstr "Effekt für das Fokussieren von Fenstern" -msgid "Fold" -msgstr "Falten" - -msgid "Fold Direction" -msgstr "Falt-Richtung" - -# siehe 'Razr' -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Ausrichtung des Razr-Effekts" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "Gleiten 1" @@ -400,44 +272,20 @@ msgid "Glide 2" msgstr "Gleiten 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Zufällige Farben für die Feuerpartikel, auch bekannt als Mystisches Feuer." - -msgid "Hexagonal" -msgstr "Sechseckig" - msgid "Horizontal Folds" msgstr "Horizontales Zusammenfalten" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Amplitude des horizontalen Zusammenfaltens" +#, fuzzy msgid "How spring-like the Sidekick animation should be." -msgstr "" +msgstr "Stellt ein wie federnd die Sidekick Animation ist" msgid "How spring-like the Zoom animation should be." msgstr "Wie federnd die Zoom-Animation sein soll." -# FIXME: Herein und Heraus sind noch nicht optimal -msgid "In" -msgstr "Herein" - -msgid "In-out" -msgstr "Herein/Heraus" - -msgid "Leaf Spread" -msgstr "" - -msgid "Left" -msgstr "Links" - -msgid "Left-right" -msgstr "Links/Rechts" - -msgid "Length of airplane's flying path." -msgstr "" - msgid "Magic Lamp" msgstr "Wunderlampe" @@ -459,9 +307,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "" -msgid "Make fire effect duration be dependent on window height." -msgstr "Dauer des Feuereffekts von der Fensterhöhe abhängig machen." - msgid "Minimize Animation" msgstr "Animation 'Minimieren'" @@ -471,25 +316,16 @@ msgid "Minimize/Unminimize Only" msgstr "Nur bei Minimieren/Un-Minimieren" -msgid "Movement direction(s) for window pieces." -msgstr "Richtung, in die die Fensterteile fallen." - msgid "None" msgstr "Nichts" -msgid "Number Of Fire Particles" -msgstr "Anzahl der Feuerpartikel" - #, fuzzy msgid "Number of Horizontal Folds" msgstr "Anzahl der horizontalen Faltungen" -msgid "Number of fire particles." -msgstr "Anzahl der Feuerpartikel" - -#, no-c-format +#, fuzzy, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." -msgstr "" +msgstr "Anzahl der Umdrehungen für den Sidekick (plus oder minus 10% Zufall)" msgid "Off" msgstr "Aus" @@ -501,9 +337,8 @@ msgid "On open/close, move magic lamp ending point with the mouse pointer." msgstr "Endpunkt der Wunderlampe folgt dem Mauszeiger" -#, fuzzy msgid "On open/close, move vacuum ending point with the mouse pointer." -msgstr "Endpunkt des Vakuums folgt dem Mauszeiger" +msgstr "Endpunkt des Staubsauger-Effekts folgt dem Mauszeiger" msgid "Open Animation" msgstr "Animation 'Öffnen'" @@ -517,9 +352,6 @@ msgid "Options" msgstr "Optionen" -msgid "Out" -msgstr "Heraus" - #, fuzzy msgid "Pool" msgstr "Effektsammlung" @@ -527,8 +359,8 @@ #, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." -msgstr "Effektsammlung, aus der zufällig gewählt wird" +"to use all effects." +msgstr "Effektsammlung, aus der gewählt wird, falls Zufällig aktiviert ist." msgid "Random" msgstr "Zufällig" @@ -539,38 +371,15 @@ msgid "Random Effects" msgstr "Zufällige Effekte" -msgid "Randomly Colored Fire" -msgstr "Zufällige Feuerfarbe" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" -# bei 'Razr' belassen oder 'Rasierklinge'? -msgid "Razr" -msgstr "" - -msgid "Razr Fold Opening Direction" -msgstr "" - -msgid "Rectangular" -msgstr "Rechteckig" - -msgid "Right" -msgstr "Rechts" - msgid "Roll Up" msgstr "Aufrollen" msgid "Rollup Fixed Interior" msgstr "Von unten aufrollen" -msgid "Rotation Angle" -msgstr "Rotationswinkel" - -# FIXME: besser Bruchstücke statt Teile? -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Rotationswinkel für animierte Fensterteile (in Grad)." - msgid "Shade Animation" msgstr "Animation 'Aufrollen'" @@ -585,19 +394,9 @@ msgid "Sidekick Number of Rotations" msgstr "Trudeln Anzahl der Drehungen" -msgid "Sidekick Springiness" -msgstr "" - -msgid "Skewer" -msgstr "" - -#, fuzzy -msgid "Skewer Direction" -msgstr "Schnee-Richtung" - #, fuzzy -msgid "Spacing between beams." -msgstr "Der Abstand zwischen den Vorschaubildern." +msgid "Sidekick Springiness" +msgstr "Sidekick Federung" #, fuzzy msgid "" @@ -607,21 +406,11 @@ "Anfangsbreite des 'Öffen' Effekts und Endbreite des 'Schließen' Effekts der " "Wunderlampe" -#, fuzzy msgid "" "Starting width of open effect and ending width of close effect for Vacuum." msgstr "" "Anfangsbreite des 'Öffen' Effekts und Endbreite des 'Schließen' Effekts des " -"Vakuums" - -msgid "Tessellation Type" -msgstr "Tesselations-Typ" - -msgid "Tessellation type for exploding window pieces." -msgstr "Tesselations-Typ für Explosions-Effekt" - -msgid "Tessellation type for window pieces." -msgstr "Tesselations-Typ für Fensterteile" +"Staubsauger-Effekts" msgid "" "The amount of time in milliseconds between each render of the animation. The " @@ -630,29 +419,6 @@ "Zeit in Millisekunden zwischen den einzelnen Berechungen der Animation. Je " "höher dieser Wert, desto abgehackter sind die Animationen." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -#, fuzzy -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe eines " -"Gitters erzeugt. Geben sie die Höhe der einzelnen Gitterzeilen in Pixeln an." - -#, fuzzy -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe eines " -"Gitters erzeugt. Geben sie die Breite der einzelnen Gitterzeilen in Pixeln " -"an." - msgid "The animation effect shown when closing a window." msgstr "Beim Schließen eines Fensters verwendete Animation" @@ -668,43 +434,19 @@ msgid "The animation effect shown when shading a window." msgstr "Beim Aufrollen eines Fensters verwendete Animation" -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe eines " -"Gitters erzeugt. Geben sie die Anzahl der Gitterzellen an, in die das " -"Fenster vertikal zerlegt werden soll." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe eines " -"Gitters erzeugt. Geben sie die Anzahl der einzelnen Gitterzeilen an, in die " -"das Fenster vertikal zerlegt werden soll." - -#, fuzzy msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "Maximaler Auschlag der Wellenbewegungen für den Wunderlampen-Effekt." msgid "The maximum number of waves for Magic Lamp." msgstr "Maximale Anzahl der Wellenbewegungen für den Wunderlampen-Effekt." -#, fuzzy msgid "The minimum amplitude (size of the waves) Magic Lamp will have." msgstr "Minimaler Ausschlag der Wellenbewegungen für den Wunderlampen-Effekt." -#, fuzzy msgid "" "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "" -"Anzahl der horizontalen Faltungen bei der 'Horizontal Falten' Animation" - -# Ich kenne den Kontext nicht genau, deshalb bin ich mir mit der Übersetzung nicht zu sicher -#, fuzzy -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Auschlag der Wellen relativ zur Fenstergröße" +"Anzahl der horizontalen Faltungen für die 'Horizontal Falten' Animation" msgid "The width of the wave relative to the window height." msgstr "Breite der Welle in Relation zur Fensterbreite" @@ -712,36 +454,14 @@ msgid "The windows that will be animated." msgstr "Fenster, die animiert werden sollen" -msgid "Thickness" -msgstr "Dicke" - -msgid "Thickness of Animated Polygons" -msgstr "Dicke der animierten Polygone" - -msgid "Thickness of Exploding Polygons" -msgstr "Dicke der explodierenden Polygone" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Dicke der bei der Animation entstehenden Fensterteile (in Pixeln)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Dicke der bei der Explosion entstehenden Fensterteile (in Pixeln)." - -msgid "Up" -msgstr "Hoch" - -msgid "Up-down" -msgstr "Hoch/Runter" - msgid "Use various animations as window effects" msgstr "Verschiedene Animationen als Fenstereffekte verwenden" msgid "Vacuum" msgstr "Vakuum" -#, fuzzy msgid "Vacuum Grid Y Resolution" -msgstr "Vakuum Gitternetz Y Auflösung" +msgstr "Staubsauger-Effekt: Vertikale Auflösung des Gitternetzes" msgid "Vacuum Open Start Width" msgstr "" @@ -755,57 +475,66 @@ "of points used to define the curves. The higher the number, the smoother the " "curves. However there will be a loss of performance (CPU usage increases)." msgstr "" +"Auflösung des Vertexgitters für die Wunderlampe (nur Y Dimension). Dies " +"beschreibt die Anzahl der Punkte, die die Kurve beschreiben. Je größer die " +"Anzahl desto feiner die Kurve. Jedoch kostet dies mehr Leistung (mehr CPU " +"Auslastung)." msgid "" "Vertex grid resolution for Vacuum (Y dimension only). This is the number of " "points used to define the curves. The higher the number, the smoother the " "curves. However there will be a loss of performance (CPU usage increases)." msgstr "" +"Auflösung des Vertexgitters für Vakuum (nur Y Dimension). Dies beschreibt " +"die Anzahl der Punkte, die die Kurve beschreiben. Je größer die Anzahl desto " +"feiner die Kurve. Jedoch kostet dies mehr Leistung (mehr CPU Auslastung)." msgid "Wave" msgstr "Welle" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Wellen-Amplitude" msgid "Wave Width" msgstr "Wellenbreite" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " "effect." msgstr "" +"Sollen die Fenster zur Taskleiste zoomen, falls beim Minimieren der Effekt " +"Gebogenes Zusammenfalten benutzt wird?" msgid "" "Whether the window should zoom to taskbar when minimized with Dream effect." msgstr "" +"Sollen die Fenster zur Taskleiste zoomen, falls beim Minimieren der Effekt " +"Traum benutzt wird?" msgid "" "Whether the window should zoom to taskbar when minimized with Glide 1 effect." msgstr "" +"Sollen die Fenster zur Taskleiste zoomen, falls beim Minimieren der Effekt " +"Gleiten 1 benutzt wird?" msgid "" "Whether the window should zoom to taskbar when minimized with Glide 2 effect." msgstr "" +"Sollen die Fenster zur Taskleiste zoomen, falls beim Minimieren der Effekt " +"Gleiten 2 benutzt wird?" msgid "" "Whether the window should zoom to taskbar when minimized with Horizontal " "Folds effect." msgstr "" - -msgid "Window Grid Height" -msgstr "Fenstergitterhöhe" - -msgid "Window Grid Width" -msgstr "Fenstergitterbreite" - -#, fuzzy -msgid "Window folding direction." -msgstr "Fallrichtung der Dominosteine" +"Sollen die Fenster zur Taskleiste zoomen, falls beim Minimieren der Effekt " +"Horizontales Zusammenfalten benutzt wird?" msgid "Window that should animate with this effect when focused." msgstr "Fenster, für die dieser Effekt beim Fokussieren verwendet werden soll." @@ -813,22 +542,18 @@ msgid "Window that should animate with this effect when shaded." msgstr "Fenster, für die dieser Effekt beim Aufrollen verwendet werden soll." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" - msgid "Zoom" msgstr "Zoom" msgid "Zoom Springiness" -msgstr "" +msgstr "Federung beim Zoomen" msgid "Zoom from Center" msgstr "Aus der Mitte zoomen" +#, fuzzy msgid "Zoom from center when playing the Sidekick animation." -msgstr "" +msgstr "Bei Sidekick-Animation von der Mitte aus zoomen." msgid "Zoom from center when playing the Zoom animation." msgstr "" @@ -839,8 +564,9 @@ msgid "Colors" msgstr "Farben" +#, fuzzy msgid "Cube Atlantis" -msgstr "" +msgstr "Atlantis Würfel" msgid "Dolphin size" msgstr "" @@ -933,83 +659,12 @@ msgstr "Y-Position" #, fuzzy -msgid "Brightness Decrease" -msgstr "Helligkeit" - -#, fuzzy -msgid "Brightness Increase" -msgstr "Helligkeit" - -#, fuzzy -msgid "Brightness Step" -msgstr "Helligkeit" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "Helligkeit von verblassten Fenstern" +msgid "Bicubic filter" +msgstr "Filter umschalten" -msgid "Brightness and Saturation adjustments" +msgid "Bicubic texture filtering" msgstr "" -#, fuzzy -msgid "Brightness settings" -msgstr "Helligkeit selektierter Fenster" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Helligkeit von verblassten Fenstern" - -#, fuzzy -msgid "Brightness window values" -msgstr "Helligkeit von verblassten Fenstern" - -#, fuzzy -msgid "Brightness windows" -msgstr "Helligkeit von verblassten Fenstern" - -msgid "General" -msgstr "Allgemein" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "Sättigung" - -#, fuzzy -msgid "Saturation Increase" -msgstr "Sättigung" - -#, fuzzy -msgid "Saturation Step" -msgstr "Sättigung" - -#, fuzzy -msgid "Saturation settings" -msgstr "Sättigung der selektierten Fenster" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "Sättigung von verblassten Fenstern" - -#, fuzzy -msgid "Saturation window values" -msgstr "Sättigung von verblassten Fenstern" - -#, fuzzy -msgid "Saturation windows" -msgstr "Sättigung von verblassten Fenstern" - -#, fuzzy -msgid "Window specific" -msgstr "Sichtbarkeit der Fenster" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "Fenster, denen beim Öffnen eine bestimmte Größe zugewiesen werden soll" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "Fenster, denen beim Öffnen eine bestimmte Größe zugewiesen werden soll" - msgid "Color filter" msgstr "Farbfilter" @@ -1095,6 +750,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Befehl zum Starten des Fenstermanagers. HIER NICHT COMPIZ EINTRAGEN!" +msgid "Above" +msgstr "Über" + msgid "Adjust bottom face image to rotation" msgstr "" @@ -1119,6 +777,19 @@ msgid "Appearance" msgstr "Aussehen" +#, fuzzy +msgid "Aspect ratio" +msgstr "Seitenverhältnis" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Automatischer Zoom" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Automatischer Zoom nur bei manuellem Rotieren" + msgid "Behaviour" msgstr "Verhalten" @@ -1147,20 +818,64 @@ msgid "Color of bottom face of the cube" msgstr "Farbe der unteren Würfelfläche" +msgid "Color of the ground (far)." +msgstr "Farbe für den Boden (weit entfernt)" + +msgid "Color of the ground (near)." +msgstr "Farbe für den Boden (nah)" + msgid "Color of top face of the cube" msgstr "Farbe der oberen Würfelfläche" #, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Compiz Würfelreflektion" + +#, fuzzy msgid "Cube Bottom Color" msgstr "Rahmenfarbe der Tab-Leiste" -msgid "Cube Caps" -msgstr "" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Reflektionen für Fensterrahmen" #, fuzzy msgid "Cube Top Color" msgstr "Rahmenfarbe der Tab-Leiste" +msgid "Cube caps" +msgstr "" + +# FIXME +#, fuzzy +msgid "Cylinder" +msgstr "Reinigen" + +#, fuzzy +msgid "Deform caps" +msgstr "Dauer" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Automatischer Zoom nur bei manuellem Rotieren" + +#, fuzzy +msgid "Deformation" +msgstr "Dauer" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "Dauer" + +msgid "Distance" +msgstr "Entfernung" + msgid "Draw bottom face" msgstr "" @@ -1173,12 +888,38 @@ msgid "Draw top face of the cube" msgstr "" +#, fuzzy +msgid "Enabled" +msgstr "Aktivieren" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Compiz Würfelreflektion" + msgid "Go back to previous image for bottom face of the cube" msgstr "" msgid "Go back to previous image for top face of the cube" msgstr "" +msgid "Ground color(far)" +msgstr "Bodenfarbe (weit weg)" + +msgid "Ground color(near)" +msgstr "Bodenfarbe (nah)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensivität" + +msgid "Jumpy" +msgstr "Sprunghaft" + +msgid "Jumpy reflection" +msgstr "Sprunghafte Reflektion" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1187,6 +928,21 @@ msgstr "" #, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Seitenverhältnis der Expo-Wand" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Seitenverhältnis der Expo-Wand" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Oberes Bild an Drehung anpassen" + +#, fuzzy msgid "Next bottom image" msgstr "Unten rechts abrunden" @@ -1200,8 +956,23 @@ msgid "Prev top image" msgstr "" -msgid "Render images on top and bottom of the cube" -msgstr "" +msgid "Reflection" +msgstr "Reflektionen" + +msgid "Reflection ground size" +msgstr "Größe des Bodens für die Reflektion" + +msgid "Reflection ground size." +msgstr "Größe des Bodens für die Reflektion." + +msgid "Reflection intensity" +msgstr "Reflektionsintensität" + +msgid "Reflection mode" +msgstr "Reflektions-Modus" + +msgid "Reflection mode." +msgstr "Reflektions-Modus" msgid "Scale bottom image" msgstr "" @@ -1216,70 +987,36 @@ msgstr "" #, fuzzy +msgid "Sphere" +msgstr "Geschwindigkeit" + +#, fuzzy msgid "Top image files" msgstr "Logo-Datei." -msgid "Above" -msgstr "Über" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Automatischer Zoom" +msgid "Zoom out automatically only on mouse rotate." +msgstr "" +"Automatischer Zoom nur bei manueller Rotation des Würfels mit der Maus." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Automatischer Zoom nur bei manuellem Rotieren" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Automatisch herauszoomen, um den Würfel dem Bildschirm anzupassen." -msgid "Color of the ground (far)." -msgstr "Farbe für den Boden (weit entfernt)" +msgid "Cube Caps" +msgstr "" -msgid "Color of the ground (near)." -msgstr "Farbe für den Boden (nah)" +msgid "Render images on top and bottom of the cube" +msgstr "" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz Würfelreflektion" +msgstr "Würfelreflektion" msgid "Cube Reflection" msgstr "Würfelreflektion" -msgid "Distance" -msgstr "Entfernung" - -msgid "Ground color(far)" -msgstr "Bodenfarbe (weit weg)" - -msgid "Ground color(near)" -msgstr "Bodenfarbe (nah)" - -msgid "Intensity" -msgstr "Intensivität" - -msgid "Jumpy" -msgstr "Sprunghaft" - -msgid "Jumpy reflection" -msgstr "Sprunghafte Reflektion" - -msgid "Reflection ground size" -msgstr "Größe des Bodens für die Reflektion" - -msgid "Reflection ground size." -msgstr "Größe des Bodens für die Reflektion." - -msgid "Reflection intensity" -msgstr "Reflektionsintensität" - -msgid "Reflection mode" -msgstr "Reflektions-Modus" - -msgid "Reflection mode." -msgstr "Reflektions-Modus" - -msgid "Zoom out automatically only on mouse rotate." -msgstr "" -"Automatischer Zoom nur bei manueller Rotation des Würfels mit der Maus." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Automatisch herauszoomen, um den Würfel dem Bildschirm anzupassen." - msgid "Animation used when switching to expo mode" msgstr "Beim Wechsel in den und aus dem Expo-Modus verwendete Animation." @@ -1304,10 +1041,6 @@ msgid "Curve strength" msgstr "Stärke der Bewegungsunschärfe." -#, fuzzy -msgid "Deformation" -msgstr "Dauer" - # FIXME - is wall really == Wand here? -- Maybe we could use Ebene, Tafel or Brett here? #, fuzzy msgid "Deformation of the expo wall" @@ -1409,9 +1142,6 @@ msgid "Previous viewport" msgstr "Vorherige Arbeitsfläche" -msgid "Reflection" -msgstr "Reflektionen" - #, fuzzy msgid "Reflection Scale" msgstr "Reflektionsbild" @@ -1522,6 +1252,9 @@ msgid "Center the mouse" msgstr "In der Bildschirmmitte" +msgid "Dynamic mouse pointer scale" +msgstr "" + msgid "Enable focus tracking" msgstr "" @@ -1584,18 +1317,14 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Kleinster Größen-Faktor" #, fuzzy msgid "Mouse Behaviour" msgstr "Verhalten der Maus" -msgid "Mouse Poll Interval" -msgstr "" - msgid "Mouse Restrain Margin" msgstr "" @@ -1676,12 +1405,20 @@ msgid "Speed" msgstr "Geschwindigkeit" +msgid "Static mouse pointer scale" +msgstr "" + msgid "Sync Mouse" msgstr "" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" @@ -1697,11 +1434,25 @@ msgid "Use linear filter when zoomed in" msgstr "" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "Aus der Mitte zoomen" #, fuzzy +msgid "Zoom Box" +msgstr "Zoom" + +#, fuzzy msgid "Zoom In" msgstr "Zoom" @@ -1734,6 +1485,9 @@ msgid "Zoom factor" msgstr "Zoomdauer" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" @@ -1788,6 +1542,13 @@ msgid "Toggle window fake ARGB." msgstr "Aktiviere pseudo-ARGB für das momentan aktive Fenster." +#, fuzzy +msgid "Add Particle" +msgstr "Lebenszeit der Feuerparktikel" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Hintergrundhelligkeit" @@ -1801,9 +1562,37 @@ msgid "Clear (button)" msgstr "Reinigen (Maus)" -# FIXME -msgid "Clear (key)" -msgstr "Reinigen (Tastatur)" +# FIXME +msgid "Clear (key)" +msgstr "Reinigen (Tastatur)" + +msgid "Fire Particle Color" +msgstr "Farbe der Feuerpartikel" + +msgid "Fire Particle Life" +msgstr "Lebenszeit der Feuerparktikel" + +msgid "Fire Particle Size" +msgstr "Größe der Feuerpartikel" + +msgid "Fire Particle Slowdown" +msgstr "Verlangsamung der Feuerpartikel" + +msgid "Fire particle color." +msgstr "Farbe der Feuerparktikel." + +msgid "Fire particle life." +msgstr "Lebenszeit der Feuerparktikel." + +msgid "Fire particle size." +msgstr "Größe der Feuerpartikel." + +msgid "Fire particle slowdown." +msgstr "Verlangsamung der Feuerpartikel." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Zufällige Farben für die Feuerpartikel, auch bekannt als Mystisches Feuer." #, fuzzy msgid "Initiate (button)" @@ -1828,6 +1617,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Zeichne Feuer oder andere Partikel auf den Bildschirm" +msgid "Randomly Colored Fire" +msgstr "Zufällige Feuerfarbe" + msgid "Cube Gears" msgstr "" @@ -1926,6 +1718,9 @@ msgid "Font Size" msgstr "Textgröße" +msgid "General" +msgstr "Allgemein" + msgid "Glass" msgstr "Glas" @@ -2564,9 +2359,17 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "" + msgid "Mouse position polling" msgstr "" @@ -3321,8 +3124,13 @@ msgid "Background color of the window title" msgstr "Hintergrundfarbe für Fenstertitel" -msgid "Close Windows In Scale" -msgstr "Fenster schließen" +#, fuzzy +msgid "Close Window" +msgstr "Fenster anordnen" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Fenster während des 'Skalierte Fenster'-Modus schließen" msgid "Close windows while in scale mode" msgstr "Fenster während des 'Skalierte Fenster'-Modus schließen" @@ -3330,9 +3138,18 @@ msgid "Color used for highlighting the hovered window" msgstr "Farbe, die zum Hervorheben des aktuellen Fensters verwendet wird" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Verwende Fensterhervorhebung" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Farbe des Fenstertitels" @@ -3349,6 +3166,10 @@ msgid "Highlights the hovered window with the given color" msgstr "Hebt das aktuelle Fenster in der gewählten Farbe hervor." +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + #, fuzzy msgid "No display" msgstr "Fenstertitelanzeige" @@ -3359,6 +3180,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organisch (EXPERIMENTELL)" +#, fuzzy +msgid "Pull Window" +msgstr "Erlaubt die Bewegung von Fenstern an bestimmte Positionen" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Fenster während des 'Skalierte Fenster'-Modus schließen" + msgid "Scale Addons" msgstr "Scale-Erweiterungen" @@ -3385,6 +3214,10 @@ msgid "Window Layout Mode" msgstr "Modus für Fensteranordnung" +#, fuzzy +msgid "Window Pull" +msgstr "Regeln für Fenster" + msgid "Window Title" msgstr "Fenstertitel" @@ -3396,10 +3229,12 @@ msgid "Window title display in scale mode" msgstr "Fenstertitelanzeige im Skaliermodus" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "Fenster zoomen" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "Fenster in 'Fenster skalieren'-Modus auf Originalgröße zoomen" msgid "Filter Case Insensitive" @@ -3685,18 +3520,30 @@ msgid "Direction of window movement" msgstr "Richtung der Fensterbewegungen" +msgid "Down" +msgstr "Runter" + +msgid "Left" +msgstr "Links" + msgid "Left/Right" msgstr "Links/Rechts" msgid "Movement Direction" msgstr "Richtung der Bewegung" +msgid "Right" +msgstr "Rechts" + msgid "Show desktop" msgstr "Zeige Desktop" msgid "To Corners" msgstr "Zu den Ecken" +msgid "Up" +msgstr "Hoch" + msgid "Up/Down" msgstr "Hoch/Runter" @@ -3972,80 +3819,343 @@ msgid "Snow Speed" msgstr "Schneegeschwindigkeit" -msgid "Snow Textures" -msgstr "Schneetexturen" +msgid "Snow Textures" +msgstr "Schneetexturen" + +msgid "Snow Toggle" +msgstr "Aktiviere Schnee" + +msgid "Snow for Compiz" +msgstr "Schnee für Compiz" + +msgid "Snow is drawn above windows" +msgstr "Der Schnee wird über alle Fenster gezeichnet" + +msgid "Snow textures" +msgstr "Schneetexturen" + +msgid "Snow toggle key" +msgstr "Tastenkombination um Schnee zu aktivieren" + +msgid "Speed of falling snow" +msgstr "Geschwindigkeit mit der der Schnee fällt" + +msgid "Textures" +msgstr "Texturen" + +msgid "Top to Bottom" +msgstr "Von oben nach unten" + +msgid "Update Delay" +msgstr "Verzögerung bis zum nächsten" + +msgid "A simple splash plugin" +msgstr "Ein einfaches Plugin, dass einen Ladebildschirm bereitstellt." + +msgid "Background File" +msgstr "Hintergrundbild" + +msgid "Background brightness." +msgstr "Hintergundhelligkeit" + +msgid "Background image File." +msgstr "Hintergrundbild-Datei" + +msgid "Background saturation." +msgstr "Hintergundsättigung" + +msgid "Display In/Out Time." +msgstr "Anzeigezeit" + +msgid "Display Time" +msgstr "Anzeigezeit" + +msgid "Images" +msgstr "Bilder" + +msgid "Initiate Splash" +msgstr "Initiiere Ladebildschirm" + +msgid "Logo File" +msgstr "Logo-Datei" + +msgid "Logo image File." +msgstr "Logo-Datei." + +msgid "Show on first start" +msgstr "Bei Programmstart anzeigen" + +msgid "Show splash on first start." +msgstr "Ladebildschirm beim Programmstart anzeigen" + +msgid "Splash" +msgstr "Ladebildschirm" + +msgid "Start Splash." +msgstr "Zeige Ladebildschirm." + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "Sichtbarkeit (in Prozent) von nicht ausgewählten Fenstern im Ring" + +#, fuzzy +msgid "Behavior" +msgstr "Verhalten" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Hintergrund während der Anzeige des Ringes abdunkeln" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Fensterbreite" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Aktiviere ein bestimmtes Fenster" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Aktiviert Fettdruck für die Anzeige des Fenstertitels." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Fensterbreite" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Farbe 1 für den Hintergrundfarbverlauf" + +#, fuzzy +msgid "Windows" +msgstr "3D-Fenster" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Fenster, die im Umschalter angezeigt werden sollen" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Hintergrundhelligkeit während des Zeichnens" + +msgid "Amount of opacity in percent" +msgstr "" + +# FIXME - pager = ? +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Fenster, die nicht im Pager angezeigt werden sollen" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Zu Arbeitsfläche bewegen" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "In der Bildschirmmitte" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Füllfarbe für Selektionsrahmen" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" +"Mipmaps benutzen (wenn möglich), um eine bessere Darstellungsqualität zu " +"erreichen." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Hervorhebungsfarbe" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Hervorhebungsfarbe" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Hervorhebungsfarbe" + +# FIXME: Herein und Heraus sind noch nicht optimal +#, fuzzy +msgid "Icon" +msgstr "Herein" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Fenstervervorhebung" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps benutzen" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Farbe, die zum Hervorheben des aktuellen Fensters verwendet wird" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Nächstes Fenster" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Nächstes Fenster (alle Arbeitsflächen)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Nächstes Fenster (aktuelle Anwendung)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Nächstes Fenster (aktuelle Anwendung)" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "Gruppierbare Fenster" + +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "" +"Zeige Umschalter an (wenn nicht schon sichtbar) und wechsele zum nächsten " +"Fenster." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Zeige Umschalter an (wenn nicht schon sichtbar) und wechsele zum nächsten " +"Fenster der aktuellen Anwendung." + +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Zeige Umschalter an (wenn nicht schon sichtbar) und wechsele zum nächsten " +"Fenster (von allen Arbeitsflächen)." + +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "" +"Zeige Umschalter an (wenn nicht schon sichtbar) und wechsele zum nächsten " +"Fenster." -msgid "Snow Toggle" -msgstr "Aktiviere Schnee" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Zeige Umschalter an (wenn nicht schon sichtbar) und wechsele zum vorherigen " +"Fenster der aktuellen Anwendung." -msgid "Snow for Compiz" -msgstr "Schnee für Compiz" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Zeige Umschalter an (wenn nicht schon sichtbar) und wechsele zum vorherigen " +"Fenster (von allen Arbeitsflächen)." -msgid "Snow is drawn above windows" -msgstr "Der Schnee wird über alle Fenster gezeichnet" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Schneetexturen" +#, fuzzy +msgid "Prev window" +msgstr "Vorheriges Fenster" -msgid "Snow toggle key" -msgstr "Tastenkombination um Schnee zu aktivieren" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Vorheriges Fenster (alle Arbeitsflächen)" -msgid "Speed of falling snow" -msgstr "Geschwindigkeit mit der der Schnee fällt" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Vorheriges Fenster (aktuelle Anwendung)" -msgid "Textures" -msgstr "Texturen" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Vorheriges Fenster (aktuelle Anwendung)" -msgid "Top to Bottom" -msgstr "Von oben nach unten" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Verzögerung bis zum nächsten" +#, fuzzy +msgid "Select next panel type window." +msgstr "Auswahl der Platzierung des Fenstertitels" -msgid "A simple splash plugin" -msgstr "Ein einfaches Plugin, dass einen Ladebildschirm bereitstellt." +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Hintergrundbild" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Auswahl der Platzierung des Fenstertitels" -msgid "Background brightness." -msgstr "Hintergundhelligkeit" +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Hintergrundbild-Datei" +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Fenstervervorhebung" -msgid "Background saturation." -msgstr "Hintergundsättigung" +#, fuzzy +msgid "Show Rectangle" +msgstr "Rechteckig" -msgid "Display In/Out Time." -msgstr "Anzeigezeit" +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Fenstertitel im Vorschaubild anzeigen." -msgid "Display Time" -msgstr "Anzeigezeit" +msgid "Show minimized windows" +msgstr "Wenn ausgewählt, werden auch minimierte Fenster angezeigt." -msgid "Images" -msgstr "Bilder" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Initiiere Ladebildschirm" +#, fuzzy +msgid "Switcher speed" +msgstr "Umschalt-Modus" -msgid "Logo File" -msgstr "Logo-Datei" +#, fuzzy +msgid "Switcher timestep" +msgstr "Animationszeitschritt" -msgid "Logo image File." -msgstr "Logo-Datei." +#, fuzzy +msgid "Switcher windows" +msgstr "Gefilterte Fenster" -msgid "Show on first start" -msgstr "Bei Programmstart anzeigen" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Taskleiste" -msgid "Show splash on first start." -msgstr "Ladebildschirm beim Programmstart anzeigen" +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Ladebildschirm" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Zeige Ladebildschirm." +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Fenster, die im Umschalter angezeigt werden sollen" msgid "Render text to texture" msgstr "Text in Texturen rendern" @@ -4766,10 +4876,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "In der Bildschirmmitte" - -#, fuzzy msgid "Color 1" msgstr "Farben" @@ -4918,6 +5024,14 @@ msgid "Matches" msgstr "Fensterregeln" +#, fuzzy +msgid "Maximized" +msgstr "Zeige minimierte Fenster an" + +#, fuzzy +msgid "Maximized windows" +msgstr "Nicht maximierbar" + msgid "No ARGB visuals" msgstr "" @@ -4998,6 +5112,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Workaround für Firefox Menü" @@ -5041,6 +5158,9 @@ "Mache die Fenster auf allen Arbeitsoberflächen 'klebrig'. Klebrige Fenster " "sind auf allen Darstellungsfeldern sichtbar." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" @@ -5068,6 +5188,334 @@ msgid "Workarounds" msgstr "Abhilfen" +#~ msgid "Airplane" +#~ msgstr "Papierflugzeug" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Länge des vom Flugzeug zurückgelegten Weges" + +# FIXED - Intense Effects == aufregende Effekte (analog zu OOo) +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Animations-Zeitschritt für aufregende Effekte" + +#~ msgid "Automatic" +#~ msgstr "Automatisch" + +#~ msgid "Beam" +#~ msgstr "Teleporter" + +# Vielleicht ein bisschen gewagt aber 'Teleportation' wäre die korrekte Übersetzung - zu lang? +#~ msgid "Beam Color" +#~ msgstr "Farbe der Teleportation" + +#~ msgid "Beam Life" +#~ msgstr "Lebensdauer der Teleportation" + +#~ msgid "Beam Slowdown" +#~ msgstr "Verlangsamung der Teleportations-Partikel" + +#~ msgid "Beam Spacing" +#~ msgstr "Zwischenraum" + +# Star-Trek-Referenz im Deutschen sowieso nicht machbar +#~ msgid "Beam Up" +#~ msgstr "Teleporter" + +#~ msgid "Beam Width" +#~ msgstr "Breite der Teleportation" + +#~ msgid "Beam color." +#~ msgstr "Farbe der Teleportation." + +#~ msgid "Beam life." +#~ msgstr "Lebensdauer der Teleportation." + +#~ msgid "Beam slowdown." +#~ msgstr "Verlangsamung der Teleportations-Partikel." + +#~ msgid "Beam width." +#~ msgstr "Breite der Teleportation." + +# Da der Effekt im Original einen eigenen Namen, trifft's 'Verbrennen' besser als 'Feuer' +#~ msgid "Burn" +#~ msgstr "Verbrennen" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Fallrichtung der Dominosteine" + +#~ msgid "Explode" +#~ msgstr "Explodieren" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Richtung, in die die Dominosteine fallen." + +#~ msgid "Fire" +#~ msgstr "Feuer" + +#~ msgid "Fire Smoke" +#~ msgstr "Feuerrauch" + +#~ msgid "Fire constant speed" +#~ msgstr "Konstante Geschwindigkeit für Feuerpartikel" + +#~ msgid "Fire direction" +#~ msgstr "Feuer-Richtung" + +#~ msgid "Fire direction." +#~ msgstr "Feuer-Richtung" + +#~ msgid "Fire smoke." +#~ msgstr "Fügt dem Feuer Rauch hinzu" + +#, fuzzy +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Beim Minimieren zur Taskleiste fliegen" + +#~ msgid "Fold" +#~ msgstr "Falten" + +#~ msgid "Fold Direction" +#~ msgstr "Falt-Richtung" + +# siehe 'Razr' +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Ausrichtung des Razr-Effekts" + +#~ msgid "Hexagonal" +#~ msgstr "Sechseckig" + +# FIXME: Herein und Heraus sind noch nicht optimal +#~ msgid "In" +#~ msgstr "Herein" + +#~ msgid "In-out" +#~ msgstr "Herein/Heraus" + +#~ msgid "Left-right" +#~ msgstr "Links/Rechts" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Länge des vom Flugzeug zurückgelegten Weges" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Dauer des Feuereffekts von der Fensterhöhe abhängig machen." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Richtung, in die die Fensterteile fallen." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Anzahl der Feuerpartikel" + +#~ msgid "Number of fire particles." +#~ msgstr "Anzahl der Feuerpartikel" + +#~ msgid "Out" +#~ msgstr "Heraus" + +#~ msgid "Rectangular" +#~ msgstr "Rechteckig" + +#~ msgid "Rotation Angle" +#~ msgstr "Rotationswinkel" + +# FIXME: besser Bruchstücke statt Teile? +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Rotationswinkel für animierte Fensterteile (in Grad)." + +#, fuzzy +#~ msgid "Skewer Direction" +#~ msgstr "Schnee-Richtung" + +#~ msgid "Spacing between beams." +#~ msgstr "Der Abstand zwischen den Blitzen." + +#~ msgid "Tessellation Type" +#~ msgstr "Tesselations-Typ" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Tesselations-Typ für Explosions-Effekt" + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Tesselations-Typ für Fensterteile" + +#, fuzzy +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe " +#~ "eines Gitters erzeugt. Geben sie die Höhe der einzelnen Gitterzeilen in " +#~ "Pixeln an." + +#, fuzzy +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe " +#~ "eines Gitters erzeugt. Geben sie die Breite der einzelnen Gitterzeilen in " +#~ "Pixeln an." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe " +#~ "eines Gitters erzeugt. Geben sie die Anzahl der Gitterzellen an, in die " +#~ "das Fenster vertikal zerlegt werden soll." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Die für den Explosions-Effekt verwendete Fensterteile werden mit Hilfe " +#~ "eines Gitters erzeugt. Geben sie die Anzahl der einzelnen Gitterzeilen " +#~ "an, in die das Fenster vertikal zerlegt werden soll." + +#~ msgid "Thickness" +#~ msgstr "Dicke" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Dicke der animierten Polygone" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Dicke der explodierenden Polygone" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Dicke der bei der Animation entstehenden Fensterteile (in Pixeln)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Dicke der bei der Explosion entstehenden Fensterteile (in Pixeln)." + +#~ msgid "Up-down" +#~ msgstr "Hoch/Runter" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Sollen die Fenster zur Taskleiste fliegen, falls beim Minimieren der " +#~ "Effekt Papierflugzeug benutzt wird?" + +#~ msgid "Window Grid Height" +#~ msgstr "Fenstergitterhöhe" + +#~ msgid "Window Grid Width" +#~ msgstr "Fenstergitterbreite" + +#, fuzzy +#~ msgid "Window folding direction." +#~ msgstr "Fallrichtung der Dominosteine" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Fensterdicke in Pixel. Bei einer Einstellung über 0 wird der Schatten, " +#~ "die Unschärfe und die Reflektion während der Animation deaktiviert." + +#, fuzzy +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Maximale Auslenkung der horizontalen Wellen, relativ zur Fensterbreite. " +#~ "Negative Werte führen zur entgegengesetzten Richtung." + +#, fuzzy +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (Umfang) des Bogens beim Zusammenfalten im Verhältnis zur " +#~ "Breite des Fensters. Negative Werte bewirken eine Biegung nach außen." + +# Ich kenne den Kontext nicht genau, deshalb bin ich mir mit der Übersetzung nicht zu sicher +#, fuzzy +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "Auschlag (Größe) der Wellen relativ zur Fensterhöhe" + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "Helligkeit" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "Helligkeit" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "Helligkeit" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "Helligkeit von verblassten Fenstern" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "Helligkeit selektierter Fenster" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "Helligkeit von verblassten Fenstern" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "Helligkeit von verblassten Fenstern" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "Helligkeit von verblassten Fenstern" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "Sättigung" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "Sättigung" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "Sättigung" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "Sättigung der selektierten Fenster" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "Sättigung von verblassten Fenstern" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "Sättigung von verblassten Fenstern" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "Sättigung von verblassten Fenstern" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Sichtbarkeit der Fenster" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "" +#~ "Fenster, denen beim Öffnen eine bestimmte Größe zugewiesen werden soll" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "" +#~ "Fenster, denen beim Öffnen eine bestimmte Größe zugewiesen werden soll" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Fenster schließen" + #~ msgid "Animation Speed" #~ msgstr "Animationsgeschwindigkeit" @@ -5091,9 +5539,6 @@ #~ msgid "Misc. options" #~ msgstr "Sonstige Optionen" -#~ msgid "Show minimized windows" -#~ msgstr "Wenn ausgewählt, werden auch minimierte Fenster angezeigt." - #, fuzzy #~ msgid "Tile or Stretch" #~ msgstr "Kacheln oder Strecken" @@ -5126,9 +5571,6 @@ #~ "Aktiviert Mipmaps, welche das allgemeine Aussehen der Texturen verbesern " #~ "werden." -#~ msgid "Window width" -#~ msgstr "Fensterbreite" - #~ msgid "Spring model on move" #~ msgstr "Federmodell bei Bewegung" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/el.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/el.po --- compiz-fusion-plugins-unsupported-0.7.6/po/el.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/el.po 2008-09-17 14:29:32.000000000 +0100 @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins 0.0.1\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:50+0530\n" -"PO-Revision-Date: 2008-02-18 11:19+0100\n" +"POT-Creation-Date: 2008-09-15 14:45+0530\n" +"PO-Revision-Date: 2008-09-03 06:00+0200\n" "Last-Translator: Jim Dusis \n" "Language-Team: Compiz Fusion Translators \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" msgstr "Τρισδιάστατη Περιστροφή Μόνο Με το Ποντίκι" @@ -116,6 +116,12 @@ msgid "Brightness of faded windows" msgstr "Φωτεινότητα των ξεθωριασμένων παραθύρων" +msgid "Enable ADD Helper on start" +msgstr "Ενεργοποίηση του Βοηθού στην εκκίνηση" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Ενεργοποιεί τον Βοηθό στην πρώτη φόρτωση" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -146,12 +152,6 @@ msgid "Window types that should be Opacified." msgstr "Είδη παραθύρων που πρέπει να χρησιμοποιήσουν την αδιαφάνεια." -msgid "Airplane" -msgstr "Aεροπλάνο" - -msgid "Airplane Flying Path Length" -msgstr "Μήκος Πορείας Πτήσης Αεροπλάνου" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -159,22 +159,6 @@ "Επιλογή τυχαίων εφέ, αγνοώντας το επιλεγμένο. Αν έχει επιλεγεί 'Κανενα' " "γιακάποιο γεγονός, αυτο δεν θα απεικονιστεί γραφικα." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Έκταση (μέγεθος των κυμάτων στην πτυχή) των Οριζόντιων Πτυχών σε σχέση με το " -"πλάτος του παραθύρου(Μήκος Κύματος). Οι αρνητικές τιμές κάνουν πτυχές προς " -"τα έξω" - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Έκταση (μέγεθος των κυμάτων στην πτυχή) των καμπυλώτων πτυχών σε σχέση με το " -"πλάτος του παραθύρου(Πλάτος Ταλάντωσης). Οι αρνητικές τιμές κάνουν πτυχές " -"προς τα έξω" - msgid "Angle of window at the end of the animation." msgstr "Γωνία του παραθύρου μετά την ολοκλήρωση της γραφικής απεικόνισης." @@ -184,9 +168,6 @@ msgid "Animation Time Step" msgstr "Χρονικό Βήμα Γραφικής Απεικόνισης" -msgid "Animation Time Step For Intense Effects" -msgstr "Χρονικό Βήμα Γραφικής Απεικόνισης για Έντονα Εφέ" - msgid "Animation duration in milliseconds for close effect." msgstr "" "Διάρκεια γραφικής απεικόνισης σε χιλιοστά του δευτερολέπτου για εφέ " @@ -213,51 +194,12 @@ msgid "Animations" msgstr "Γραφικές Απεικονίσεις" -msgid "Automatic" -msgstr "Αυτόματα" - msgid "Away Angle" msgstr "Γωνία Απομάκρυνσης" msgid "Away Position" msgstr "Θέση Απομάκρυνσης" -msgid "Beam" -msgstr "Ακτινοβολία" - -msgid "Beam Color" -msgstr "Χρώμα Ακτινοβολίας" - -msgid "Beam Life" -msgstr "Διάρκεια Ζωής Ακτινοβολίας" - -msgid "Beam Slowdown" -msgstr "Φρενάρισμα Ακτινοβολίας" - -msgid "Beam Spacing" -msgstr "Χώρος Ανάπτυξης της Ακτινοβολίας" - -msgid "Beam Up" -msgstr "Διακτινισμός" - -msgid "Beam Width" -msgstr "Πλάτος Ακτινοβολίας" - -msgid "Beam color." -msgstr "Χρώμα ακτινοβολίας." - -msgid "Beam life." -msgstr "Διάρκεια ζωής ακτινοβολίας." - -msgid "Beam slowdown." -msgstr "Φρενάρισμα ακτινοβολίας." - -msgid "Beam width." -msgstr "Πλάτος ακτινοβολίας." - -msgid "Burn" -msgstr "Κάψιμο" - msgid "Close Animation" msgstr "Γραφική Απεικόνιση Κλείσιματος" @@ -281,8 +223,8 @@ msgid "Curved Fold" msgstr "Καμπυλωτή Πτυχή" -msgid "Curved Fold Amplitude" -msgstr "Έκταση Καμπυλωτής Πτυχής" +msgid "Curved Fold Amplitude Multiplier" +msgstr "Πολλαπλασιαστής Εύρους Καμπυλωτής Πτυχής" msgid "Dodge" msgstr "Ελιγμός" @@ -290,15 +232,6 @@ msgid "Dodge Gap Ratio" msgstr "Αναλογία Κενού Διάστηματος του Ελιγμού" -msgid "Domino" -msgstr "Ντόμινο" - -msgid "Domino Piece Falling Direction" -msgstr "Κατεύθυνση Πτώσης Κομματιών του Ντόμινο" - -msgid "Down" -msgstr "Κάτω" - msgid "Dream" msgstr "Όνειρο" @@ -308,79 +241,26 @@ msgid "Effect Settings" msgstr "Ρυθμίσεις Εφέ" -msgid "Explode" -msgstr "Έκρηξη" - msgid "Fade" msgstr "Ξεθώριασμα" -msgid "Falling direction for Domino pieces." -msgstr "Κατεύθυνση πτώσης για τα κομμάτια του Ντόμινο." - -msgid "Fire" -msgstr "Φωτιά" - -msgid "Fire Particle Color" -msgstr "Χρώμα Στοιχείων Φωτιάς" - -msgid "Fire Particle Life" -msgstr "Ζωή Στοιχείων Φωτιάς" - -msgid "Fire Particle Size" -msgstr "Μέγεθος Στοιχείων Φωτιάς" - -msgid "Fire Particle Slowdown" -msgstr "Φρενάρισμα Στοιχείων Φωτιάς" - -msgid "Fire Smoke" -msgstr "Καπνός Φωτιάς" - -msgid "Fire constant speed" -msgstr "Σταθερή ταχύτητα φωτιάς" - -msgid "Fire direction" -msgstr "Κατεύθυνση φωτιάς" - -msgid "Fire direction." -msgstr "Κατεύθυνση φωτιάς." - -msgid "Fire particle color." -msgstr "Χρώμα Στοιχείων Φωτιάς." - -msgid "Fire particle life." -msgstr "Ζωή στοιχείων φωτιάς." - -msgid "Fire particle size." -msgstr "Μέγεθος στοιχείων φωτιάς." - -msgid "Fire particle slowdown." -msgstr "Φρενάρισμα στοιχείων φωτιάς." - -msgid "Fire smoke." -msgstr "Καπνός φωτιάς." - msgid "Fixed window interior during the Rollup animation." msgstr "" "Σταθερό εσωτερικό παραθύρου κατα την διάρκεια γραφικής απεικόνισης του " "Τυλίγματος." -msgid "Fly to TaskBar on Minimize" -msgstr "Πτήση προς τη Γραμμή Εργασιών στην Ελαχιστοποίηση" - msgid "Focus Animation" msgstr "Γραφική Απεικόνιση της Εστίασης" msgid "Focus Effect" msgstr "Εφέ Εστίασης" -msgid "Fold" -msgstr "Δίπλωμα" - -msgid "Fold Direction" -msgstr "Κατεύθυνση διπλώματος" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Κατεύθυνση ανοίγματος των πτυχών των κομματιών στο εφέ Ξυράφι." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" +"Το εύρος της πτυχής (μέγεθος) πολλαπλασιάζεται με αυτόν τον αριθμό.Αρνητικές " +"τιμές διπλώνουν προς τα έξω." msgid "Glide 1" msgstr "Ολίσθηση 1" @@ -388,17 +268,11 @@ msgid "Glide 2" msgstr "Ολίσθηση 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Τυχαία χρώματα για το εφέ φωτιάς, επίσης γνωστό κ ως Μυστική Φωτιά." - -msgid "Hexagonal" -msgstr "Εξάγωνο" - msgid "Horizontal Folds" msgstr "Οριζόντιες Πτυχές" -msgid "Horizontal Folds Amplitude" -msgstr "Έκταση Οριζόντιων Πτυχών" +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "Πολλαπλασιαστής Εύρους Οριζόντιων Πτυχών" msgid "How spring-like the Sidekick animation should be." msgstr "Πόσο θα πάλλεται η γραφική απεικόνηση Πλαινό Χτύπημα." @@ -406,24 +280,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Πόσο θα πάλλεται η γραφική απεικόνηση Ζουμ." -msgid "In" -msgstr "Μέσα" - -msgid "In-out" -msgstr "Μέσα-Εξω" - -msgid "Leaf Spread" -msgstr "Διασπορά Φύλλων" - -msgid "Left" -msgstr "Αριστερά" - -msgid "Left-right" -msgstr "Αριστερά-δεξιά" - -msgid "Length of airplane's flying path." -msgstr "Μήκος της πτήσης του αεροπλάνου." - msgid "Magic Lamp" msgstr "Μαγικό Λυχνάρι" @@ -445,9 +301,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Τέλος Κίνησης Ανοίγματος/Κλεισίματος του Μαγικού Λυχναριού" -msgid "Make fire effect duration be dependent on window height." -msgstr "Εξάρτηση διάρκειας εφέ φωτιάς ανάλογα με το ύψος του παραθύρου." - msgid "Minimize Animation" msgstr "Ελαχιστοποίηση Γραφικής Απεικόνισης" @@ -457,21 +310,12 @@ msgid "Minimize/Unminimize Only" msgstr "Ελαχιστοποίηση/Αποελαχιστοποίηση Μόνο" -msgid "Movement direction(s) for window pieces." -msgstr "Κατεύθυνση(εις) κίνησης για τα κομμάτια του παραθύρου." - msgid "None" msgstr "Κανένα" -msgid "Number Of Fire Particles" -msgstr "Αριθμός Στοιχείων Φωτιάς" - msgid "Number of Horizontal Folds" msgstr "Αριθμός Οριζόντιων Πτυχών" -msgid "Number of fire particles." -msgstr "Αριθμός στοιχείων φωτιάς." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -505,18 +349,15 @@ msgid "Options" msgstr "Ιδιότητες" -msgid "Out" -msgstr "Έξω" - msgid "Pool" msgstr "Συγκέντρωση" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Συγκέντρωση εφέ που θα επιλεγούν αν η Τυχαία Επιλογή εφέ εχει επιλεχθεί. " -"Κάνοντας κλικ στο reset θα επανακτηθεί η πλήρης λίστα." +"Κάνοντας κλικ στο reset θα επανακτηθεί η πλήρης λίστα των εφέ." msgid "Random" msgstr "Τυχαία Επιλογή" @@ -527,38 +368,17 @@ msgid "Random Effects" msgstr "Εφέ Τυχαίας Επιλογής" -msgid "Randomly Colored Fire" -msgstr "Τυχαία Χρωματισμένη Φωτιά" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" "Αναλογία κενών διαστημάτων μεταξύ των χρόνων εκκίνησης του ελιγμού και της " "διάρκειας εστίασης." -msgid "Razr" -msgstr "Ξυράφι" - -msgid "Razr Fold Opening Direction" -msgstr "Κατεύθυνση Ανοίγματος Πτυχών του Ξυραφιού" - -msgid "Rectangular" -msgstr "Ορθογώνιο" - -msgid "Right" -msgstr "Δεξιά" - msgid "Roll Up" msgstr "Τύλιγμα" msgid "Rollup Fixed Interior" msgstr "Διορθωμένο Εσωτερικό του Τυλίγματος" -msgid "Rotation Angle" -msgstr "Γωνία Περιστροφής" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Γωνία Περιστροφής των γραφικά απεικονιζόμενων παραθύρων (σε μοίρες)" - msgid "Shade Animation" msgstr "Γραφική Απεικόνιση Σκίασης" @@ -574,15 +394,6 @@ msgid "Sidekick Springiness" msgstr "Ελαστικότητα του Πλαινού Χτυπήματος" -msgid "Skewer" -msgstr "Διατρύπημα" - -msgid "Skewer Direction" -msgstr "Κατεύθυνση Διατρυπήματος" - -msgid "Spacing between beams." -msgstr "Χώρος μεταξύ ακτινοβολιών." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -595,15 +406,6 @@ msgstr "" "Αρχικό πλάτος εφέ ανοίγματος και τελικό πλάτος εφέ τέλους για το ρούφηγμα." -msgid "Tessellation Type" -msgstr "Είδος Μωσαικού" - -msgid "Tessellation type for exploding window pieces." -msgstr "Είδος Μωσαικού για τα εκτοξευόμενα κομμάτια του παραθύρου." - -msgid "Tessellation type for window pieces." -msgstr "Είδος Μωσαικού για τα κομμάτια του παραθύρου." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -612,31 +414,6 @@ "πραγματοποίησης της γραφικής απεικόνισης. Όσο Υψηλότερος είναι ο αριθμός, " "τόσο χειρότερες γίνονται οι κινήσεις." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Πόσος χρόνος σε χιλιοστά του δευτερολέπτου απαιτείται μεταξύ κάθε " -"πραγματοποίησης έντονης γραφικής απεικόνισης (Πχ Κάψιμο, Ακτινοβολία). Όσο " -"Υψηλότερος είναι ο αριθμός, τόσο χειρότερες γίνονται οι κινήσεις." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Το γραφικά απεικονιζόμενο παράθυρο θα χωριστεί σε κομμάτια σύμφωνα με ένα " -"πλέγμα. Ορισμός του αριθμού των κελιών στο πλέγμα ανάλογα με το ύψος του του " -"παραθύρου." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Το γραφικά απεικονιζόμενο παράθυρο θα χωριστεί σε κομμάτια σύμφωνα με ένα " -"πλέγμα. Ορισμός του αριθμού των κελιών στο πλέγμα ανάλογα με το πλάτος του " -"παραθύρου." - msgid "The animation effect shown when closing a window." msgstr "" "Το εφέ της γραφικής απεικόνισης εμφανίζεται στο κλείσιμο ένος παράθυρου." @@ -659,20 +436,6 @@ msgstr "" "Το εφέ της γραφικής απεικόνισης που εμφανίζεται στην σκίαση ένος παράθυρου." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Το παράθυρο που εκρύγνειται θα χωριστεί σε κομμάτια σύμφωνα με ένα πλέγμα. " -"Ορισμός των κελιών του πλέγματος ανάλογα με το ύψος του παραθύρου." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Το παράθυρο που εκρύγνειται θα χωριστεί σε κομμάτια σύμφωνα με ένα πλέγμα. " -"Ορισμός των κελιών του πλέγματος ανάλογα με το πλάτος του παραθύρου." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "H μέγιστη έκταση (μέγεθος κυμάτων) που το Μαγικό Λυχνάρι Θα έχει." @@ -688,36 +451,12 @@ "Αριθμός των οριζόντιων πτυχών που εμφανίζονται στην γραφική απεικόνιση " "Οριζόντιας Πτύχωσης." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Έκταση κυμάτων (μέγεθος κυμάτων) σε σχέση με το ύψος του παραθύρου." - msgid "The width of the wave relative to the window height." msgstr "Πλάτος του κύματος σε σχέση με το ύψος του παραθύρου." msgid "The windows that will be animated." msgstr "Παράθυρα που θα έχουν γραφική απεικόνιση." -msgid "Thickness" -msgstr "Πάχος" - -msgid "Thickness of Animated Polygons" -msgstr "Πάχος των Γραφικά Απεικονιζόμενων Πολυγώνων" - -msgid "Thickness of Exploding Polygons" -msgstr "Πάχος των Πολυγώνων που Εκρήγνυνται" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Πάχος των κομματιών των γραφικά απεικονιζόμενων παραθύρων (σε pixels)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Πάχος των κομματιών των παραθύρων που εκρύγνηνται (σε pixels)." - -msgid "Up" -msgstr "Πάνω" - -msgid "Up-down" -msgstr "Πάνω-κάτω" - msgid "Use various animations as window effects" msgstr "Χρησιμοποίηση διάφορων γραφικών απεικονίσεων ως εφέ παραθύρου" @@ -756,17 +495,18 @@ msgid "Wave" msgstr "Κύμα" -msgid "Wave Amplitude" -msgstr "Έκταση Κύματος" +msgid "Wave Amplitude Multiplier" +msgstr "Πολλαπλασιαστής Εύρους Κύματος" msgid "Wave Width" msgstr "Πλάτος Κύματος" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Εαν το παράθυρο θα πεταέι στην γραμμή εργασιών όταν ελαχιστοποιείται με το " -"εφέ του Αεροπλάνου." +"Το εύρος (μέγεθος) κύματος πολλαπλασιάζεται με αυτόν τον αριθμό. Αρνητικές " +"τίμες διπλώνουν προς τα έξω." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -800,29 +540,12 @@ "Εαν το παράθυρο θα ζουμάρει στην γραμμή εργασιών όταν ελαχιστοποιείται με το " "εφέ του Οριζόντιου Διπλώματος." -msgid "Window Grid Height" -msgstr "Ύψος Πλέγματος Παραθύρου" - -msgid "Window Grid Width" -msgstr "Πλάτος Πλέγματος Παραθύρου" - -msgid "Window folding direction." -msgstr "Κατεύθυνση διπλώματος παραθύρου." - msgid "Window that should animate with this effect when focused." msgstr "Παράθυρο που θα απεικονιστεί γραφικά με αυτό το εφέ όταν εστιαστεί." msgid "Window that should animate with this effect when shaded." msgstr "Παράθυρο που θα απεικονιστεί γραφικά με αυτό το εφέ όταν σκιαστεί." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Πάχος παραθύρου σε pixels. Ορισμός του σε μεγαλύτερη τιμή απ'το 0 θα " -"απενεργοποιήσει την σκίαση, το θόλωμα, και την αντανάκλαση κατα την διάρκεια " -"της γραφικής απεικόνισης." - msgid "Zoom" msgstr "Ζουμ" @@ -933,65 +656,11 @@ msgid "Y position" msgstr "Υ Θέση" -msgid "Brightness Decrease" -msgstr "Μείωση Φωτεινότητας" - -msgid "Brightness Increase" -msgstr "Αύξηση Φωτεινότητας" - -msgid "Brightness Step" -msgstr "Βήμα Φωτεινότητας" - -msgid "Brightness and Saturation" -msgstr "Φωτεινότητα και Κορεσμός" - -msgid "Brightness and Saturation adjustments" -msgstr "Ρυθμιστικά Φωτεινότητας και Κορεσμού" - -msgid "Brightness settings" -msgstr "Ρυθμίσεις Φωτεινότητας" - -msgid "Brightness values for windows" -msgstr "Τιμές φωτεινότητας για παράθυρα" - -msgid "Brightness window values" -msgstr "Τιμές φωτεινότητας παραθύρων" - -msgid "Brightness windows" -msgstr "Φωτεινότητα παραθύρων" +msgid "Bicubic filter" +msgstr "Φίλτρο Bicubic" -msgid "General" -msgstr "Γενικά" - -msgid "Saturation Decrease" -msgstr "Μείωση Κορεσμού" - -msgid "Saturation Increase" -msgstr "Αύξηση Κορεσμού" - -msgid "Saturation Step" -msgstr "Βήμα Κορεσμού" - -msgid "Saturation settings" -msgstr "Ρυθμίσεις κορεσμού" - -msgid "Saturation values for windows" -msgstr "Τιμές κορεσμού για παράθυρα" - -msgid "Saturation window values" -msgstr "Τιμές κορεσμού παραθύρων" - -msgid "Saturation windows" -msgstr "Κορεσμός παραθύρων" - -msgid "Window specific" -msgstr "Συγκεκριμένα για παράθυρο" - -msgid "Windows that should have a different brightness by default" -msgstr "Παράθυρα που πρέπει να έχουν προεπιλεγμένη διαφορετική φωτεινότητα" - -msgid "Windows that should have a different saturation by default" -msgstr "Παράθυρα που πρέπει να έχουν προεπιλεγμένο διαφορετικό κορεσμό" +msgid "Bicubic texture filtering" +msgstr "Bicubic φιλτράρισμα υφών" msgid "Color filter" msgstr "Χρωματιστό φίλτράρισμα" @@ -1026,7 +695,7 @@ "Επιλογή φίλτρου που θα χρησιμοποιηθεί απο τη λίστα των φίλτρων : είτε " "εφαρμογή όλων των φίλτρων είτε μόνο ενός συγκεκριμένου φίλτρου (ενεργοποίηση " "αυτής της ενέργειας αλλάζει τα φίλτρα ένα προς ένα και τελικά επιστρέφει " -"στην \"all filters\" μέθοδο)." +"στην \"all filters\" κατάσταση)." msgid "Switch filter" msgstr "Αλλαγή φίλτραρίσματος" @@ -1086,6 +755,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Γραμμή Εντολών του Διαχειριστή Παραθύρων. ΜΗΝ ΒΑΛΕΤΕ COMPIZ ΕΔΩ!!!" +msgid "Above" +msgstr "Απο Πάνω" + msgid "Adjust bottom face image to rotation" msgstr "Προσαρμογή εικόνα κάτω όψης για περιστροφή" @@ -1107,6 +779,18 @@ msgid "Appearance" msgstr "Εμφάνιση" +msgid "Aspect ratio" +msgstr "Αναλογία διαστάσεων" + +msgid "Aspect ratio of the deformed cube" +msgstr "Αναλογία διαστάσεων του παραμορφωμένου κύβου" + +msgid "Auto zoom" +msgstr "Αυτόματο ζουμ" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Αυτόματο ζουμ μόνο σε Γύρισμα με το Ποντίκι" + msgid "Behaviour" msgstr "Συμπεριφορά" @@ -1142,18 +826,54 @@ msgid "Color of bottom face of the cube" msgstr "Χρώμα κάτω όψης του κύβου." +msgid "Color of the ground (far)." +msgstr "Χρώμα Δαπέδου (μακρινό)." + +msgid "Color of the ground (near)." +msgstr "Χρώμα Δαπέδου (κοντινό)." + msgid "Color of top face of the cube" msgstr "Χρώμα πάνω όψης του κύβου." +msgid "Compiz cube reflection and deformation" +msgstr "Αντανάκλαση και παραμόρφωση του κύβου του Compiz" + msgid "Cube Bottom Color" msgstr "Κάτω Χρώμα Κύβου" -msgid "Cube Caps" -msgstr "Καλύματα Κύβου" +msgid "Cube Reflection and Deformation" +msgstr "Αντανάκλαση και Παραμόρφωση Κύβου" msgid "Cube Top Color" msgstr "Πάνω Χρώμα Κύβου" +msgid "Cube caps" +msgstr "Καπάκια Κύβου" + +msgid "Cylinder" +msgstr "Κύλινδρος" + +msgid "Deform caps" +msgstr "Παραμόρφωση καπακιών" + +msgid "Deform cube caps." +msgstr "Παραμόρφωση καπακιών του κύβου." + +msgid "Deform only on mouse rotate" +msgstr "Παραμόρφωση μόνο σε γύρισμα με το ποντίκι" + +msgid "Deformation" +msgstr "Παραμόρφωση" + +msgid "Deformation in unfold cube mode." +msgstr "Παραμόρφωση στην κατάσταση ξεδιπλωμένου κύβου." + +msgid "Deformation mode." +msgstr "Κατάσταση παραμόρφωσης." + +msgid "Distance" +msgstr "Απόσταση" + msgid "Draw bottom face" msgstr "Ζωγράφισε κάτω όψη" @@ -1166,12 +886,38 @@ msgid "Draw top face of the cube" msgstr "Ζωγράφισε πάνω όψη του κύβου" +msgid "Enabled" +msgstr "Ενεργοποιημένο" + +msgid "Give cube a reflective ground." +msgstr "Δώστε στον κύβο ένα έδαφος που τον αντανακλά." + msgid "Go back to previous image for bottom face of the cube" msgstr "Πήγαινε πίσω στη προηγούμενη εικόνα για την κάτω όψη του κύβου" msgid "Go back to previous image for top face of the cube" msgstr "Πήγαινε πίσω στη προηγούμενη εικόνα για την πάνω όψη του κύβου" +msgid "Ground color(far)" +msgstr "Χρώμα δαπέδου(μακρινό)" + +msgid "Ground color(near)" +msgstr "Χρώμα δαπέδου(κοντινό)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" +"Αρχικοποιεί την παραμόρφωση κυλίνδρου του κύβου μόνο αν η περιστροφή γίνεται " +"με το ποντίκι." + +msgid "Intensity" +msgstr "Ένταση" + +msgid "Jumpy" +msgstr "Χοροπηδηχτό" + +msgid "Jumpy reflection" +msgstr "Χοροπηδηχτή αντανάκλαση" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1183,6 +929,18 @@ "Λίστα των PNG και SVG αρχείων που πρέπει να απεικονιστούν στην πάνω όψη του " "κύβου" +msgid "Maintain bottom aspect ratio" +msgstr "Διατήρηση αναλογίας διαστάσεων του πάτου" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "Διατήρηση αναλογίας διαστάσεων της εικόνας του κάτω καπακιου." + +msgid "Maintain top aspect ratio" +msgstr "Διατήρηση αναλογίας διαστάσεων της κορυφής" + +msgid "Maintain top cap image aspect ratio." +msgstr "Διατήρηση αναλογίας διαστάσεων της εικόνας του πάνω καπακιου." + msgid "Next bottom image" msgstr "Επόμενη κάτω εικόνα" @@ -1195,8 +953,23 @@ msgid "Prev top image" msgstr "Προηγούμενη κάτω εικόνα" -msgid "Render images on top and bottom of the cube" -msgstr "Απεικόνιση εικόνων πάνω και κάτω του κύβου" +msgid "Reflection" +msgstr "Αντανάκλαση" + +msgid "Reflection ground size" +msgstr "Μέγεθος αντανάκλασης στο δάπεδο" + +msgid "Reflection ground size." +msgstr "Μέγεθος αντανάκλασης στο δάπεδο." + +msgid "Reflection intensity" +msgstr "Ένταση αντανάκλασης" + +msgid "Reflection mode" +msgstr "Κατάσταση αντανάκλασης" + +msgid "Reflection mode." +msgstr "Κατάσταση αντανάκλασης." msgid "Scale bottom image" msgstr "Κλιμάκωση κάτω εικόνας" @@ -1210,77 +983,41 @@ msgid "Scale top image" msgstr "Κλιμάκωση πάνω εικόνας" +msgid "Sphere" +msgstr "Σφαίρα" + msgid "Top image files" msgstr "Αρχεία πάνω εικόνας" -msgid "Above" -msgstr "Απο Πάνω" +msgid "Unfold cube deformation" +msgstr "Παραμόρφωση ξεδιπλωμένου κύβου" -msgid "Auto zoom" -msgstr "Αυτόματο ζουμ" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Αυτόματο ζουμ out μόνο στο γύρισμα με το ποντίκι." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Αυτόματο ζουμ μόνο σε Γύρισμα με το Ποντίκι" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Αυτόματο ζουμ out για να χορέσει ο κύβος στην οθόνη." -msgid "Color of the ground (far)." -msgstr "Χρώμα Δαπέδου (μακρινό)." +msgid "Cube Caps" +msgstr "Καπάκια Κύβου" -msgid "Color of the ground (near)." -msgstr "Χρώμα Δαπέδου (κοντινό)." +msgid "Render images on top and bottom of the cube" +msgstr "Απεικόνιση εικόνων πάνω και κάτω του κύβου" msgid "Compiz cube reflection" -msgstr "Αντανάκλαση του κύβου του Compiz" +msgstr "Αντανάκλαση Κύβου του Compiz" msgid "Cube Reflection" msgstr "Αντανάκλαση του Κύβου" -msgid "Distance" -msgstr "Απόσταση" +msgid "Animation used when switching to expo mode" +msgstr "Γραφική απεικόνιση για την αλλαγή σε κατάσταση expo" -msgid "Ground color(far)" -msgstr "Χρώμα δαπέδου(μακρινό)" +msgid "Aspect Ratio" +msgstr "Αναλογία Διαστάσεων" -msgid "Ground color(near)" -msgstr "Χρώμα δαπέδου(κοντινό)" - -msgid "Intensity" -msgstr "Ένταση" - -msgid "Jumpy" -msgstr "Χοροπηδηχτό" - -msgid "Jumpy reflection" -msgstr "Χοροπηδηχτή αντανάκλαση" - -msgid "Reflection ground size" -msgstr "Μέγεθος αντανάκλασης στο δάπεδο" - -msgid "Reflection ground size." -msgstr "Μέγεθος αντανάκλασης στο δάπεδο." - -msgid "Reflection intensity" -msgstr "Ένταση αντανάκλασης" - -msgid "Reflection mode" -msgstr "Είδος αντανάκλασης" - -msgid "Reflection mode." -msgstr "Είδος αντανάκλασης." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Αυτόματο ζουμ out μόνο στο γύρισμα με το ποντίκι." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Αυτόματο ζουμ out για να χορέσει ο κύβος στην οθόνη." - -msgid "Animation used when switching to expo mode" -msgstr "Γραφική απεικόνιση για την αλλαγή σε μέθοδο expo" - -msgid "Aspect Ratio" -msgstr "Αναλογία Διαστάσεων" - -msgid "Button binding for drag & drop of windows" -msgstr "Συνδυασμός κουμπιών για τράβηγμα & άφημα των παραθύρων" +msgid "Button binding for drag & drop of windows" +msgstr "Συνδυασμός κουμπιών για τράβηγμα & άφημα των παραθύρων" msgid "Button binding to exit expo" msgstr "Συνδυασμός κουμπιών για έξοδο απ το expo" @@ -1290,25 +1027,17 @@ "Συνδυασμός κουμπιών για αλλαγή στην επόμενη εικονική επιφάνεια εργασίας στο " "expo" -#, fuzzy msgid "Curve" -msgstr "Καμπυλωτή Πτυχή" +msgstr "Καμπύλη" -#, fuzzy msgid "Curve strength" -msgstr "Ισχύς Θολώματος Κίνησης." +msgstr "Σθένος καμπύλης" -#, fuzzy -msgid "Deformation" -msgstr "Διάρκεια" - -#, fuzzy msgid "Deformation of the expo wall" -msgstr "Απόσταση του τοίχου του expo" +msgstr "Παραμόρφωση του τοίχου του expo" -#, fuzzy msgid "Distance between viewports" -msgstr "Αλλαγή στην εικονική επιφάνεια εργασίας 1" +msgstr "Απόσταση μεταξύ των εικονικών επιφανειών εργασίας" msgid "Distance of the expo wall" msgstr "Απόσταση του τοίχου του expo" @@ -1323,13 +1052,13 @@ msgstr "Διάρκεια (σε ms) της γραφικής απεικόνισης του ζουμ out" msgid "Engage wall expo mode button binding" -msgstr "Ενεργοποίηση συνδυασμού κουμπιών τοίχου της μεθόδου expo" +msgstr "Ενεργοποίηση συνδυασμού κουμπιών τοίχου της κατάστασης expo" msgid "Engage wall expo mode edge binding" -msgstr "Ενεργοποίηση συνδυασμού άκρων τοίχου της μεθόδου expo" +msgstr "Ενεργοποίηση συνδυασμού άκρων τοίχου της κατάστασης expo" msgid "Engage wall expo mode key binding" -msgstr "Ενεργοποίηση συνδυασμού πλήκτρων τοίχου της μεθόδου expo" +msgstr "Ενεργοποίηση συνδυασμού πλήκτρων τοίχου της κατάστασης expo" msgid "Exit expo" msgstr "Έξοδος απ το expo" @@ -1353,13 +1082,13 @@ msgstr "Πλήκτρο του Expo" msgid "Expo mode aspect ratio" -msgstr "Αναλογία διαστάσεων της μεθόδου expo" +msgstr "Αναλογία διαστάσεων της κατάστασης expo" msgid "Fade + Zoom" msgstr "Ξεθώριασμα + Ζουμ" msgid "Generate mipmaps in expo mode" -msgstr "Δημιουργία mipmaps στο expo mode" +msgstr "Δημιουργία mipmaps στην κατάσταση expo" msgid "Hide panels/docks in expo" msgstr "Απόκρυψη πάνελ/docks στο expo" @@ -1371,16 +1100,16 @@ msgstr "Άμεσες κινήσεις" msgid "Inactive viewport brightness." -msgstr "" +msgstr "Φωτεινότητα ανενεργής εικονικής επιφάνειας εργασίας." msgid "Inactive viewport saturation." -msgstr "" +msgstr "Κορεσμός ανενεργής εικονικής επιφάνειας εργασίας." msgid "Mipmaps" msgstr "Mipmaps" msgid "Multi Output Mode" -msgstr "Μέθοδος Πολλαπλών Oθονών" +msgstr "Κατάσταση Πολλαπλών Oθονών" msgid "Next viewport" msgstr "Επόμενη εικονική επιφάνεια εργασίας" @@ -1394,9 +1123,6 @@ msgid "Previous viewport" msgstr "Προηγούμενη εικονική επιφάνεια εργασίας" -msgid "Reflection" -msgstr "Αντανάκλαση" - msgid "Reflection Scale" msgstr "Κλίμακα Αντανάκλασης" @@ -1413,25 +1139,23 @@ "Selects if windows movements in expo mode should be immediate - this among " "other things disables wobbliness" msgstr "" -"Επιλέγει το αν οι κινήσεις των παραθύρων στο expo mode πρέπει να είναι " +"Επιλέγει το αν οι κινήσεις των παραθύρων στην κατάσταση expo πρέπει να είναι " "αμεσες - μεταξύ άλλων απενεργοποιεί κ την ταλάντωση" msgid "Show a reflection of the viewports on the ground" msgstr "Απεικόνιση αντανάκλασης των επιφανειών εργασίας στο έδαφος" msgid "Strength of the deformation in curve mode" -msgstr "" +msgstr "Σθένος της παραμόρφωσης στην κατάσταση καμπύλωσης" -#, fuzzy msgid "Tilt" -msgstr "Πλακίδιο" +msgstr "Γέρσιμο" msgid "Timeframe to execute a double click" msgstr "Χρονοδιάγραμμα για εκτέλεση διπλού κλικ" -#, fuzzy msgid "Viewport distance" -msgstr "Επιλογέας Εικονικής Επιφάνειας Εργασίας" +msgstr "Απόσταση εικονικής επιφάνειας εργασίας" msgid "Vortex" msgstr "Κορυφαίο" @@ -1439,9 +1163,8 @@ msgid "Zoom time" msgstr "Χρόνος Ζουμ" -#, fuzzy msgid "Activate Demanding Attention Window" -msgstr "Ενεργοποίηση ένος δωσμένου παράθυρου" +msgstr "Ενεργοποίηση Παραθύρου Επισταμένης Προσοχής" msgid "Activate Window" msgstr "Ενεργοποίηση Παράθυρου" @@ -1451,6 +1174,8 @@ msgid "Activate next window which has the \"demands attention\" flag set." msgstr "" +"Ενεργοποίηση του επόμενου παραθύρου που του έχει τεθεί το χαρακτηριστικό " +"\"επισταμένη προσοχή\". " msgid "Extra WM Actions" msgstr "Επιπλέον Δραστηριότητες του ΔΠ" @@ -1508,6 +1233,10 @@ msgid "Center the mouse" msgstr "Κεντράρισμα ποντικιού" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Κλιμάκωση του δείκτη ποντικιού" + msgid "Enable focus tracking" msgstr "Ενεργοποίηση εντοπισμού εστίασης" @@ -1574,19 +1303,12 @@ "Αποκρύπτει τον πραγματικό δείκτη ποντικιού όταν ζουμάρεται μέσα και " "κλιμακώνει το ποντίκι" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Πόσο συχνά να συμψηφίζεται η θέση του ποντικιού, σε χιλιοστά δευτερολέπτου. " -"Μειώστε το για να μειωθούν τα κοψίματα." +msgid "Minimum zoom factor" +msgstr "Ελάχιστος συντελεστής ζουμ" msgid "Mouse Behaviour" msgstr "Συμπεριφορά Ποντικιού" -msgid "Mouse Poll Interval" -msgstr "Χρονικό Διάστημα Συμψηφισμού Ποντικιού" - msgid "Mouse Restrain Margin" msgstr "Όριο Συγκράτησης Ποντικιού" @@ -1672,12 +1394,23 @@ msgid "Speed" msgstr "Ταχύτητα" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Κλιμάκωση του δείκτη ποντικιού" + msgid "Sync Mouse" msgstr "Συγχρονισμός Ποντικιού" msgid "Target Focused Window on Specific level" msgstr "Στόχευση Εστιασμένου Παραθύρου σε Συγκεκριμένο Επίπεδο" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" +"Ο ελάχιστος επιτρεπόμενος συντελεστής ζουμ. Μια τιμή στο 0.5 ισούται με 2x " +"ζουμ, μια τιμή στο 0.25 ισούται με 4x ζουμ." + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" "Το μέγεθος του ορίου που προστείθεται όταν επιχειρείται συγκράτηση του " @@ -1697,9 +1430,22 @@ msgid "Use linear filter when zoomed in" msgstr "Χρήση γραμμικού φίλτραρίσματος όταν ζουμάρετε μέσα" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Περιοχή Κίνησης Ζουμ" +msgid "Zoom Box" +msgstr "Ζουμ Κουτιού" + msgid "Zoom In" msgstr "Ζουμ Μέσα" @@ -1727,6 +1473,9 @@ msgid "Zoom factor" msgstr "Παράγοντας Ζουμ" +msgid "Zoom in on a boxed area" +msgstr "Ζουμ μέσα σε μια περιοχή κουτιού" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Ζουμάρισμα μέσα/έξω βάση αυτού του παράγοντα. Υψηλότερη τιμή σημαίνει " @@ -1784,6 +1533,14 @@ msgid "Toggle window fake ARGB." msgstr "Εκκίνηση του στοιχείου ψεύτικα ARGB παραθύρου." +msgid "Add Particle" +msgstr "Προσθήκη Στοιχείου" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" +"Προσθέτει ένα στοιχείο φωτιάς στη θέση (χ,ψ), όπου χ και ψ είναι " +"συντεταγμένες." + msgid "Background brightness" msgstr "Φωτεινότητα Φόντου" @@ -1799,6 +1556,33 @@ msgid "Clear (key)" msgstr "Καθαρισμός (πλήκτρο)" +msgid "Fire Particle Color" +msgstr "Χρώμα Στοιχείων Φωτιάς" + +msgid "Fire Particle Life" +msgstr "Ζωή Στοιχείων Φωτιάς" + +msgid "Fire Particle Size" +msgstr "Μέγεθος Στοιχείων Φωτιάς" + +msgid "Fire Particle Slowdown" +msgstr "Φρενάρισμα Στοιχείων Φωτιάς" + +msgid "Fire particle color." +msgstr "Χρώμα Στοιχείων Φωτιάς." + +msgid "Fire particle life." +msgstr "Ζωή στοιχείων φωτιάς." + +msgid "Fire particle size." +msgstr "Μέγεθος στοιχείων φωτιάς." + +msgid "Fire particle slowdown." +msgstr "Φρενάρισμα στοιχείων φωτιάς." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Τυχαία χρώματα για το εφέ φωτιάς, επίσης γνωστό κ ως Μυστική Φωτιά." + msgid "Initiate (button)" msgstr "Εκκίνηση (κουμπί)" @@ -1820,6 +1604,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Γράψτε με φωτια σε αλλα στοιχεία στην οθόνη" +msgid "Randomly Colored Fire" +msgstr "Τυχαία Χρωματισμένη Φωτιά" + msgid "Cube Gears" msgstr "Γρανάζια του Κύβου" @@ -1919,6 +1706,9 @@ msgid "Font Size" msgstr "Μέγεθος Γραμματοσειράς" +msgid "General" +msgstr "Γενικά" + msgid "Glass" msgstr "Γυαλί" @@ -2014,7 +1804,7 @@ "work with selection mode 'Normal')." msgstr "" "Αν έχετε επιλέξει μερικά παράθυρα, αυτό τα ομαδοποιεί αυτόματα (Δεν " -"λειτουργεί με το είδος επιλογής 'Κανονικά')." +"λειτουργεί με την κατάσταση επιλογής 'Κανονικά')." msgid "Ignore Group" msgstr "Αγνόησε Ομάδα" @@ -2117,7 +1907,7 @@ msgstr "Χώρος" msgid "Speed limit for spring model" -msgstr "Όριο ταχύτητας για το μαντέλο ελατηρίου" +msgstr "Όριο ταχύτητας για το μοντέλο ελατηρίου" msgid "Spring Konstant used for slot dragging" msgstr "Σταθερά του Ελατηριου που χρησιμοποιείται για το τράβηγμα θυρίδας" @@ -2193,7 +1983,7 @@ msgstr "Πλήκτρο για αλλαγή στην δεξιά ετικέτα του συγκεκριμένου." msgid "The key for toggling the tab mode for the current group." -msgstr "Πλήκτρο για εκκίνηση λειτουργίας ετικετών για τη συγκεκριμένη ομάδα." +msgstr "Πλήκτρο για εκκίνηση κατάστασης ετικετών για τη συγκεκριμένη ομάδα." msgid "The key for ungrouping the current group." msgstr "Πλήκτρο για αποομαδοποίηση της συγκεκριμένης ομάδας." @@ -2288,174 +2078,163 @@ msgid "Quality of compression when saving JPEG images" msgstr "Ποιότητα συμπίεσης όταν αποθηκεύονται εικόνες JPEG" -#, fuzzy msgid "Background/Window brightness." -msgstr "Φωτεινότητα φόντου." +msgstr "Φωτεινότητα φόντου/παραθύρου." -#, fuzzy msgid "Background/Window saturation." -msgstr "Κορεσμός Φόντου." +msgstr "Κορεσμός φόντου/παραθύρου." -#, fuzzy msgid "Fade In/Out Time" -msgstr "Χρόνος Ξεθωριάσματος Μέσα/Έξω." +msgstr "Χρόνος Ξεθωριάσματος Μέσα/Έξω" msgid "Fade In/Out Time." msgstr "Χρόνος Ξεθωριάσματος Μέσα/Έξω." -#, fuzzy msgid "Login" -msgstr "Εκκίνηση" +msgstr "Σύνδεση" -#, fuzzy msgid "Login Window Match" -msgstr "Ταίριασμα Παραθύρου" +msgstr "Ταίριασμα Παραθύρου Σύνδεσης" -#, fuzzy msgid "Login Window match" -msgstr "Ταίριασμα Παραθύρου" +msgstr "Ταίριασμα Παραθύρου σύνδεσης" msgid "Login/Logout" -msgstr "" +msgstr "Σύνδεση/Αποσύνδεση" msgid "Login/Logout effect" -msgstr "" +msgstr "Εφέ Σύνδεσης/Αποσύνδεσης" msgid "Logout" -msgstr "" +msgstr "Αποσύνδεση" -#, fuzzy msgid "Logout Window Match" -msgstr "Ταίριασμα Ομαδοποιημένων Παραθύρων" +msgstr "Ταίριασμα Παραθύρου Αποσύνδεσης" -#, fuzzy msgid "Logout Window match" -msgstr "Ταίριασμα Παραθύρου" +msgstr "Ταίριασμα Παραθύρου αποσύνδεσης" -#, fuzzy msgid "Window opacity." -msgstr "Αδιαφάνεια Παραθύρου" +msgstr "Αδιαφάνεια παραθύρου." -#, fuzzy msgid "Border color" -msgstr "Χρώμα Ορίου Ετικετών" +msgstr "Χρώμα ορίου" -#, fuzzy msgid "Border width" -msgstr "Οριοθέτηση Πλάτους" +msgstr "Πλάτος ορίου" -#, fuzzy msgid "Border widtht." -msgstr "Οριοθέτηση Πλάτους" +msgstr "Πλάτος ορίου." msgid "Box height." -msgstr "" +msgstr "Ύψος κουτιού." -#, fuzzy msgid "Box width." -msgstr "Πλάτος ακτινοβολίας." +msgstr "Πλάτος κουτιού." -#, fuzzy msgid "Clip mask" -msgstr "Mipmaps" +msgstr "Μάσκα φακού" msgid "Clip mask." -msgstr "" +msgstr "Μάσκα φακού." -#, fuzzy msgid "Fisheye" -msgstr "Μέγεθος ψαριών" +msgstr "Μάτι ψαριού" msgid "Height" msgstr "Ύψος" msgid "Image overlay" -msgstr "" +msgstr "Επίστρωση εικόνας" -#, fuzzy msgid "Keep fully on screen" -msgstr "Εμφάνιση FPS στην οθόνη" +msgstr "Διατήρηση εντελώς μέσα στην οθόνη" -#, fuzzy msgid "Keep fully on screen." -msgstr "Εμφάνιση FPS στην οθόνη" +msgstr "Διατήρηση εντελώς μέσα στην οθόνη." msgid "Magnifier" -msgstr "" +msgstr "Μεγεθυντικός Φακός" msgid "Magnifier box" -msgstr "" +msgstr "Κουτί μεγεθυντικού φακού" msgid "Magnifier image" -msgstr "" +msgstr "Εικόνα μεγεθυντικού φακού" msgid "Magnifier image." -msgstr "" +msgstr "Εικόνα μεγεθυντικού φακού." -#, fuzzy msgid "Mode" -msgstr "Ελιγμός" +msgstr "Κατάσταση" -#, fuzzy msgid "Mode." -msgstr "Ελιγμός" +msgstr "Κατάσταση." -#, fuzzy msgid "Radius" -msgstr "Ακτίνα Ορίου" +msgstr "Ακτίνα" -#, fuzzy msgid "Radius of the magnification area." -msgstr "Ακτίνα της στρογγυλεμένης άκρης" +msgstr "Ακτίνα της μεγενθυμένης περιοχής." msgid "Width" -msgstr "Πλάτο" +msgstr "Πλάτος" msgid "X offset of the cursor" -msgstr "" +msgstr "Χ οφσετ του κέρσορα" msgid "X offset of the cursor." -msgstr "" +msgstr "Χ οφσετ του κέρσορα." msgid "Y offset of the cursor" -msgstr "" +msgstr "Υ οφσετ του κέρσορα" msgid "Y offset of the cursor." -msgstr "" +msgstr "Υ οφσετ του κέρσορα." msgid "Zoom factor for keyboard initiated magnifier." msgstr "" +"Παράγοντας ζουμ για τον εκκινούμενο απο το πληκτρολόγιο μεγεθυντικό φακό." msgid "Ignore already overlapping windows in the calculations" -msgstr "" +msgstr "Αγνόηση των ήδη επικαλυπτώμενων παραθύρων στους υπολογισμούς" msgid "Ignore sticky windows in the calculations" -msgstr "" +msgstr "Αγνόηση των καρφιτσωμένων παραθύρων στους υπολογισμούς" msgid "Maximumize" -msgstr "" +msgstr "Μεγιστομεγιστοποίηση" -#, fuzzy msgid "Maximumizes windows (resize them to fit the available screenspace)." -msgstr "Μέγιστο μέγεθος παραθύρου (σε ποσοστό του πλάτους της οθόνης)" +msgstr "" +"Μέγιστομεγιστοποιεί παράθυρα (τα μορφοποιεί ωστε να ταιριάζουν στον " +"διαθέσιμο χώρο της οθόνης)." msgid "" "Treat sticky windows as non-existant when calculating space to use for the " "maximumize window." msgstr "" +"Θεώρηση καρφιτσωμένων παραθύρων ως μη υπάρχοντα στον υπολογισμό του προς " +"χρήση χώρου για μεγιστομεγιστοποίηση παραθύρου." msgid "" "Treat windows that are already overlapping with the current window as non-" "existant when calculating space to use for the maximumize window." msgstr "" +"Θεώρηση των παραθύρων που ήδη επικαλύπτουν το τρέχων παράθυρο ως μη " +"υπάρχοντα στον υπολογισμό του προς χρήση χώρου για μεγιστομεγιστοποίηση " +"παραθύρου." msgid "" "Trigger a resize of the window currently focused so it fits as much of the " "available screenspae as possible." msgstr "" +"Ενεργοποίηση μιας μορφοποίησης του τρέχοντος εστιασμένου παραθύρου ετσι ώστε " +"να καταλάβει όσο το δυνατό περισσότερο απο τον διαθέσιμο κενό χώρο της " +"οθόνης." msgid "Trigger maximumize" -msgstr "" +msgstr "Ενεργοποίηση μεγιστομεγιστοποίησης" msgid "Accumulation buffer" msgstr "Ρυθμιστής συσσώρευσης" @@ -2470,13 +2249,13 @@ msgstr "Ισχύς Θολώματος Κίνησης" msgid "Motion Blur mode" -msgstr "Είδος Θολώματος Κίνησης" +msgstr "Κατάσταση Θολώματος Κίνησης" msgid "Motion Blur on Transformed Screen" msgstr "Θόλωμα Κίνησης σε Αλλαγή Οθόνης" msgid "Motion Blur render mode." -msgstr "Είδος λειτουργίας γραφικών του Θολώματος Κίνησης." +msgstr "Κατάσταση λειτουργίας γραφικών του Θολώματος Κίνησης." msgid "Motion Blur strength." msgstr "Ισχύς Θολώματος Κίνησης." @@ -2509,7 +2288,7 @@ msgstr "Προσδιορισμός νευμάτων ποντικιού για μια υπάρχουσα ενέργεια" msgid "Detect Diagonal Movements" -msgstr "" +msgstr "Ανίχνευση Διαγόνιων Κινήσεων" msgid "Gesture" msgstr "Νεύμα" @@ -2524,6 +2303,8 @@ "If this option is selected, diagonal movements are detected, which may lead " "to a decreased detection accuracy." msgstr "" +"Αν αυτό το χαρακτηριστικό επιλεχθεί, οι διαγώνιες κινήσεις ανιχνεύονται, που " +"μπορεί να οδηγήσει σε μειωμένη συνέπεια ανίχνευσης." msgid "Mouse gesture to assign an action to." msgstr "Νεύμα ποντικιού για προσδιορισμό μιας ενέργειας σ' αυτό" @@ -2540,15 +2321,24 @@ msgid "Start gesture" msgstr "Εκκίνηση νεύματος" -msgid "Misc" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." msgstr "" +"Πόσο συχνά να συμψηφίζεται η θέση του ποντικιού, σε χιλιοστά δευτερολέπτου. " +"Μειώστε το για να μειωθούν τα κοψίματα." + +msgid "Misc" +msgstr "Λοιπά" + +msgid "Mouse Poll Interval" +msgstr "Χρονικό Διάστημα Συμψηφισμού Ποντικιού" -#, fuzzy msgid "Mouse position polling" -msgstr "Panning ποντικιού" +msgstr "Λήψη θέσης ποντικιού" msgid "Updates the mouse pointer position from the xserver" -msgstr "" +msgstr "Ενημερώνει την θέση του δείκτη του ποντικιού απο τον xserver" msgid "Begin Gesture" msgstr "Ξεκίνημα Νεύματος" @@ -2565,6 +2355,8 @@ msgid "Also negate window decorations, not only the window contents." msgstr "" +"Κάνει επίσης αρνητικές και τις διακοσμίσεις παραθύρων, όχι μόνο τα " +"περιεχόμενά τους." msgid "Exclude Windows" msgstr "Αποκλεισμός Παραθύρων" @@ -2572,9 +2364,8 @@ msgid "Neg Windows" msgstr "Μετατροπή Παραθύρων σε Αρνητικά" -#, fuzzy msgid "Negate Decorations" -msgstr "Αντανάκλαση Διακοσμίσεων" +msgstr "Αρνητικές Διακοσμίσεις" msgid "Negative" msgstr "Αρνητικό" @@ -2767,7 +2558,7 @@ msgstr "Αποφεύγει την τοποθέτηση των ορίων παραθύρων εκτός οθόνης" msgid "Move window arbitrarily by passing x, y and type." -msgstr "" +msgstr "Αυθαίρετη κίνηση παραθύρου θετοντας x,y και τύπο." msgid "Move window to a certain viewport" msgstr "Μετακίνηση παραθύρου σε μια συγκεκριμένη εικονική επιφάνεια εργασίας" @@ -3265,8 +3056,8 @@ msgid "Show windows that are minimized, shaded or in show desktop mode." msgstr "" -"Εμφάνιση παραθύρων που είναι ελαχιστοποιημένα, σκιασμένα ή σε mode εμφάνισης " -"επιφάνειας εργασίας." +"Εμφάνιση παραθύρων που είναι ελαχιστοποιημένα, σκιασμένα ή σε κατάσταση " +"εμφάνισης επιφάνειας εργασίας." msgid "Text Placement" msgstr "Τοποθέτηση Κειμένου" @@ -3289,18 +3080,30 @@ msgid "Background color of the window title" msgstr "Χρώμα φόντου του τίτλου παραθύρου" -msgid "Close Windows In Scale" -msgstr "Κλείσιμο Παραθύρων στην Κλιμάκωση" +msgid "Close Window" +msgstr "Κλείσιμο Παραθύρου" + +msgid "Close window while in scale mode" +msgstr "Κλείσιμο παραθύρου όταν βρεθεί σε κατάσταση κλιμάκωσης" msgid "Close windows while in scale mode" -msgstr "Κλείσιμο παραθύρων στην μέθοδο κλιμάκωσης" +msgstr "Κλείσιμο παραθύρων σε κατάσταση κλιμάκωσης" msgid "Color used for highlighting the hovered window" msgstr "Χρώμα τονισμού του παραθύρου που το ποντίκι μένει επάνω του." +msgid "Constrain Pull To Screen" +msgstr "Εξαναγκασμός Τραβήγματος στην Οθόνη" + msgid "Draw Window Highlight" msgstr "Σχεδίαση Τονισμού Παραθύρου" +msgid "Exit Scale On Pull" +msgstr "Έξοδος Κλιμάκωσης στο Τράβηγμα" + +msgid "Exit scale mode after a window has been pulled." +msgstr "Έξοδος από την κατάσταση κλιμάκωσης όταν ένα παράθυρο έχει τραβηχτεί." + msgid "Font color of the window title" msgstr "Χρώμα γραμματοσειράς του τίτλου παραθύρου" @@ -3310,13 +3113,18 @@ msgid "Highlight Color" msgstr "Χρώμα Τονισμού" -#, fuzzy msgid "Highlighted window only" -msgstr "Το αιωρηθέν παράθυρο μόνο" +msgstr "Τονισμένο παράθυρο μόνο" msgid "Highlights the hovered window with the given color" msgstr "Τονίζει το παράθυρο που το ποντίκι μένει επάνω του με το δωθέν χρώμα." +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"Σιγουρευτείτε οτι τα παράθυρα είναι πλήρως ευδιάκριτα μετά το τράβηγμά τους " +"σε μια άλλη εικονική επιφάνεια εργασίας" + msgid "No display" msgstr "Μη εμφάνιση" @@ -3326,11 +3134,19 @@ msgid "Organic - EXPERIMENTAL" msgstr "Οργανικό - (ΠΕΙΡΑΜΑΤΙΚΟ)" +msgid "Pull Window" +msgstr "Τράβηγμα Παραθύρου" + +msgid "Pull window to current viewport while in scale mode" +msgstr "" +"Τράβηγμα παραθύρου στην τρέχουσα εικονική επιφάνεια εργασίας όταν έιναι σε " +"κατάσταση κλιμάκωσης" + msgid "Scale Addons" msgstr "Κλιμάκωση Addons" msgid "Selects the mode to layout the windows in scale mode" -msgstr "Επιλογή της μεθόδου διάταξης των παραθύρων στην μέθοδο κλιμάκωσης" +msgstr "Επιλογή της μεθόδου διάταξης των παραθύρων σε κατάσταση κλιμάκωσης" msgid "Size of the border around the window title" msgstr "Μέγεθος του ορίου γύρω απ τον τίτλο παραθύρου" @@ -3349,7 +3165,10 @@ msgstr "Τονισμός Παραθύρου" msgid "Window Layout Mode" -msgstr "Μέθοδος Διάταξης Παραθύρου" +msgstr "Κατάσταση Διάταξης Παραθύρου" + +msgid "Window Pull" +msgstr "Τράβηγμα Παραθύρου" msgid "Window Title" msgstr "Τίτλος Παραθύρου" @@ -3358,13 +3177,13 @@ msgstr "Εμφάνιση Τίτλου Παραθύρου" msgid "Window title display in scale mode" -msgstr "Εμφάνιση τίτλου παραθύρου στην κλιμάκωση" +msgstr "Εμφάνιση τίτλου παραθύρου σε κατάσταση κλιμάκωσης" -msgid "Zoom Windows In Scale" -msgstr "Ζουμ Παραθύρων Στην Κλιμάκωση" +msgid "Zoom Window" +msgstr "Ζουμ Παραθύρου" -msgid "Zoom windows while in scale mode" -msgstr "Ζουμ παραθύρων στην μέθοδο κλιμάκωσης" +msgid "Zoom window while in scale mode" +msgstr "Ζουμ παραθύρου όταν είναι σε κατάσταση κλιμάκωσης" msgid "Filter Case Insensitive" msgstr "Φίλτρο Ανεξαρτήτως Χαρακτήρων" @@ -3426,15 +3245,21 @@ "management protocol. This setting only should be used in KDE, as only KDE's " "session manager also saves those applications." msgstr "" +"Επίσης προσπάθεια για αποθήκευση και επαναφορά παραδοσιακών εφαρμογών που " +"δεν υποστηρίζουν το προτόκολλο διαχείρησης συνεδρίας του X. Αυτή η ρύθμιση " +"πρέπει να χρησιμοποιείται μόνο στο KDE, καθώς μόνο ο διαχειριστής συνεδρίας " +"του KDE αποθηκεύει και αυτές τις εφαρμογές." msgid "Save Legacy Apps" -msgstr "" +msgstr "Αποθήκευση Παραδοσιακών Εφαρμογών" msgid "Session Management" -msgstr "" +msgstr "Διαχειριστής Συνεδρίας" msgid "Talk to session manager and save/load window state" msgstr "" +"Επικοινωνία με τον διαχειριστή συνεδρίας και αποθήκευση/φόρτωμα κατάστασης " +"παραθύρου" msgid "Animation duration" msgstr "Διάρκεια γραφικής απεικόνισης" @@ -3452,50 +3277,54 @@ msgstr "Σμίκρυνση παραθύρου" msgid "Reduces the scale factor making the window smaller." -msgstr "" +msgstr "Μειώνει τον παράγοντα κλιμάκωσης κάνωντας το παράθυρο μικρότερο." -#, fuzzy msgid "Reset the window to original size" -msgstr "Θέσε παράθυρο ως μη μορφοποιούμενο" +msgstr "Επαναφορά παραθύρου στο αρχικό του μέγεθος" msgid "Resets the currently focused window to original size" -msgstr "" +msgstr "Επαναφέρει το τρέχων εστιασμένο παράθυρο στο αρχικό του μέγεθος" msgid "Scale a window down to a portion of it's size." -msgstr "" +msgstr "Κλιμάκωση μείωσης ενός παραθύρου σε ένα μέρος του αρχικού μεγέθους του" msgid "" "Scale a window down to a ration of the screen size. Respectively half, a " "third or a sixth of the screen." msgstr "" +"Κλιμάκωση μείωσης ενός παραθύρου σε μια αναλογία του μεγέθους της οθόνης." +"Αντίστοιχα μισό, ενα τρίτο ή ένα έκτο της οθόνης." msgid "Scale interval" -msgstr "" +msgstr "Διάστημα κλιμάκωσης" -#, fuzzy msgid "Shelf" -msgstr "Αλλαγή" +msgstr "Ράφι" msgid "" "The number to divide the scale factor by or multiply it with when " "(respectively) increasing and decreasing the scale level manually. Higher " "number means finer changes." msgstr "" +"Ο αριθμός για διαίρεση ή πολλαπλασιασμό του παράγοντα κλιμάκωσης όταν " +"αυξάνεται και μειώνεται (αντίστοιχα) το επίπεδο κλιμάκωσης χειροκίνητα. " +"Υψηλότερες τιμές σημαίνουν λεπτότερες αλλαγές." msgid "Trigger scale down" -msgstr "" +msgstr "Ενεργοποίηση κλιμάκωσης μείωσης" -#, fuzzy msgid "Trigger scale down to screen" -msgstr "Εκκίνηση του παράθυρου σε πλήρη οθόνη" +msgstr "Ενεργοποίηση κλιμάκωσης μείωσης στην οθόνη" msgid "" "Visually scales a window down to allow easy monitoring without true/" "traditional resizing." msgstr "" +"Οπτικά κλιμακώνει ένα παράθυρο μικραίνοντας το για να επιτραπεί ο εύκολος " +"έλεγχος χωρίς πραγματική/παραδοσιακή μορφοποίηση." msgid "Background intensity" -msgstr "Ένταση Φόντου" +msgstr "Ένταση φόντου" msgid "Background intensity." msgstr "Ένταση φόντου." @@ -3601,10 +3430,10 @@ msgstr "Βήμα χρόνου Μετατόπισης" msgid "Switcher mode" -msgstr "Μέθοδος επιλογέα" +msgstr "Κατάσταση επιλογέα" msgid "Switcher mode." -msgstr "Μέθοδος επιλογέα." +msgstr "Κατάσταση επιλογέα." msgid "Terminate" msgstr "Τερματισμός" @@ -3621,18 +3450,30 @@ msgid "Direction of window movement" msgstr "Διεύθυνση κίνησης των παραθύρων" +msgid "Down" +msgstr "Κάτω" + +msgid "Left" +msgstr "Αριστερά" + msgid "Left/Right" msgstr "Αριστερά/Δεξιά" msgid "Movement Direction" msgstr "Διεύθυνση κίνησης" +msgid "Right" +msgstr "Δεξιά" + msgid "Show desktop" msgstr "Εμφάνιση επιφάνειας εργασίας" msgid "To Corners" msgstr "Στις Γωνίες" +msgid "Up" +msgstr "Πάνω" + msgid "Up/Down" msgstr "Πάνω/Κάτω" @@ -3657,106 +3498,84 @@ msgid "" "Window types that should be moved out of sight when entering showdesktop mode" msgstr "" -"Είδη παραθύρων που πρέπει να φεύγουν απ το οπτικό πεδιο οταν εισέρχονται " -"στο στοιχείο εμφάνισης επιφάνειας εργασίας" +"Είδη παραθύρων που πρέπει να φεύγουν απ' το οπτικό πεδιο οταν εισέρχονται " +"στην κατάσταση εμφάνισης επιφάνειας εργασίας" msgid "Additive blending" -msgstr "" +msgstr "Προσθετική μίξη" -#, fuzzy msgid "Additive blending of particles" -msgstr "Αριθμός στοχείων" +msgstr "Προσθετική μίξη στοιχείων" -#, fuzzy msgid "Darken backgound" -msgstr "Σκοτείνιασμα Φόντου" +msgstr "Σκοτείνιασμα φόντου" -#, fuzzy msgid "Darken background under particles" -msgstr "Σκοτείνιασμα Φόντου" +msgstr "Σκοτείνιασμα φόντου κάτω από τα στοιχεία " msgid "Emiters" msgstr "" -#, fuzzy msgid "Have random colors for the particles" -msgstr "Τυχαία χρώματα για το εφέ φωτιάς, επίσης γνωστό κ ως Μυστική Φωτιά." +msgstr "Τυχαία χρώματα για τα στοιχεία" -#, fuzzy msgid "Increases the visibility of the mouse pointer" -msgstr "Κλιμάκωση του δείκτη ποντικιού" +msgstr "Αύξηση ορατότητας του δείκτη ποντικιού" -#, fuzzy msgid "Number Of Particles" -msgstr "Αριθμός στοχείων" +msgstr "Αριθμός των Στοιχείων" #, fuzzy msgid "Number of particle emiters." msgstr "Αριθμός στοχείων" -#, fuzzy msgid "Number of particles." -msgstr "Αριθμός στοχείων" +msgstr "Αριθμόςτων στοιχείων." -#, fuzzy msgid "Particle Color" -msgstr "Χρώμα Στοιχείων Φωτιάς" +msgstr "Χρώμα Στοιχείων" -#, fuzzy msgid "Particle Life" -msgstr "Ζωή Στοιχείων Φωτιάς" +msgstr "Ζωή Στοιχείων" -#, fuzzy msgid "Particle Options" -msgstr "Διάφορες Επιλογές" +msgstr "Επιλογές Στοιχείων" -#, fuzzy msgid "Particle Size" -msgstr "Μέγεθος Στοιχείων Φωτιάς" +msgstr "Μέγεθος Στοιχείων" -#, fuzzy msgid "Particle Slowdown" -msgstr "Φρενάρισμα Στοιχείων Φωτιάς" +msgstr "Φρενάρισμα Στοιχείων" -#, fuzzy msgid "Particle color." -msgstr "Χρώμα Στοιχείων Φωτιάς." +msgstr "Χρώμα στοιχείων." -#, fuzzy msgid "Particle life." -msgstr "Ζωή στοιχείων φωτιάς." +msgstr "Ζωή στοιχείων." -#, fuzzy msgid "Particle size." -msgstr "Μέγεθος στοιχείων φωτιάς." +msgstr "Μέγεθος στοιχείων." -#, fuzzy msgid "Particle slowdown." -msgstr "Φρενάρισμα στοιχείων φωτιάς." +msgstr "Φρενάρισμα στοιχείων." -#, fuzzy msgid "Randomly Colored Particles" -msgstr "Τυχαία Χρωματισμένη Φωτιά" +msgstr "Τυχαία Χρωματισμένα Στοιχεία" -#, fuzzy msgid "Ring radius" -msgstr "Ακτίνα Ορίου" +msgstr "Ακτίνα δαχτυλιδιού" -#, fuzzy msgid "Rotation speed" -msgstr "Ταχύτητα γραφικής απεικόνισης" +msgstr "Ταχύτητα περιστροφής" -#, fuzzy msgid "Rotation speed." -msgstr "Ταχύτητα γραφικής απεικόνισης" +msgstr "Ταχύτητα περιστροφής." -#, fuzzy msgid "Show mouse" -msgstr "Συγχρονισμός Ποντικιού" +msgstr "Εμφάνιση ποντικιού" -#, fuzzy msgid "Toggle the mouse pointer trail." -msgstr "Κλιμάκωση του δείκτη ποντικιού" +msgstr "Εκκίνηση του ίχνους ουράς του δείκτη ποντικιού" msgid "Alt" msgstr "Alt" @@ -3765,7 +3584,7 @@ msgstr "Αποφυγή Εναλλάκτη Στιγμιότυπου" msgid "Choose 'Resistance', 'Attraction' or 'Full Mode'." -msgstr "Επιλογή 'Αντίστασης', 'Έλξης' ή 'Πλήρης Τύπος'." +msgstr "Επιλογή 'Αντίστασης', 'Έλξης' ή 'Πλήρης Κατάσταση'." msgid "Control" msgstr "Έλεγχος" @@ -3837,9 +3656,10 @@ msgid "Enables alpha blending of snowflakes." msgstr "Ενεργοποίηση άλφα μίξης των νιφάδων." -#, fuzzy msgid "Enables textured snowflakes. If not selected, color gradients are used." -msgstr "Ενεργοποίηση υφών νιφάδων. Αν δεν επιλεγεί, χρώματα χρησιμοποιούνται." +msgstr "" +"Ενεργοποίηση νιφάδων με υφές. Αν δεν επιλεγεί, χρησιμοποιούνται " +"διαβαθμίσεις χρωμάτων." msgid "Flakes rotate if checked." msgstr "Γύρισμα νιφάδων αν επιλεγεί." @@ -3923,59 +3743,315 @@ msgid "Speed of falling snow" msgstr "Ταχύτητα πτώσης χιονιού" -msgid "Textures" -msgstr "Υφές" +msgid "Textures" +msgstr "Υφές" + +msgid "Top to Bottom" +msgstr "Απο Πάνω προς τα Κάτω" + +msgid "Update Delay" +msgstr "Καθυστέρηση Ανανέωσης" + +msgid "A simple splash plugin" +msgstr "Ενα απλό πρόσθετο αρχικής οθόνης" + +msgid "Background File" +msgstr "Αρχείο Φόντου" + +msgid "Background brightness." +msgstr "Φωτεινότητα φόντου." + +msgid "Background image File." +msgstr "Αρχείο εικόνας Φόντου." + +msgid "Background saturation." +msgstr "Κορεσμός Φόντου." + +msgid "Display In/Out Time." +msgstr "Χρόνος Εμφάνισης εντός/εκτός." + +msgid "Display Time" +msgstr "Χρόνος Εμφάνισης" + +msgid "Images" +msgstr "Εικόνες" + +msgid "Initiate Splash" +msgstr "Εισαγωγή Αρχικής Οθόνης" + +msgid "Logo File" +msgstr "Αρχείο Λογότυπου" + +msgid "Logo image File." +msgstr "Αρχείο εικόνας Λογότυπου." + +msgid "Show on first start" +msgstr "Εμφάνιση στην πρώτη εκκίνηση" + +msgid "Show splash on first start." +msgstr "Εμφάνιση αρχικής οθόνης στην πρώτη εκκίνηση." + +msgid "Splash" +msgstr "Αρχική Οθόνη" + +msgid "Start Splash." +msgstr "Εκκίνηση Αρχικής Οθόνης." + +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Ποσό αδιαφάνειας (σε ποσοστό) για τα παράθυρα στον επιλογέα που δεν είναι " +"επιλεγμένα" + +msgid "Behavior" +msgstr "Συμπεριφορά" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Σκοτείνιασμα φόντου όταν εμφανίζεται το δαχτυλίδι" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Πλάτος Μικρογραφίας" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Ενεργοποίηση ένος δωσμένου παράθυρου" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Αν πρέπει ο τίτλος παραθύρου να γίνει Έντονος." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Πλάτος Παραθύρου" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Χρώμα 1 του διαβαθμισμένου φόντου." + +#, fuzzy +msgid "Windows" +msgstr "Τρισδιάστατα Παράθυρα" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Παράθυρα που πρέπει να εμφανίζονται στο επιλογέα μετατόπισης" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Φωτεινότητα Φόντου κατα τη διάρκεια ζωγραφίσματος" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Μη εμφάνιση εφαρμογής στο pager" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Τοποθέτηση στην Επιφάνεια Εργασίας" + +msgid "Bring Selected To Front" +msgstr "" + +msgid "Centered" +msgstr "Κεντραρισμένο" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Χρώμα γεμίσματος του επιλεγμένου ορθογωνίου" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Δημιουργία mipmaps ει δυνατόν για υψηλότερη ποιότητα κλιμάκωσης." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Χρώμα Τονισμού" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Χρώμα Τονισμού" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Χρώμα Τονισμού" + +#, fuzzy +msgid "Icon" +msgstr "Μέσα" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Τονισμός Παραθύρου" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Χρώμα τονισμού του παραθύρου που το ποντίκι μένει επάνω του." + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Επόμενο Παράθυρο" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Επόμενο Παράθυρο (Όλες οι Επιφάνειες Εργασίας)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Επόμενο Παράθυρο (Ομάδα)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Επόμενο Παράθυρο (Ομάδα)" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "Ταίριασμα Ομαδοποιημένων Παραθύρων" + +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Εμφάνιση επιλογέα αν δεν είναι ορατός και επιλογή επόμενου παραθύρου." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Εμφάνιση επιλογέα αν δεν είναι ορατός και επιλογή επόμενου παραθύρου για την " +"τρέχουσα εφαρμογή." + +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Εμφάνιση επιλογέα αν δεν είναι ορατός και επιλογή επόμενου παραθύρου μέσα " +"απο όλα τα παράθυρα." + +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "" +"Εμφάνιση επιλογέα αν δεν είναι ορατός και επιλογή προηγούμενου παραθύρου." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Εμφάνιση επιλογέα αν δεν είναι ορατός και επιλογή προηγούμενου παραθύρου της " +"τρέχουσας εφαρμογής." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Εμφάνιση επιλογέα αν δεν είναι ορατός και επιλογή προηγούμενου παραθύρου " +"μέσα απο όλα τα παράθυρα." + +#, fuzzy +msgid "Prev Panel" +msgstr "Προεπισκόπιση Κλιμάκωσης" + +#, fuzzy +msgid "Prev window" +msgstr "Προηγούμενο Παράθυρο" + +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Προηγούμενο Παράθυρο (Όλες οι Επιφάνειες Εργασίας)" + +#, fuzzy +msgid "Prev window (Group)" +msgstr "Προηγούμενο Παράθυρο (Ομάδα)" + +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Προηγούμενο Παράθυρο (Ομάδα)" -msgid "Top to Bottom" -msgstr "Απο Πάνω προς τα Κάτω" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Καθυστέρηση Ανανέωσης" +#, fuzzy +msgid "Select next panel type window." +msgstr "Επιλέγει που να τοποθετήσει τον τίτλο παραθύρου" -msgid "A simple splash plugin" -msgstr "Ενα απλό πρόσθετο αρχικής οθόνης" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Αρχείο Φόντου" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Επιλέγει που να τοποθετήσει τον τίτλο παραθύρου" -msgid "Background brightness." -msgstr "Φωτεινότητα φόντου." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Αρχείο εικόνας Φόντου." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Τονισμός Παραθύρου" -msgid "Background saturation." -msgstr "Κορεσμός Φόντου." +#, fuzzy +msgid "Show Rectangle" +msgstr "Ορθογώνιο" -msgid "Display In/Out Time." -msgstr "Χρόνος Εμφάνισης εντός/εκτός." +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Εμφάνιση του Τίτλου Παραθύρου στην Μικρογραφία." -msgid "Display Time" -msgstr "Χρόνος Εμφάνισης" +msgid "Show minimized windows" +msgstr "Εμφάνιση ελαχιστοποιημένων παραθύρων" -msgid "Images" -msgstr "Εικόνες" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Εισαγωγή Αρχικής Οθόνης" +#, fuzzy +msgid "Switcher speed" +msgstr "Κατάσταση επιλογέα" -msgid "Logo File" -msgstr "Αρχείο Λογότυπου" +#, fuzzy +msgid "Switcher timestep" +msgstr "Βήμα χρόνου Μετατόπισης" -msgid "Logo image File." -msgstr "Αρχείο εικόνας Λογότυπου." +#, fuzzy +msgid "Switcher windows" +msgstr "Φιλτραρισμένα παράθυρα" -msgid "Show on first start" -msgstr "Εμφάνιση στην πρώτη εκκίνηση" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Γραμμή Εργασιών" -msgid "Show splash on first start." -msgstr "Εμφάνιση αρχικής οθόνης στην πρώτη εκκίνηση." +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Αρχική Οθόνη" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Εκκίνηση Αρχικής Οθόνης." +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Παράθυρα που πρέπει να εμφανίζονται στο επιλογέα μετατόπισης" msgid "Render text to texture" msgstr "Προσθήκη κειμένου στην υφή" @@ -4615,7 +4691,7 @@ msgstr "Χρώμα περιγράμματος του επιλογέα παραθύρου" msgid "Preview Scale" -msgstr "" +msgstr "Προεπισκόπιση Κλιμάκωσης" msgid "Radius of the rounded edge" msgstr "Ακτίνα της στρογγυλεμένης άκρης" @@ -4654,7 +4730,7 @@ #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Μέγεθος της προεπισκόπισης σε %" msgid "Switch Target Preview Visibility Time" msgstr "Αλλαγή του Χρόνου που θα είναι Ορατή η Προεπισκόπιση του Στόχου" @@ -4681,11 +4757,10 @@ msgstr "Διάρκεια Γλυστρίματος Τοίχου" msgid "Width of the border between the previews" -msgstr "" +msgstr "Πλάτος του ορίου μεταξύ των προεπισκοπίσεων" -#, fuzzy msgid "Background fill type." -msgstr "Αρχείο Φόντου" +msgstr "Τύπος γεμίσματος φόντου." msgid "Backgrounds" msgstr "Φόντο" @@ -4693,132 +4768,105 @@ msgid "Center Tiled" msgstr "" -#, fuzzy -msgid "Centered" -msgstr "Τοποθέτηση στο Κέντρο" - -#, fuzzy msgid "Color 1" -msgstr "Χρώματα" +msgstr "Χρώμα 1" -#, fuzzy msgid "Color 2" -msgstr "Χρώματα" +msgstr "Χρώμα 2" msgid "Draw the desktop wallpaper" msgstr "Σχεδίαση του φόντου της επιφάνειας εργασίας" -#, fuzzy msgid "Fill or first gradient color." -msgstr "Χρώμα Στοιχείων Φωτιάς." +msgstr "Γέμισμα ή πρώτη διαβάθμιση χρώματος." -#, fuzzy msgid "Fill type" -msgstr "Γεμισμένο Περίγραμμα" +msgstr "Τύπος γεμίσματος" -#, fuzzy msgid "Horizontal gradient" -msgstr "Οριζόντιες Πτυχές" +msgstr "Οριζόντια διαβάθμιση" -#, fuzzy msgid "Image" -msgstr "Εικόνες" +msgstr "Εικόνα" -#, fuzzy msgid "Image file." -msgstr "Αρχεία πάνω εικόνας" +msgstr "Αρχείο εικόνας." -#, fuzzy msgid "Image position." -msgstr "X Θέση" +msgstr "Θέση εικόνας." -#, fuzzy msgid "Position" -msgstr "X Θέση" +msgstr "Θέση" -#, fuzzy msgid "Scale and Crop" -msgstr "Κλιμάκωση Addons" +msgstr "Κλιμάκωση και Κατάτμηση" -#, fuzzy msgid "Scaled" -msgstr "Κλιμάκωση Addons" +msgstr "Κλιμακωμένο" -#, fuzzy msgid "Second gradient color." -msgstr "Χρώμα 1 Διαβάθμισης" +msgstr "Δεύτερο χρώμα διαβάθμισης." msgid "Solid fill" -msgstr "" +msgstr "Ενιαίο γέμισμα" -#, fuzzy msgid "Tiled" -msgstr "Πλακίδιο" +msgstr "Πλακιδιοποιημένο" msgid "Vertical gradient" -msgstr "" +msgstr "Κάθετη διαβάθμιση" msgid "Wallpaper" msgstr "Ταπετσαρία" -#, fuzzy msgid "Background Brightness" msgstr "Φωτεινότητα Φόντου" -#, fuzzy msgid "Background Saturation" -msgstr "Κορεσμός Φόντου." +msgstr "Κορεσμός Φόντου" -#, fuzzy msgid "Background in Widget Mode" -msgstr "Αρχείο εικόνας Φόντου." +msgstr "Φόντο σε κατάσταση Widget" -#, fuzzy msgid "Brightness of non-widget windows in widget modes." -msgstr "Φωτεινότητα των ξεθωριασμένων παραθύρων" +msgstr "Φωτεινότητα των μη-widget παραθύρων σε καταστάσεις widget." msgid "End Widget Mode on Click" -msgstr "" +msgstr "Τέλος Κατάστασης Widget με Κλικ" msgid "End widget mode when a non-widget window is clicked." -msgstr "" +msgstr "Τέλος κατάστασης widget όταν ένα μη-widget παράθυρο κλικαριστεί." -#, fuzzy msgid "Focus Widget Layer" -msgstr "Συσκευή" +msgstr "Εστίαση Επιπέδου Widget" msgid "Focus a window in the widget layer when activating the layer" msgstr "" +"Εστίαση ενός παραθύρου στο επίπεδο widget όταν ενεργοποιηθεί το επίπεδο" -#, fuzzy msgid "Saturation of non-widget windows in widget modes." -msgstr "Κορεσμός των ξεθωριασμένων παραθύρων" +msgstr "Κορεσμός των μη-widget παραθύρων σε καταστάσεις widget." -#, fuzzy msgid "Show or hide widget windows" -msgstr "Εμφάνιση ελαχιστοποιημένων παραθύρων" +msgstr "Εμφάνιση ή απόκρυψη widget παραθύρων" msgid "Show widget windows on a separate layer" -msgstr "" +msgstr "Εμφάνιση widget παραθύρων σε ένα ξεχωριστό επίπεδο" msgid "Time (in s) for fading into/out of the widget layer." -msgstr "" +msgstr "Χρόνος (σε s) για ξεθώριασμα μέσα/έξω στο επίπεδο widget." -#, fuzzy msgid "Toggle Widget Display" -msgstr "Εκκίνηση Αρνητικού Παραθύρου" +msgstr "Εκκίνηση Οθόνης Widget" -#, fuzzy msgid "Widget Layer" -msgstr "Συσκευή" +msgstr "Επίπεδο Widget" -#, fuzzy msgid "Widget Windows" -msgstr "Τοποθέτηση Παραθύρων στο Δαχτυλίδι" +msgstr "Παράθυρα Widget" -#, fuzzy msgid "Windows that always should be treated as widgets" -msgstr "Παράθυρα που πρέπει να μορφοποιηθούν απο προεπιλογή" +msgstr "Παράθυρα που πρέπει να χειριστούν ως widgets" msgid "Above others windows" msgstr "Πάνω απο όλα τα άλλα παράθυρα" @@ -4847,6 +4895,14 @@ msgid "Matches" msgstr "Ταιριάσματα" +#, fuzzy +msgid "Maximized" +msgstr "Μεγιστομεγιστοποίηση" + +#, fuzzy +msgid "Maximized windows" +msgstr "Μη μεγιστοποιούμενα παράθυρα" + msgid "No ARGB visuals" msgstr "Μη ARGB οπτικά" @@ -4887,7 +4943,7 @@ msgstr "Θέσε κανόνες παραθύρων" msgid "Size rules" -msgstr "" +msgstr "Κανόνες μεγέθους" msgid "Sized Windows" msgstr "Παράθυρα με Διαστάσεις" @@ -4925,6 +4981,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Παράμετρος Διόρθωσης για το Σύστημα AIGLX" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Διόρθωση Μενού του Firefox" @@ -4932,10 +4991,10 @@ msgstr "Διόρθωση της χαλασμένης εφαρμογής glProgramEnvParameter4f " msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." -msgstr "" +msgstr "Διόρθωση για χαλασμένο GLX_MESA_copy_sub_buffer on XGL στον fglrx." msgid "Fix screen updates in XGL with fglrx." -msgstr "" +msgstr "Διόρθωση ενημερώσεων οθόνης στο XGL με τον fglrx." msgid "Fix window type of Firefox and Thunderbird menus." msgstr "Διόρθωση του είδους παραθύρου μενού του Firefox και του Thunderbird." @@ -4968,6 +5027,12 @@ "Κάνε \"σε όλες τις επιφάνειες εργασίας\" τα παράθυρα καρφιτσωμένα. Τα " "καρφιτσωμένα παράθυρα είναι ορατά σε όλες τις εικονικές επιφάνειες εργασίας." +#, fuzzy +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" +"Ενεργοποίηση του επόμενου παραθύρου που του έχει τεθεί το χαρακτηριστικό " +"\"επισταμένη προσοχή\". " + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "Κάνε τις Wine και παραδοσιακές εφαρμογές να γίνονται πλήρους οθόνης σωστά." @@ -4994,6 +5059,325 @@ msgid "Workarounds" msgstr "Μοντίφες" +#~ msgid "Airplane" +#~ msgstr "Aεροπλάνο" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Μήκος Πορείας Πτήσης Αεροπλάνου" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Χρονικό Βήμα Γραφικής Απεικόνισης για Έντονα Εφέ" + +#~ msgid "Automatic" +#~ msgstr "Αυτόματα" + +#~ msgid "Beam" +#~ msgstr "Ακτινοβολία" + +#~ msgid "Beam Color" +#~ msgstr "Χρώμα Ακτινοβολίας" + +#~ msgid "Beam Life" +#~ msgstr "Διάρκεια Ζωής Ακτινοβολίας" + +#~ msgid "Beam Slowdown" +#~ msgstr "Φρενάρισμα Ακτινοβολίας" + +#~ msgid "Beam Spacing" +#~ msgstr "Χώρος Ανάπτυξης της Ακτινοβολίας" + +#~ msgid "Beam Up" +#~ msgstr "Διακτινισμός" + +#~ msgid "Beam Width" +#~ msgstr "Πλάτος Ακτινοβολίας" + +#~ msgid "Beam color." +#~ msgstr "Χρώμα ακτινοβολίας." + +#~ msgid "Beam life." +#~ msgstr "Διάρκεια ζωής ακτινοβολίας." + +#~ msgid "Beam slowdown." +#~ msgstr "Φρενάρισμα ακτινοβολίας." + +#~ msgid "Beam width." +#~ msgstr "Πλάτος ακτινοβολίας." + +#~ msgid "Burn" +#~ msgstr "Κάψιμο" + +#~ msgid "Domino" +#~ msgstr "Ντόμινο" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Κατεύθυνση Πτώσης Κομματιών του Ντόμινο" + +#~ msgid "Explode" +#~ msgstr "Έκρηξη" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Κατεύθυνση πτώσης για τα κομμάτια του Ντόμινο." + +#~ msgid "Fire" +#~ msgstr "Φωτιά" + +#~ msgid "Fire Smoke" +#~ msgstr "Καπνός Φωτιάς" + +#~ msgid "Fire constant speed" +#~ msgstr "Σταθερή ταχύτητα φωτιάς" + +#~ msgid "Fire direction" +#~ msgstr "Κατεύθυνση φωτιάς" + +#~ msgid "Fire direction." +#~ msgstr "Κατεύθυνση φωτιάς." + +#~ msgid "Fire smoke." +#~ msgstr "Καπνός φωτιάς." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Πτήση προς τη Γραμμή Εργασιών στην Ελαχιστοποίηση" + +#~ msgid "Fold" +#~ msgstr "Δίπλωμα" + +#~ msgid "Fold Direction" +#~ msgstr "Κατεύθυνση διπλώματος" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Κατεύθυνση ανοίγματος των πτυχών των κομματιών στο εφέ Ξυράφι." + +#~ msgid "Hexagonal" +#~ msgstr "Εξάγωνο" + +#~ msgid "In" +#~ msgstr "Μέσα" + +#~ msgid "In-out" +#~ msgstr "Μέσα-Εξω" + +#~ msgid "Leaf Spread" +#~ msgstr "Διασπορά Φύλλων" + +#~ msgid "Left-right" +#~ msgstr "Αριστερά-δεξιά" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Μήκος της πτήσης του αεροπλάνου." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Εξάρτηση διάρκειας εφέ φωτιάς ανάλογα με το ύψος του παραθύρου." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Κατεύθυνση(εις) κίνησης για τα κομμάτια του παραθύρου." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Αριθμός Στοιχείων Φωτιάς" + +#~ msgid "Number of fire particles." +#~ msgstr "Αριθμός στοιχείων φωτιάς." + +#~ msgid "Out" +#~ msgstr "Έξω" + +#~ msgid "Razr" +#~ msgstr "Ξυράφι" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Κατεύθυνση Ανοίγματος Πτυχών του Ξυραφιού" + +#~ msgid "Rectangular" +#~ msgstr "Ορθογώνιο" + +#~ msgid "Rotation Angle" +#~ msgstr "Γωνία Περιστροφής" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Γωνία Περιστροφής των γραφικά απεικονιζόμενων παραθύρων (σε μοίρες)" + +#~ msgid "Skewer" +#~ msgstr "Διατρύπημα" + +#~ msgid "Skewer Direction" +#~ msgstr "Κατεύθυνση Διατρυπήματος" + +#~ msgid "Spacing between beams." +#~ msgstr "Χώρος μεταξύ ακτινοβολιών." + +#~ msgid "Tessellation Type" +#~ msgstr "Είδος Μωσαικού" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Είδος Μωσαικού για τα εκτοξευόμενα κομμάτια του παραθύρου." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Είδος Μωσαικού για τα κομμάτια του παραθύρου." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Πόσος χρόνος σε χιλιοστά του δευτερολέπτου απαιτείται μεταξύ κάθε " +#~ "πραγματοποίησης έντονης γραφικής απεικόνισης (Πχ Κάψιμο, Ακτινοβολία). " +#~ "Όσο Υψηλότερος είναι ο αριθμός, τόσο χειρότερες γίνονται οι κινήσεις." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Το γραφικά απεικονιζόμενο παράθυρο θα χωριστεί σε κομμάτια σύμφωνα με ένα " +#~ "πλέγμα. Ορισμός του αριθμού των κελιών στο πλέγμα ανάλογα με το ύψος του " +#~ "του παραθύρου." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Το γραφικά απεικονιζόμενο παράθυρο θα χωριστεί σε κομμάτια σύμφωνα με ένα " +#~ "πλέγμα. Ορισμός του αριθμού των κελιών στο πλέγμα ανάλογα με το πλάτος " +#~ "του παραθύρου." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Το παράθυρο που εκρύγνειται θα χωριστεί σε κομμάτια σύμφωνα με ένα " +#~ "πλέγμα. Ορισμός των κελιών του πλέγματος ανάλογα με το ύψος του παραθύρου." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Το παράθυρο που εκρύγνειται θα χωριστεί σε κομμάτια σύμφωνα με ένα " +#~ "πλέγμα. Ορισμός των κελιών του πλέγματος ανάλογα με το πλάτος του " +#~ "παραθύρου." + +#~ msgid "Thickness" +#~ msgstr "Πάχος" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Πάχος των Γραφικά Απεικονιζόμενων Πολυγώνων" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Πάχος των Πολυγώνων που Εκρήγνυνται" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "" +#~ "Πάχος των κομματιών των γραφικά απεικονιζόμενων παραθύρων (σε pixels)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Πάχος των κομματιών των παραθύρων που εκρύγνηνται (σε pixels)." + +#~ msgid "Up-down" +#~ msgstr "Πάνω-κάτω" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Εαν το παράθυρο θα πεταέι στην γραμμή εργασιών όταν ελαχιστοποιείται με " +#~ "το εφέ του Αεροπλάνου." + +#~ msgid "Window Grid Height" +#~ msgstr "Ύψος Πλέγματος Παραθύρου" + +#~ msgid "Window Grid Width" +#~ msgstr "Πλάτος Πλέγματος Παραθύρου" + +#~ msgid "Window folding direction." +#~ msgstr "Κατεύθυνση διπλώματος παραθύρου." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Πάχος παραθύρου σε pixels. Ορισμός του σε μεγαλύτερη τιμή απ'το 0 θα " +#~ "απενεργοποιήσει την σκίαση, το θόλωμα, και την αντανάκλαση κατα την " +#~ "διάρκεια της γραφικής απεικόνισης." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Έκταση (μέγεθος των κυμάτων στην πτυχή) των Οριζόντιων Πτυχών σε σχέση με " +#~ "το πλάτος του παραθύρου(Μήκος Κύματος). Οι αρνητικές τιμές κάνουν πτυχές " +#~ "προς τα έξω" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Έκταση (μέγεθος των κυμάτων στην πτυχή) των καμπυλώτων πτυχών σε σχέση με " +#~ "το πλάτος του παραθύρου(Πλάτος Ταλάντωσης). Οι αρνητικές τιμές κάνουν " +#~ "πτυχές προς τα έξω" + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "Έκταση κυμάτων (μέγεθος κυμάτων) σε σχέση με το ύψος του παραθύρου." + +#~ msgid "Brightness Decrease" +#~ msgstr "Μείωση Φωτεινότητας" + +#~ msgid "Brightness Increase" +#~ msgstr "Αύξηση Φωτεινότητας" + +#~ msgid "Brightness Step" +#~ msgstr "Βήμα Φωτεινότητας" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Φωτεινότητα και Κορεσμός" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Ρυθμιστικά Φωτεινότητας και Κορεσμού" + +#~ msgid "Brightness settings" +#~ msgstr "Ρυθμίσεις Φωτεινότητας" + +#~ msgid "Brightness values for windows" +#~ msgstr "Τιμές φωτεινότητας για παράθυρα" + +#~ msgid "Brightness window values" +#~ msgstr "Τιμές φωτεινότητας παραθύρων" + +#~ msgid "Brightness windows" +#~ msgstr "Φωτεινότητα παραθύρων" + +#~ msgid "Saturation Decrease" +#~ msgstr "Μείωση Κορεσμού" + +#~ msgid "Saturation Increase" +#~ msgstr "Αύξηση Κορεσμού" + +#~ msgid "Saturation Step" +#~ msgstr "Βήμα Κορεσμού" + +#~ msgid "Saturation settings" +#~ msgstr "Ρυθμίσεις κορεσμού" + +#~ msgid "Saturation values for windows" +#~ msgstr "Τιμές κορεσμού για παράθυρα" + +#~ msgid "Saturation window values" +#~ msgstr "Τιμές κορεσμού παραθύρων" + +#~ msgid "Saturation windows" +#~ msgstr "Κορεσμός παραθύρων" + +#~ msgid "Window specific" +#~ msgstr "Συγκεκριμένα για παράθυρο" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Παράθυρα που πρέπει να έχουν προεπιλεγμένη διαφορετική φωτεινότητα" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Παράθυρα που πρέπει να έχουν προεπιλεγμένο διαφορετικό κορεσμό" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Κλείσιμο Παραθύρων στην Κλιμάκωση" + #~ msgid "Animation Speed" #~ msgstr "Ταχύτητα Γραφικής Απεικόνισης" @@ -5030,9 +5414,6 @@ #~ msgid "Misc. options" #~ msgstr "Διάφορες επιλογές" -#~ msgid "Show minimized windows" -#~ msgstr "Εμφάνιση ελαχιστοποιημένων παραθύρων" - #~ msgid "Tile or Stretch" #~ msgstr "Μετατροπή σε Πλακίδια ή Τέντωμα" @@ -5064,9 +5445,6 @@ #~ "Δημιουργεί Mipmaps που βελτιώνουν την εμφάνιση των υφών γενικά, και " #~ "περιορίζει τις κομμένες άκρες." -#~ msgid "Window width" -#~ msgstr "Πλάτος Παραθύρου" - #~ msgid "Set window as widget" #~ msgstr "Θέσε παράθυρο ως συσκευή" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/en_GB.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/en_GB.po --- compiz-fusion-plugins-unsupported-0.7.6/po/en_GB.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/en_GB.po 2008-09-17 14:29:33.000000000 +0100 @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: compiz-fusion 0.7.2\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:50+0530\n" -"PO-Revision-Date: 2008-03-13 08:06+0100\n" +"POT-Creation-Date: 2008-09-15 14:45+0530\n" +"PO-Revision-Date: 2008-05-26 15:47+0200\n" "Last-Translator: David Lodge \n" "Language-Team: en_GB \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" msgstr "3D Only On Mouse Rotate" @@ -115,6 +115,12 @@ msgid "Brightness of faded windows" msgstr "Brightness of faded windows" +msgid "Enable ADD Helper on start" +msgstr "Enable ADD Helper on start" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Enables ADD helper when it is first loaded." + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -144,12 +150,6 @@ msgid "Window types that should be Opacified." msgstr "Window types that should be Opacified." -msgid "Airplane" -msgstr "Airplane" - -msgid "Airplane Flying Path Length" -msgstr "Airplane Flying Path Length" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -157,20 +157,6 @@ "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." - msgid "Angle of window at the end of the animation." msgstr "Angle of window at the end of the animation." @@ -180,9 +166,6 @@ msgid "Animation Time Step" msgstr "Animation Time Step" -msgid "Animation Time Step For Intense Effects" -msgstr "Animation Time Step For Intense Effects" - msgid "Animation duration in milliseconds for close effect." msgstr "Animation duration in milliseconds for close effect." @@ -201,51 +184,12 @@ msgid "Animations" msgstr "Animations" -msgid "Automatic" -msgstr "Automatic" - msgid "Away Angle" msgstr "Away Angle" msgid "Away Position" msgstr "Away Position" -msgid "Beam" -msgstr "Beam" - -msgid "Beam Color" -msgstr "Beam Colour" - -msgid "Beam Life" -msgstr "Beam Life" - -msgid "Beam Slowdown" -msgstr "Beam Slowdown" - -msgid "Beam Spacing" -msgstr "Beam Spacing" - -msgid "Beam Up" -msgstr "Beam Up" - -msgid "Beam Width" -msgstr "Beam Width" - -msgid "Beam color." -msgstr "Beam colour." - -msgid "Beam life." -msgstr "Beam life." - -msgid "Beam slowdown." -msgstr "Beam slowdown." - -msgid "Beam width." -msgstr "Beam width." - -msgid "Burn" -msgstr "Burn" - msgid "Close Animation" msgstr "Close Animation" @@ -269,7 +213,8 @@ msgid "Curved Fold" msgstr "Curved Fold" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Curved Fold Amplitude" msgid "Dodge" @@ -278,15 +223,6 @@ msgid "Dodge Gap Ratio" msgstr "Dodge Gap Ratio" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Domino Piece Falling Direction" - -msgid "Down" -msgstr "Down" - msgid "Dream" msgstr "Dream" @@ -296,77 +232,22 @@ msgid "Effect Settings" msgstr "Effect Settings" -msgid "Explode" -msgstr "Explode" - msgid "Fade" msgstr "Fade" -msgid "Falling direction for Domino pieces." -msgstr "Falling direction for Domino pieces." - -msgid "Fire" -msgstr "Fire" - -msgid "Fire Particle Color" -msgstr "Fire Particle Colour" - -msgid "Fire Particle Life" -msgstr "Fire Particle Life" - -msgid "Fire Particle Size" -msgstr "Fire Particle Size" - -msgid "Fire Particle Slowdown" -msgstr "Fire Particle Slowdown" - -msgid "Fire Smoke" -msgstr "Fire Smoke" - -msgid "Fire constant speed" -msgstr "Fire constant speed" - -msgid "Fire direction" -msgstr "Fire direction" - -msgid "Fire direction." -msgstr "Fire direction." - -msgid "Fire particle color." -msgstr "Fire particle colour." - -msgid "Fire particle life." -msgstr "Fire particle life." - -msgid "Fire particle size." -msgstr "Fire particle size." - -msgid "Fire particle slowdown." -msgstr "Fire particle slowdown." - -msgid "Fire smoke." -msgstr "Fire smoke." - msgid "Fixed window interior during the Rollup animation." msgstr "Fixed window interior during the Rollup animation." -msgid "Fly to TaskBar on Minimize" -msgstr "Fly to TaskBar on Minimise" - msgid "Focus Animation" msgstr "Focus Animation" msgid "Focus Effect" msgstr "Focus Effect" -msgid "Fold" -msgstr "Fold" - -msgid "Fold Direction" -msgstr "Fold Direction" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Fold opening direction for pieces in Razr effect." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "Glide 1" @@ -374,16 +255,11 @@ msgid "Glide 2" msgstr "Glide 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Have random colours for the fire effect, also known as Mystical Fire." - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Horizontal Folds" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Horizontal Folds Amplitude" msgid "How spring-like the Sidekick animation should be." @@ -392,24 +268,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "How spring-like the Zoom animation should be." -msgid "In" -msgstr "In" - -msgid "In-out" -msgstr "In-out" - -msgid "Leaf Spread" -msgstr "Leaf Spread" - -msgid "Left" -msgstr "Left" - -msgid "Left-right" -msgstr "Left-right" - -msgid "Length of airplane's flying path." -msgstr "Length of airplane's flying path." - msgid "Magic Lamp" msgstr "Magic Lamp" @@ -431,9 +289,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Magic Lamp Open/Close Moving End" -msgid "Make fire effect duration be dependent on window height." -msgstr "Make fire effect duration be dependent on window height." - msgid "Minimize Animation" msgstr "Minimise Animation" @@ -443,21 +298,12 @@ msgid "Minimize/Unminimize Only" msgstr "Minimise/Restore Only" -msgid "Movement direction(s) for window pieces." -msgstr "Movement direction(s) for window pieces." - msgid "None" msgstr "None" -msgid "Number Of Fire Particles" -msgstr "Number Of Fire Particles" - msgid "Number of Horizontal Folds" msgstr "Number of Horizontal Folds" -msgid "Number of fire particles." -msgstr "Number of fire particles." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "Number of rotations for Sidekick (plus or minus 10% for randomness)." @@ -486,15 +332,13 @@ msgid "Options" msgstr "Options" -msgid "Out" -msgstr "Out" - msgid "Pool" msgstr "Pool" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Pool of effects to be chosen from if Random effect is selected. Click reset " "to restore full list." @@ -508,36 +352,15 @@ msgid "Random Effects" msgstr "Random Effects" -msgid "Randomly Colored Fire" -msgstr "Randomly Coloured Fire" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "Ratio of gaps between dodge start times to focus duration." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Razr Fold Opening Direction" - -msgid "Rectangular" -msgstr "Rectangular" - -msgid "Right" -msgstr "Right" - msgid "Roll Up" msgstr "Roll Up" msgid "Rollup Fixed Interior" msgstr "Rollup Fixed Interior" -msgid "Rotation Angle" -msgstr "Rotation Angle" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Rotation angle of animated window pieces (in degrees)." - msgid "Shade Animation" msgstr "Shade Animation" @@ -553,15 +376,6 @@ msgid "Sidekick Springiness" msgstr "Sidekick Springiness" -msgid "Skewer" -msgstr "Skewer" - -msgid "Skewer Direction" -msgstr "Skewer Direction" - -msgid "Spacing between beams." -msgstr "Spacing between beams." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -574,15 +388,6 @@ msgstr "" "Starting width of open effect and ending width of close effect for Vacuum." -msgid "Tessellation Type" -msgstr "Tessellation Type" - -msgid "Tessellation type for exploding window pieces." -msgstr "Tessellation type for exploding window pieces." - -msgid "Tessellation type for window pieces." -msgstr "Tessellation type for window pieces." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -590,29 +395,6 @@ "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." - msgid "The animation effect shown when closing a window." msgstr "The animation effect shown when closing a window." @@ -628,20 +410,6 @@ msgid "The animation effect shown when shading a window." msgstr "The animation effect shown when shading a window." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "The maximum amplitude (size of the waves) Magic Lamp will have." @@ -656,36 +424,12 @@ msgstr "" "The number of horizontal folds that occur in the Horizontal Fold animation." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "The wave amplitude (size of the waves) relative to the window height." - msgid "The width of the wave relative to the window height." msgstr "The width of the wave relative to the window height." msgid "The windows that will be animated." msgstr "The windows that will be animated." -msgid "Thickness" -msgstr "Thickness" - -msgid "Thickness of Animated Polygons" -msgstr "Thickness of Animated Polygons" - -msgid "Thickness of Exploding Polygons" -msgstr "Thickness of Exploding Polygons" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Thickness of animated window pieces (in pixels)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Thickness of exploding window pieces (in pixels)." - -msgid "Up" -msgstr "Up" - -msgid "Up-down" -msgstr "Up-down" - msgid "Use various animations as window effects" msgstr "Use various animations as window effects" @@ -722,16 +466,17 @@ msgid "Wave" msgstr "Wave" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Wave Amplitude" msgid "Wave Width" msgstr "Wave Width" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Whether the window should fly to taskbar when minimised with Airplane effect." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -762,28 +507,12 @@ "Whether the window should zoom to taskbar when minimised with Horizontal " "Folds effect." -msgid "Window Grid Height" -msgstr "Window Grid Height" - -msgid "Window Grid Width" -msgstr "Window Grid Width" - -msgid "Window folding direction." -msgstr "Window folding direction." - msgid "Window that should animate with this effect when focused." msgstr "Window that should animate with this effect when focused." msgid "Window that should animate with this effect when shaded." msgstr "Window that should animate with this effect when shaded." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." - msgid "Zoom" msgstr "Zoom" @@ -892,65 +621,12 @@ msgid "Y position" msgstr "Y position" -msgid "Brightness Decrease" -msgstr "Brightness Decrease" - -msgid "Brightness Increase" -msgstr "Brightness Increase" - -msgid "Brightness Step" -msgstr "Brightness Step" - -msgid "Brightness and Saturation" -msgstr "Brightness and Saturation" - -msgid "Brightness and Saturation adjustments" -msgstr "Brightness and Saturation adjustments" - -msgid "Brightness settings" -msgstr "Brightness settings" - -msgid "Brightness values for windows" -msgstr "Brightness values for windows" - -msgid "Brightness window values" -msgstr "Brightness window values" - -msgid "Brightness windows" -msgstr "Brightness windows" - -msgid "General" -msgstr "General" - -msgid "Saturation Decrease" -msgstr "Saturation Decrease" - -msgid "Saturation Increase" -msgstr "Saturation Increase" - -msgid "Saturation Step" -msgstr "Saturation Step" - -msgid "Saturation settings" -msgstr "Saturation settings" - -msgid "Saturation values for windows" -msgstr "Saturation values for windows" - -msgid "Saturation window values" -msgstr "Saturation window values" - -msgid "Saturation windows" -msgstr "Saturation windows" - -msgid "Window specific" -msgstr "Window specific" - -msgid "Windows that should have a different brightness by default" -msgstr "Windows that should have a different brightness by default" +#, fuzzy +msgid "Bicubic filter" +msgstr "Switch filter" -msgid "Windows that should have a different saturation by default" -msgstr "Windows that should have a different saturation by default" +msgid "Bicubic texture filtering" +msgstr "" msgid "Color filter" msgstr "Colour filter" @@ -1044,6 +720,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" +msgid "Above" +msgstr "Above" + msgid "Adjust bottom face image to rotation" msgstr "Adjust bottom face image to rotation" @@ -1065,6 +744,18 @@ msgid "Appearance" msgstr "Appearance" +msgid "Aspect ratio" +msgstr "Aspect ratio" + +msgid "Aspect ratio of the deformed cube" +msgstr "Aspect ratio of the deformed cube" + +msgid "Auto zoom" +msgstr "Auto zoom" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Auto zoom only on Mouse Rotate" + msgid "Behaviour" msgstr "Behaviour" @@ -1098,18 +789,54 @@ msgid "Color of bottom face of the cube" msgstr "Colour of bottom face of the cube" +msgid "Color of the ground (far)." +msgstr "Colour of the ground (far)." + +msgid "Color of the ground (near)." +msgstr "Colour of the ground (near)." + msgid "Color of top face of the cube" msgstr "Colour of top face of the cube" +msgid "Compiz cube reflection and deformation" +msgstr "Compiz cube reflection and deformation" + msgid "Cube Bottom Color" msgstr "Cube Bottom Colour" -msgid "Cube Caps" -msgstr "Cube Caps" +msgid "Cube Reflection and Deformation" +msgstr "Cube Reflection and Deformation" msgid "Cube Top Color" msgstr "Cube Top Colour" +msgid "Cube caps" +msgstr "Cube caps" + +msgid "Cylinder" +msgstr "Cylinder" + +msgid "Deform caps" +msgstr "Deform caps" + +msgid "Deform cube caps." +msgstr "Deform cube caps." + +msgid "Deform only on mouse rotate" +msgstr "Deform only on mouse rotate" + +msgid "Deformation" +msgstr "Deformation" + +msgid "Deformation in unfold cube mode." +msgstr "Deformation in unfold cube mode." + +msgid "Deformation mode." +msgstr "Deformation mode." + +msgid "Distance" +msgstr "Distance" + msgid "Draw bottom face" msgstr "Draw bottom face" @@ -1122,12 +849,36 @@ msgid "Draw top face of the cube" msgstr "Draw top face of the cube" +msgid "Enabled" +msgstr "Enabled" + +msgid "Give cube a reflective ground." +msgstr "Give cube a reflective ground." + msgid "Go back to previous image for bottom face of the cube" msgstr "Go back to previous image for bottom face of the cube" msgid "Go back to previous image for top face of the cube" msgstr "Go back to previous image for top face of the cube" +msgid "Ground color(far)" +msgstr "Ground colour (far)" + +msgid "Ground color(near)" +msgstr "Ground colour(near)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "Initiates cube cylinder deformation only if rotation is mouse driven." + +msgid "Intensity" +msgstr "Intensity" + +msgid "Jumpy" +msgstr "Jumpy" + +msgid "Jumpy reflection" +msgstr "Jumpy reflection" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1136,6 +887,18 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "List of PNG and SVG files that should be rendered on top face of cube" +msgid "Maintain bottom aspect ratio" +msgstr "Maintain bottom aspect ratio" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "Maintain bottom cap image aspect ratio." + +msgid "Maintain top aspect ratio" +msgstr "Maintain top aspect ratio" + +msgid "Maintain top cap image aspect ratio." +msgstr "Maintain top cap image aspect ratio." + msgid "Next bottom image" msgstr "Next bottom image" @@ -1148,8 +911,23 @@ msgid "Prev top image" msgstr "Prev top image" -msgid "Render images on top and bottom of the cube" -msgstr "Render images on top and bottom of the cube" +msgid "Reflection" +msgstr "Reflection" + +msgid "Reflection ground size" +msgstr "Reflection ground size" + +msgid "Reflection ground size." +msgstr "Reflection ground size." + +msgid "Reflection intensity" +msgstr "Reflection intensity" + +msgid "Reflection mode" +msgstr "Reflection mode" + +msgid "Reflection mode." +msgstr "Reflection mode." msgid "Scale bottom image" msgstr "Scale bottom image" @@ -1163,69 +941,35 @@ msgid "Scale top image" msgstr "Scale top image" +msgid "Sphere" +msgstr "Sphere" + msgid "Top image files" msgstr "Top image files" -msgid "Above" -msgstr "Above" +msgid "Unfold cube deformation" +msgstr "Unfold cube deformation" -msgid "Auto zoom" -msgstr "Auto zoom" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Zoom out automatically only on mouse rotate." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Auto zoom only on Mouse Rotate" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Zoom out automatically to make the cube fit to the screen." -msgid "Color of the ground (far)." -msgstr "Colour of the ground (far)." +#, fuzzy +msgid "Cube Caps" +msgstr "Cube caps" -msgid "Color of the ground (near)." -msgstr "Colour of the ground (near)." +msgid "Render images on top and bottom of the cube" +msgstr "Render images on top and bottom of the cube" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz cube reflection" +msgstr "Cube Reflection" msgid "Cube Reflection" msgstr "Cube Reflection" -msgid "Distance" -msgstr "Distance" - -msgid "Ground color(far)" -msgstr "Ground colour (far)" - -msgid "Ground color(near)" -msgstr "Ground colour(near)" - -msgid "Intensity" -msgstr "Intensity" - -msgid "Jumpy" -msgstr "Jumpy" - -msgid "Jumpy reflection" -msgstr "Jumpy reflection" - -msgid "Reflection ground size" -msgstr "Reflection ground size" - -msgid "Reflection ground size." -msgstr "Reflection ground size." - -msgid "Reflection intensity" -msgstr "Reflection intensity" - -msgid "Reflection mode" -msgstr "Reflection mode" - -msgid "Reflection mode." -msgstr "Reflection mode." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Zoom out automatically only on mouse rotate." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Zoom out automatically to make the cube fit to the screen." - msgid "Animation used when switching to expo mode" msgstr "Animation used when switching to expo mode" @@ -1241,21 +985,14 @@ msgid "Button binding to switch to next viewport in expo" msgstr "Button binding to switch to next viewport in expo" -#, fuzzy msgid "Curve" -msgstr "Curved Fold" +msgstr "Curve" -#, fuzzy msgid "Curve strength" -msgstr "Motion Blur strength." - -#, fuzzy -msgid "Deformation" -msgstr "Duration" +msgstr "Curve strength" -#, fuzzy msgid "Deformation of the expo wall" -msgstr "Distance of the expo wall" +msgstr "Deformation of the expo wall" msgid "Distance between viewports" msgstr "Distance between viewports" @@ -1344,9 +1081,6 @@ msgid "Previous viewport" msgstr "Previous viewport" -msgid "Reflection" -msgstr "Reflection" - msgid "Reflection Scale" msgstr "Reflection Scale" @@ -1369,11 +1103,10 @@ msgstr "Show a reflection of the viewports on the ground" msgid "Strength of the deformation in curve mode" -msgstr "" +msgstr "Strength of the deformation in curve mode" -#, fuzzy msgid "Tilt" -msgstr "Tile" +msgstr "Tilt" msgid "Timeframe to execute a double click" msgstr "Timeframe to execute a double click" @@ -1387,9 +1120,8 @@ msgid "Zoom time" msgstr "Zoom time" -#, fuzzy msgid "Activate Demanding Attention Window" -msgstr "Activate a given window" +msgstr "Activate Demanding Attention Window" msgid "Activate Window" msgstr "Activate Window" @@ -1398,7 +1130,7 @@ msgstr "Activate a given window" msgid "Activate next window which has the \"demands attention\" flag set." -msgstr "" +msgstr "Activate next window which has the \"demands attention\" flag set." msgid "Extra WM Actions" msgstr "Extra WM Actions" @@ -1455,6 +1187,10 @@ msgid "Center the mouse" msgstr "Centre the mouse" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Scale the mouse pointer" + msgid "Enable focus tracking" msgstr "Enable focus tracking" @@ -1515,19 +1251,13 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "Hides the original mouse pointer when zoomed in and scaling the mouse" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"How often to poll the mouse position, in milliseconds. Reduce this to reduce " -"choppy behavior." +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Minimum Scale Factor" msgid "Mouse Behaviour" msgstr "Mouse Behaviour" -msgid "Mouse Poll Interval" -msgstr "Mouse Poll Interval" - msgid "Mouse Restrain Margin" msgstr "Mouse Restrain Margin" @@ -1610,12 +1340,21 @@ msgid "Speed" msgstr "Speed" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Scale the mouse pointer" + msgid "Sync Mouse" msgstr "Synchronise Mouse" msgid "Target Focused Window on Specific level" msgstr "Target Focused Window on Specific level" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "The size of the margin to add when attempting to restrain the mouse." @@ -1631,9 +1370,22 @@ msgid "Use linear filter when zoomed in" msgstr "Use linear filter when zoomed in" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Zoom Area Movement" +msgid "Zoom Box" +msgstr "Zoom Box" + msgid "Zoom In" msgstr "Zoom In" @@ -1661,6 +1413,9 @@ msgid "Zoom factor" msgstr "Zoom factor" +msgid "Zoom in on a boxed area" +msgstr "Zoom in on a boxed area" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "Zoom in/out by this factor. Higher value means quicker zooming." @@ -1716,20 +1471,54 @@ msgid "Toggle window fake ARGB." msgstr "Toggle window fake ARGB." +#, fuzzy +msgid "Add Particle" +msgstr "Particle Life" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Background brightness" -msgid "Background brightness during paint" -msgstr "Background brightness during paint" +msgid "Background brightness during paint" +msgstr "Background brightness during paint" + +msgid "Clear" +msgstr "Clear" + +msgid "Clear (button)" +msgstr "Clear (button)" + +msgid "Clear (key)" +msgstr "Clear (key)" + +msgid "Fire Particle Color" +msgstr "Fire Particle Colour" + +msgid "Fire Particle Life" +msgstr "Fire Particle Life" + +msgid "Fire Particle Size" +msgstr "Fire Particle Size" + +msgid "Fire Particle Slowdown" +msgstr "Fire Particle Slowdown" + +msgid "Fire particle color." +msgstr "Fire particle colour." + +msgid "Fire particle life." +msgstr "Fire particle life." -msgid "Clear" -msgstr "Clear" +msgid "Fire particle size." +msgstr "Fire particle size." -msgid "Clear (button)" -msgstr "Clear (button)" +msgid "Fire particle slowdown." +msgstr "Fire particle slowdown." -msgid "Clear (key)" -msgstr "Clear (key)" +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Have random colours for the fire effect, also known as Mystical Fire." msgid "Initiate (button)" msgstr "Initiate (button)" @@ -1752,6 +1541,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Paint fire or other particles on the screen" +msgid "Randomly Colored Fire" +msgstr "Randomly Coloured Fire" + msgid "Cube Gears" msgstr "Cube Gears" @@ -1845,6 +1637,9 @@ msgid "Font Size" msgstr "Font Size" +msgid "General" +msgstr "General" + msgid "Glass" msgstr "Glass" @@ -2323,9 +2118,8 @@ msgid "Zoom factor for keyboard initiated magnifier." msgstr "Zoom factor for keyboard initiated magnifier." -#, fuzzy msgid "Ignore already overlapping windows in the calculations" -msgstr "Ignore sticky windows in the calculations" +msgstr "Ignore already overlapping windows in the calculations" msgid "Ignore sticky windows in the calculations" msgstr "Ignore sticky windows in the calculations" @@ -2343,13 +2137,12 @@ "Treat sticky windows as non-existant when calculating space to use for the " "resized window." -#, fuzzy msgid "" "Treat windows that are already overlapping with the current window as non-" "existant when calculating space to use for the maximumize window." msgstr "" -"Treat sticky windows as non-existant when calculating space to use for the " -"resized window." +"Treat windows that are already overlapping with the current window as non-" +"existant when calculating space to use for resizing the window." msgid "" "Trigger a resize of the window currently focused so it fits as much of the " @@ -2359,7 +2152,7 @@ "available screenspace as possible." msgid "Trigger maximumize" -msgstr "Trigger reizing of window" +msgstr "Trigger resizing of window" msgid "Accumulation buffer" msgstr "Accumulation buffer" @@ -2413,7 +2206,7 @@ msgstr "Assign mouse gestures to any existing action" msgid "Detect Diagonal Movements" -msgstr "" +msgstr "Detect Diagonal Movements" msgid "Gesture" msgstr "Gesture" @@ -2428,6 +2221,8 @@ "If this option is selected, diagonal movements are detected, which may lead " "to a decreased detection accuracy." msgstr "" +"If this option is selected, diagonal movements are detected, which may lead " +"to a decreased detection accuracy." msgid "Mouse gesture to assign an action to." msgstr "Mouse gesture to assign an action to." @@ -2444,9 +2239,19 @@ msgid "Start gesture" msgstr "Start gesture" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"How often to poll the mouse position, in milliseconds. Reduce this to reduce " +"choppy behavior." + msgid "Misc" msgstr "Misc" +msgid "Mouse Poll Interval" +msgstr "Mouse Poll Interval" + msgid "Mouse position polling" msgstr "Mouse position polling" @@ -2466,7 +2271,7 @@ msgstr "Switch viewport in response to mouse gesture" msgid "Also negate window decorations, not only the window contents." -msgstr "" +msgstr "Also negate window decorations, not only the window contents." msgid "Exclude Windows" msgstr "Exclude Windows" @@ -2474,9 +2279,8 @@ msgid "Neg Windows" msgstr "Negative Windows" -#, fuzzy msgid "Negate Decorations" -msgstr "Reflection for Decorations" +msgstr "Negate Decorations" msgid "Negative" msgstr "Negative" @@ -3180,8 +2984,11 @@ msgid "Background color of the window title" msgstr "Background colour of the window title" -msgid "Close Windows In Scale" -msgstr "Close Windows In Scale" +msgid "Close Window" +msgstr "Close Window" + +msgid "Close window while in scale mode" +msgstr "Close window while in scale mode" msgid "Close windows while in scale mode" msgstr "Close windows while in scale mode" @@ -3189,9 +2996,18 @@ msgid "Color used for highlighting the hovered window" msgstr "Colour used for highlighting the hovered window" +msgid "Constrain Pull To Screen" +msgstr "Constrain Pull To Screen" + msgid "Draw Window Highlight" msgstr "Draw Window Highlight" +msgid "Exit Scale On Pull" +msgstr "Exit Scale On Pull" + +msgid "Exit scale mode after a window has been pulled." +msgstr "Exit scale mode after a window has been pulled." + msgid "Font color of the window title" msgstr "Font colour of the window title" @@ -3201,13 +3017,17 @@ msgid "Highlight Color" msgstr "Highlight Colour" -#, fuzzy msgid "Highlighted window only" -msgstr "Hovered window only" +msgstr "Highlighted window only" msgid "Highlights the hovered window with the given color" msgstr "Highlights the hovered window with the given colour" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"Make sure windows are fully visible after pulling them to another viewport" + msgid "No display" msgstr "No display" @@ -3217,6 +3037,12 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organic - EXPERIMENTAL" +msgid "Pull Window" +msgstr "Pull Window" + +msgid "Pull window to current viewport while in scale mode" +msgstr "Pull window to current viewport while in scale mode" + msgid "Scale Addons" msgstr "Scale Addons" @@ -3241,6 +3067,9 @@ msgid "Window Layout Mode" msgstr "Window Layout Mode" +msgid "Window Pull" +msgstr "Window Pull" + msgid "Window Title" msgstr "Window Title" @@ -3250,11 +3079,11 @@ msgid "Window title display in scale mode" msgstr "Window title display in scale mode" -msgid "Zoom Windows In Scale" -msgstr "Zoom Windows In Scale" +msgid "Zoom Window" +msgstr "Zoom Window" -msgid "Zoom windows while in scale mode" -msgstr "Zoom windows while in scale mode" +msgid "Zoom window while in scale mode" +msgstr "Zoom window while in scale mode" msgid "Filter Case Insensitive" msgstr "Filter Case Insensitive" @@ -3516,18 +3345,30 @@ msgid "Direction of window movement" msgstr "Direction of window movement" +msgid "Down" +msgstr "Down" + +msgid "Left" +msgstr "Left" + msgid "Left/Right" msgstr "Left/Right" msgid "Movement Direction" msgstr "Movement Direction" +msgid "Right" +msgstr "Right" + msgid "Show desktop" msgstr "Show desktop" msgid "To Corners" msgstr "To Corners" +msgid "Up" +msgstr "Up" + msgid "Up/Down" msgstr "Up/Down" @@ -3779,74 +3620,329 @@ msgid "Snow Toggle" msgstr "Snow Toggle" -msgid "Snow for Compiz" -msgstr "Snow for Compiz" +msgid "Snow for Compiz" +msgstr "Snow for Compiz" + +msgid "Snow is drawn above windows" +msgstr "Snow is drawn above windows" + +msgid "Snow textures" +msgstr "Snow textures" + +msgid "Snow toggle key" +msgstr "Snow toggle key" + +msgid "Speed of falling snow" +msgstr "Speed of falling snow" + +msgid "Textures" +msgstr "Textures" + +msgid "Top to Bottom" +msgstr "Top to Bottom" + +msgid "Update Delay" +msgstr "Update Delay" + +msgid "A simple splash plugin" +msgstr "A simple splash plugin" + +msgid "Background File" +msgstr "Background File" + +msgid "Background brightness." +msgstr "Background brightness." + +msgid "Background image File." +msgstr "Background image File." + +msgid "Background saturation." +msgstr "Background saturation." + +msgid "Display In/Out Time." +msgstr "Display In/Out Time." + +msgid "Display Time" +msgstr "Display Time" + +msgid "Images" +msgstr "Images" + +msgid "Initiate Splash" +msgstr "Initiate Splash" + +msgid "Logo File" +msgstr "Logo File" + +msgid "Logo image File." +msgstr "Logo image File." + +msgid "Show on first start" +msgstr "Show on first start" + +msgid "Show splash on first start." +msgstr "Show splash on first start." + +msgid "Splash" +msgstr "Splash" + +msgid "Start Splash." +msgstr "Start Splash." + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Amount of opacity (in percent) for windows in the ring which are not selected" + +#, fuzzy +msgid "Behavior" +msgstr "Behaviour" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Darken background when showing the ring" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Thumbnail Width" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Activate a given window" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Should be the window title Bold." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Ring Switcher" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "First colour of the gradient background." + +#, fuzzy +msgid "Windows" +msgstr "3D Windows" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Windows that should be shown in the shift switcher" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Background brightness during paint" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Don't show application in pager" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Put On Viewport" + +msgid "Bring Selected To Front" +msgstr "" + +msgid "Centered" +msgstr "Centred" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Fill colour of the selection rectangle" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Generate mipmaps when possible for higher quality scaling." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Highlight Colour" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Highlight Colour" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Highlight Colour" + +#, fuzzy +msgid "Icon" +msgstr "In" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Window Highlight" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Colour used for highlighting the hovered window" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Next Window" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Next Window (All Workspaces)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Next Window (Group)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Next Window (Group)" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "Group Window Match" + +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Show switcher if not visible and select next window." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Show switcher if not visible and select next window of the current " +"application." + +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Show switcher if not visible and select next window out of all windows." + +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Show switcher if not visible and select previous window." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Show switcher if not visible and select previous window of the current " +"application." -msgid "Snow is drawn above windows" -msgstr "Snow is drawn above windows" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Show switcher if not visible and select previous window out of all windows." -msgid "Snow textures" -msgstr "Snow textures" +#, fuzzy +msgid "Prev Panel" +msgstr "Preview Scale" -msgid "Snow toggle key" -msgstr "Snow toggle key" +#, fuzzy +msgid "Prev window" +msgstr "Previous Window" -msgid "Speed of falling snow" -msgstr "Speed of falling snow" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Previous Window (All Workspaces)" -msgid "Textures" -msgstr "Textures" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Previous Window (Group)" -msgid "Top to Bottom" -msgstr "Top to Bottom" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Previous Window (Group)" -msgid "Update Delay" -msgstr "Update Delay" +msgid "Row Alignment" +msgstr "" -msgid "A simple splash plugin" -msgstr "A simple splash plugin" +#, fuzzy +msgid "Select next panel type window." +msgstr "Selects where to place the window title." -msgid "Background File" -msgstr "Background File" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background brightness." -msgstr "Background brightness." +#, fuzzy +msgid "Select previous panel type window." +msgstr "Selects where to place the window title." -msgid "Background image File." -msgstr "Background image File." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background saturation." -msgstr "Background saturation." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Window Highlight" -msgid "Display In/Out Time." -msgstr "Display In/Out Time." +#, fuzzy +msgid "Show Rectangle" +msgstr "Rectangular" -msgid "Display Time" -msgstr "Display Time" +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Show Window Title in Thumbnail." -msgid "Images" -msgstr "Images" +#, fuzzy +msgid "Show minimized windows" +msgstr "Non-minimisable windows" -msgid "Initiate Splash" -msgstr "Initiate Splash" +msgid "Static Application Switcher" +msgstr "" -msgid "Logo File" -msgstr "Logo File" +#, fuzzy +msgid "Switcher speed" +msgstr "Switcher mode" -msgid "Logo image File." -msgstr "Logo image File." +#, fuzzy +msgid "Switcher timestep" +msgstr "Shift timestep" -msgid "Show on first start" -msgstr "Show on first start" +#, fuzzy +msgid "Switcher windows" +msgstr "Filtered windows" -msgid "Show splash on first start." -msgstr "Show splash on first start." +#, fuzzy +msgid "Taskbar Entry" +msgstr "Taskbar" -msgid "Splash" -msgstr "Splash" +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Start Splash." -msgstr "Start Splash." +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" + +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Windows that should be shown in the shift switcher" msgid "Render text to texture" msgstr "Render text to texture" @@ -4461,7 +4557,7 @@ msgstr "Outline colour of the switcher window." msgid "Preview Scale" -msgstr "" +msgstr "Preview Scale" msgid "Radius of the rounded edge" msgstr "Radius of the rounded edge" @@ -4495,7 +4591,7 @@ #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Size of the preview in %" msgid "Switch Target Preview Visibility Time" msgstr "Switch Target Preview Visibility Time" @@ -4522,82 +4618,64 @@ msgstr "Wall Sliding Duration" msgid "Width of the border between the previews" -msgstr "" +msgstr "Width of the border between the previews" -#, fuzzy msgid "Background fill type." -msgstr "Background File" +msgstr "Background fill type." msgid "Backgrounds" msgstr "Backgrounds" msgid "Center Tiled" -msgstr "" - -#, fuzzy -msgid "Centered" -msgstr "Put Centre" +msgstr "Centre Tiled" -#, fuzzy msgid "Color 1" -msgstr "Colours" +msgstr "Colour 1" -#, fuzzy msgid "Color 2" -msgstr "Colours" +msgstr "Colour 2" msgid "Draw the desktop wallpaper" msgstr "Draw the desktop wallpaper" -#, fuzzy msgid "Fill or first gradient color." -msgstr "Fire particle colour." +msgstr "Fill or first gradient colour." -#, fuzzy msgid "Fill type" -msgstr "Filled Outline" +msgstr "Fill type" -#, fuzzy msgid "Horizontal gradient" -msgstr "Horizontal Folds" +msgstr "Horizontal gradient" -#, fuzzy msgid "Image" -msgstr "Images" +msgstr "Image" -#, fuzzy msgid "Image file." -msgstr "Top image files" +msgstr "Image file." -#, fuzzy msgid "Image position." -msgstr "X position" +msgstr "Image position." -#, fuzzy msgid "Position" -msgstr "X position" +msgstr "Position" -#, fuzzy msgid "Scale and Crop" -msgstr "Scale Addons" +msgstr "Scale and Crop" -#, fuzzy msgid "Scaled" -msgstr "Scale Addons" +msgstr "Scaled" -#, fuzzy msgid "Second gradient color." -msgstr "Gradient Colour 1" +msgstr "Second gradient colour." msgid "Solid fill" -msgstr "" +msgstr "Solid fill" -#, fuzzy msgid "Tiled" -msgstr "Tile" +msgstr "Tiled" msgid "Vertical gradient" -msgstr "" +msgstr "Vertical gradient" msgid "Wallpaper" msgstr "Wallpaper" @@ -4620,12 +4698,11 @@ msgid "End widget mode when a non-widget window is clicked." msgstr "End widget mode when a non-widget window is clicked." -#, fuzzy msgid "Focus Widget Layer" -msgstr "Widget Layer" +msgstr "Focus Widget Layer" msgid "Focus a window in the widget layer when activating the layer" -msgstr "" +msgstr "Focus a window in the widget layer when activating the layer" msgid "Saturation of non-widget windows in widget modes." msgstr "Saturation of non-widget windows in widget modes." @@ -4678,6 +4755,14 @@ msgid "Matches" msgstr "Matches" +#, fuzzy +msgid "Maximized" +msgstr "Resize to Available Screenspace" + +#, fuzzy +msgid "Maximized windows" +msgstr "Non-maximisable windows" + msgid "No ARGB visuals" msgstr "No ARGB visuals" @@ -4756,6 +4841,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "AIGLX Fragment Parameter Fix" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Firefox Menu Fix" @@ -4799,6 +4887,10 @@ "Make \"on all desktops\" windows sticky. Sticky windows are visible on all " "viewports." +#, fuzzy +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "Activate next window which has the \"demands attention\" flag set." + msgid "Make Wine and legacy applications fullscreen properly." msgstr "Make Wine and legacy applications fullscreen properly." @@ -4823,6 +4915,319 @@ msgid "Workarounds" msgstr "Workarounds" +#~ msgid "Airplane" +#~ msgstr "Airplane" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Airplane Flying Path Length" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Animation Time Step For Intense Effects" + +#~ msgid "Automatic" +#~ msgstr "Automatic" + +#~ msgid "Beam" +#~ msgstr "Beam" + +#~ msgid "Beam Color" +#~ msgstr "Beam Colour" + +#~ msgid "Beam Life" +#~ msgstr "Beam Life" + +#~ msgid "Beam Slowdown" +#~ msgstr "Beam Slowdown" + +#~ msgid "Beam Spacing" +#~ msgstr "Beam Spacing" + +#~ msgid "Beam Up" +#~ msgstr "Beam Up" + +#~ msgid "Beam Width" +#~ msgstr "Beam Width" + +#~ msgid "Beam color." +#~ msgstr "Beam colour." + +#~ msgid "Beam life." +#~ msgstr "Beam life." + +#~ msgid "Beam slowdown." +#~ msgstr "Beam slowdown." + +#~ msgid "Beam width." +#~ msgstr "Beam width." + +#~ msgid "Burn" +#~ msgstr "Burn" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Domino Piece Falling Direction" + +#~ msgid "Explode" +#~ msgstr "Explode" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Falling direction for Domino pieces." + +#~ msgid "Fire" +#~ msgstr "Fire" + +#~ msgid "Fire Smoke" +#~ msgstr "Fire Smoke" + +#~ msgid "Fire constant speed" +#~ msgstr "Fire constant speed" + +#~ msgid "Fire direction" +#~ msgstr "Fire direction" + +#~ msgid "Fire direction." +#~ msgstr "Fire direction." + +#~ msgid "Fire smoke." +#~ msgstr "Fire smoke." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Fly to TaskBar on Minimise" + +#~ msgid "Fold" +#~ msgstr "Fold" + +#~ msgid "Fold Direction" +#~ msgstr "Fold Direction" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Fold opening direction for pieces in Razr effect." + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "In" + +#~ msgid "In-out" +#~ msgstr "In-out" + +#~ msgid "Leaf Spread" +#~ msgstr "Leaf Spread" + +#~ msgid "Left-right" +#~ msgstr "Left-right" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Length of airplane's flying path." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Make fire effect duration be dependent on window height." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Movement direction(s) for window pieces." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Number Of Fire Particles" + +#~ msgid "Number of fire particles." +#~ msgstr "Number of fire particles." + +#~ msgid "Out" +#~ msgstr "Out" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Razr Fold Opening Direction" + +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#~ msgid "Rotation Angle" +#~ msgstr "Rotation Angle" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Rotation angle of animated window pieces (in degrees)." + +#~ msgid "Skewer" +#~ msgstr "Skewer" + +#~ msgid "Skewer Direction" +#~ msgstr "Skewer Direction" + +#~ msgid "Spacing between beams." +#~ msgstr "Spacing between beams." + +#~ msgid "Tessellation Type" +#~ msgstr "Tessellation Type" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Tessellation type for exploding window pieces." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Tessellation type for window pieces." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." + +#~ msgid "Thickness" +#~ msgstr "Thickness" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Thickness of Animated Polygons" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Thickness of Exploding Polygons" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Thickness of animated window pieces (in pixels)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Thickness of exploding window pieces (in pixels)." + +#~ msgid "Up-down" +#~ msgstr "Up-down" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Whether the window should fly to taskbar when minimised with Airplane " +#~ "effect." + +#~ msgid "Window Grid Height" +#~ msgstr "Window Grid Height" + +#~ msgid "Window Grid Width" +#~ msgstr "Window Grid Width" + +#~ msgid "Window folding direction." +#~ msgstr "Window folding direction." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "" +#~ "The wave amplitude (size of the waves) relative to the window height." + +#~ msgid "Brightness Decrease" +#~ msgstr "Brightness Decrease" + +#~ msgid "Brightness Increase" +#~ msgstr "Brightness Increase" + +#~ msgid "Brightness Step" +#~ msgstr "Brightness Step" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Brightness and Saturation" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Brightness and Saturation adjustments" + +#~ msgid "Brightness settings" +#~ msgstr "Brightness settings" + +#~ msgid "Brightness values for windows" +#~ msgstr "Brightness values for windows" + +#~ msgid "Brightness window values" +#~ msgstr "Brightness window values" + +#~ msgid "Brightness windows" +#~ msgstr "Brightness windows" + +#~ msgid "Saturation Decrease" +#~ msgstr "Saturation Decrease" + +#~ msgid "Saturation Increase" +#~ msgstr "Saturation Increase" + +#~ msgid "Saturation Step" +#~ msgstr "Saturation Step" + +#~ msgid "Saturation settings" +#~ msgstr "Saturation settings" + +#~ msgid "Saturation values for windows" +#~ msgstr "Saturation values for windows" + +#~ msgid "Saturation window values" +#~ msgstr "Saturation window values" + +#~ msgid "Saturation windows" +#~ msgstr "Saturation windows" + +#~ msgid "Window specific" +#~ msgstr "Window specific" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Windows that should have a different brightness by default" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Windows that should have a different saturation by default" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Close Windows In Scale" + #~ msgid "Animation Speed" #~ msgstr "Animation Speed" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/es.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/es.po --- compiz-fusion-plugins-unsupported-0.7.6/po/es.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/es.po 2008-09-17 14:29:33.000000000 +0100 @@ -8,9 +8,9 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins 0.0.1\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" -"PO-Revision-Date: 2008-04-27 06:47+0200\n" -"Last-Translator: Rodrigo Steinmann \n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" +"PO-Revision-Date: 2008-06-28 16:52+0100\n" +"Last-Translator: Rafa Ramírez \n" "Language-Team: Compiz Fusion Translators \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ "X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" -msgstr "3D sólo con rotación con el ratón" +msgstr "3D únicamente al rotar con el ratón" msgid "3D Windows" msgstr "Ventanas 3D" @@ -59,9 +59,8 @@ msgstr "Color de la profundidad de una ventana inactiva" # Agregada una "d" que faltaba -#, fuzzy msgid "Color of the active window's depth" -msgstr "Color de la profundidad de una ventana activa" +msgstr "Color de la profundidad de la ventana activa" msgid "Elevates windows while rotating the cube" msgstr "Elevar las ventanas al rotar el cubo" @@ -70,14 +69,14 @@ "Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " "cube via the mouse)" msgstr "" -"Inicia la visualizacion 3D solamente si la rotación se dirige con el ratón. " -"(Por ejemplo: Usted gira el cubo con el ratón.)" +"Inicia las ventanas 3D únicamente al rotar con el ratón. (Por ejemplo: desde " +"el escritorio girar el cubo usando la rueda del ratón)" msgid "Minimum Cube Size" -msgstr "Tamaño Minimo del Cubo" +msgstr "Tamaño Mínimo del Cubo" msgid "Minimum cube size (in percent)." -msgstr "Tamaño Minimo del Cubo (porcentual)" +msgstr "Tamaño mínimo del cubo (porcentaje)" msgid "Misc. Options" msgstr "Opciones varias" @@ -86,15 +85,12 @@ msgstr "" "Redondear esquinas para mayor consistencia con decoraciones redondeadas." -#, fuzzy msgid "Window Color (Active)" msgstr "Color de la Ventana (Activa)" -#, fuzzy msgid "Window Color (Inactive)" msgstr "Color de la Ventana (Inactiva)" -#, fuzzy msgid "Window Depth" msgstr "Profundidad de la ventana" @@ -104,16 +100,15 @@ msgid "Window Space" msgstr "Espacio de las ventanas" -#, fuzzy msgid "Window depth" msgstr "Profundidad de la ventana" msgid "Windows that should be handled by 3D" msgstr "Ventanas que deberían ser procesadas por 3D" -#, fuzzy +# ADD Helper es un plugin de Beryl msgid "ADD Helper" -msgstr "Agregar Ayuda" +msgstr "Ayudante de Concentración" msgid "Bindings" msgstr "Combinación de Teclas" @@ -124,6 +119,12 @@ msgid "Brightness of faded windows" msgstr "Brillo de las ventanas translúcidas" +msgid "Enable ADD Helper on start" +msgstr "Habilitar Ayudante al iniciar" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Habilita Ayudante cuando se carga por primera vez" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -131,10 +132,10 @@ "la activa." msgid "Opacity" -msgstr "Transparencia" +msgstr "Opacidad" msgid "Opacity of faded windows" -msgstr "Transparencia de las ventanas translúcidas" +msgstr "Opacidad de las ventanas translúcidas" msgid "Saturation" msgstr "Saturación" @@ -154,14 +155,7 @@ msgstr "Tipos de ventana" msgid "Window types that should be Opacified." -msgstr "Tipos de ventanas de deberían ser transparentes" - -msgid "Airplane" -msgstr "Aeroplano" - -#, fuzzy -msgid "Airplane Flying Path Length" -msgstr "Longitud de la trayectoria de vuelo del aeroplano." +msgstr "Tipos de ventanas de deberían ser opacadas mas" msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " @@ -171,44 +165,21 @@ "seleccionado. Si se ha elegido \"Ninguno\" para un evento, dicho evento no " "será animado." -#, fuzzy -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplitud de los Pliegues Horizontales relativos a la anchura de la ventana. " -"Para valores negativos se pliega hacia fuera." - -#, fuzzy -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitud de los pliegues curvos relativos al ancho de la ventana. Valores " -"negativos pliegan hacia fuera." - -#, fuzzy msgid "Angle of window at the end of the animation." -msgstr "Ángulo de la ventana al final de la animación" +msgstr "Angulo de la ventana al final de la animación" -#, fuzzy msgid "Animation Selection" -msgstr "Selección de la animacion" +msgstr "Selección de la animación" -#, fuzzy msgid "Animation Time Step" msgstr "Velocidad de la animación" -msgid "Animation Time Step For Intense Effects" -msgstr "Velocidad de la animación para efectos intensos" - msgid "Animation duration in milliseconds for close effect." msgstr "Duración de la animación en milisegundos para el efecto de cerrar" # ¿Como se llama la acción de "focus" en español? Seleccionar ventana? -#, fuzzy msgid "Animation duration in milliseconds for focus effect." -msgstr "Duración de la animación en milisegundos para el efecto de foco" +msgstr "Duración de la animación en milisegundos para el efecto de enfoque" msgid "Animation duration in milliseconds for minimize effect." msgstr "Duración de la animación en milisegundos para el efecto de minimizar." @@ -222,76 +193,25 @@ msgid "Animations" msgstr "Animaciones" -msgid "Automatic" -msgstr "Automático" - -#, fuzzy +# Reemplazado desde "ángulo lejano" msgid "Away Angle" -msgstr "Ángulo lejano" +msgstr "Ángulo opuesto" -#, fuzzy msgid "Away Position" -msgstr "Posición sobre el eje X" - -#, fuzzy -msgid "Beam" -msgstr "Haz" - -# Beam sería línea o haz? -#, fuzzy -msgid "Beam Color" -msgstr "Color del haz." - -#, fuzzy -msgid "Beam Life" -msgstr "Vida del haz." +msgstr "Posición alejada" -#, fuzzy -msgid "Beam Slowdown" -msgstr "Desaceleración de las partículas de fuego" - -#, fuzzy -msgid "Beam Spacing" -msgstr "Espaciado del haz" - -# ¿Haz no debería ser rayo? -msgid "Beam Up" -msgstr "Transporte del haz" - -#, fuzzy -msgid "Beam Width" -msgstr "Ancho del haz" - -msgid "Beam color." -msgstr "Color del haz" - -msgid "Beam life." -msgstr "Tiempo de vida del haz" - -#, fuzzy -msgid "Beam slowdown." -msgstr "Desaceleración del haz" - -#, fuzzy -msgid "Beam width." -msgstr "Ancho del haz" - -msgid "Burn" -msgstr "Quemar" - -#, fuzzy msgid "Close Animation" -msgstr "Cerrar animación" +msgstr "Animación de Cerrado" msgid "Close Effect" -msgstr "Efecto para Cerrar" +msgstr "Efecto de Cerrado" msgid "" "Closeness of window to camera at the end of the animation (1.0: Close to " "camera, -2.0: Away from camera)." msgstr "" -"Cercania de la ventana a la camara al final de la animacion (1.0 Cerca de la " -"camara, -2.0 lejos de la camara)" +"Cercanía de la ventana a la cámara al final de la animación (1.0: Cerca de " +"la cámara, -2.0: Lejos de la cámara)" msgid "" "Comma separated list of option value assignments to override effect " @@ -304,7 +224,8 @@ msgid "Curved Fold" msgstr "Doblado con curvas" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Amplitud del doblado con curvas" msgid "Dodge" @@ -314,161 +235,58 @@ msgid "Dodge Gap Ratio" msgstr "Relación del espacio para esquivar." -msgid "Domino" -msgstr "Dominó" - -msgid "Domino Piece Falling Direction" -msgstr "Dirección de caída de las piezas de Dominó" - -msgid "Down" -msgstr "Abajo" - -#, fuzzy msgid "Dream" -msgstr "Sueños" +msgstr "Soñar" msgid "Duration" msgstr "Duración" -#, fuzzy msgid "Effect Settings" -msgstr "Configuración de los efectos" +msgstr "Configuración de Efectos" -msgid "Explode" -msgstr "Explotar" - -#, fuzzy msgid "Fade" msgstr "Atenuar" -#, fuzzy -msgid "Falling direction for Domino pieces." -msgstr "Dirección de caída de las piezas de dominó" - -msgid "Fire" -msgstr "Fuego" - -msgid "Fire Particle Color" -msgstr "Color de las partículas de fuego" - -msgid "Fire Particle Life" -msgstr "Tiempo de vida de las partículas de fuego" - -msgid "Fire Particle Size" -msgstr "Tamaño de las partículas de fuego" - -msgid "Fire Particle Slowdown" -msgstr "Desaceleración de las partículas de fuego" - -msgid "Fire Smoke" -msgstr "Humo del fuego" - -msgid "Fire constant speed" -msgstr "Velocidad constante del fuego" - -msgid "Fire direction" -msgstr "Dirección del fuego" - -msgid "Fire direction." -msgstr "Dirección del fuego." - -msgid "Fire particle color." -msgstr "Color de las partículas de fuego" - -msgid "Fire particle life." -msgstr "Tiempo de vida de las partículas de fuego" - -msgid "Fire particle size." -msgstr "Tamaño de las partículas de fuego." - -msgid "Fire particle slowdown." -msgstr "Desaceleración de las partículas de fuego." - -msgid "Fire smoke." -msgstr "Humo del fuego." - msgid "Fixed window interior during the Rollup animation." msgstr "Interior de la ventana fijo durante la animación de enrollado" -msgid "Fly to TaskBar on Minimize" -msgstr "Volar hasta la Barra de Tareas al minimizar" - -#, fuzzy msgid "Focus Animation" msgstr "Animación Foco" msgid "Focus Effect" msgstr "Efecto de Foco" -msgid "Fold" -msgstr "Plegar" - -#, fuzzy -msgid "Fold Direction" -msgstr "Dirección del pliegue" - -#, fuzzy -msgid "Fold opening direction for pieces in Razr effect." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Dirección de apertura del pliegue para las piezas en el efecto Cuchilla." -#, fuzzy msgid "Glide 1" msgstr "Planear 1" -#, fuzzy msgid "Glide 2" msgstr "Planear 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Utilizar colores aleatorios para el effecto fuego, también conocido como " -"\"Fuego Místico\"." - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Pliegues horizontales" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Amplitud de los pliegues horizontales" #, fuzzy msgid "How spring-like the Sidekick animation should be." msgstr "Cuánto se debería parecer a un muelle la animación Sidekick." -#, fuzzy msgid "How spring-like the Zoom animation should be." msgstr "Cúanto se debería parecer a un muelle la animación Zoom." -#, fuzzy -msgid "In" -msgstr "Dentro" - -#, fuzzy -msgid "In-out" -msgstr "Dentro-Fuera" - -#, fuzzy -msgid "Leaf Spread" -msgstr "Caída de las hojas." - -msgid "Left" -msgstr "Izquierda" - -msgid "Left-right" -msgstr "Izquierda-Derecha" - -msgid "Length of airplane's flying path." -msgstr "Longitud de la trayectoria de vuelo del aeroplano." - msgid "Magic Lamp" msgstr "Lámpara mágica" #, fuzzy msgid "Magic Lamp Grid Y Resolution" -msgstr "Resolución eje-Y de la regilla de la Lámpara Mágica" +msgstr "Resolución en eje-Y de la Rejilla de la Lámpara Mágica" msgid "Magic Lamp Max Wave Amplitude" msgstr "Amplitud máxima de la onda de la Lámpara Mágica" @@ -480,16 +298,11 @@ msgstr "Amplitud minima de la onda de la Lámpara Mágica" msgid "Magic Lamp Open Start Width" -msgstr "" +msgstr "Ancho de inicio al abrir con Lámpara Mágica" msgid "Magic Lamp Open/Close Moving End" -msgstr "" +msgstr "Movimiento final al Abrir/Cerrar con Lámpara Mágica" -msgid "Make fire effect duration be dependent on window height." -msgstr "" -"Hacer la duracion del efecto de fuego dependiente de la altura de la ventana" - -#, fuzzy msgid "Minimize Animation" msgstr "Minimizar animacion" @@ -499,34 +312,20 @@ msgid "Minimize/Unminimize Only" msgstr "Sólo Minimizar/restaurar" -#, fuzzy -msgid "Movement direction(s) for window pieces." -msgstr "Dirección del movimiento para las partes de la ventana." - msgid "None" msgstr "Ninguno/a" -#, fuzzy -msgid "Number Of Fire Particles" -msgstr "Número de partículas de fuego" - -#, fuzzy msgid "Number of Horizontal Folds" msgstr "Número de pliegues horizontales" -#, fuzzy -msgid "Number of fire particles." -msgstr "Número de partículas" - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." -msgstr "Numero de rotaciones por deslizamiento (mas o menos 10% aleatoriedad) " +msgstr "" +"Numero de rotaciones para Deslizamiento (más o menos un 10% de aleatoriedad) " -#, fuzzy msgid "Off" msgstr "Apagado" -#, fuzzy msgid "On" msgstr "Encendido" @@ -540,12 +339,14 @@ "Cuando se abra/cierre, mover el punto final de la aspiradora con el puntero " "del mouse" +# Depende del contexto, podría ser "Abrir animación" #, fuzzy msgid "Open Animation" -msgstr "Tipo de animación del mosaico" +msgstr "Animación de Apertura" +# También podría ser "Efecto de apertura", o "Efecto al abrir". msgid "Open Effect" -msgstr "Abrir efecto" +msgstr "Efecto de apertura" msgid "Open/Close Only" msgstr "Abrir/Cerrar Solo" @@ -553,15 +354,13 @@ msgid "Options" msgstr "Opciones" -msgid "Out" -msgstr "Fuera" - msgid "Pool" msgstr "Conjunto" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Conjunto de efectos que se pueden escoger si el efecto aleatorio es " "seleccionado. Click reset para escoger toda la lista." @@ -575,41 +374,20 @@ msgid "Random Effects" msgstr "Efectos aleatorios" -msgid "Randomly Colored Fire" -msgstr "Fuego de colores aleatorios" - -msgid "Ratio of gaps between dodge start times to focus duration." -msgstr "" - -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Direccion de apertura del doblez Razr" - #, fuzzy -msgid "Rectangular" -msgstr "Resplandor rectangular" - -msgid "Right" -msgstr "Derecha" +msgid "Ratio of gaps between dodge start times to focus duration." +msgstr "Relación de duración entre los tiempos de inicio y foco." msgid "Roll Up" msgstr "Enrollar hacia arriba" # Enrollo? Alguna palabra mas "precisa"? msgid "Rollup Fixed Interior" -msgstr "Interior Fijo del Enrollo" - -msgid "Rotation Angle" -msgstr "Angulo de rotacion" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Angulo de rotacion de las piecas de la ventana animada ( en grados )." +msgstr "Interior Fijo del Enrollado" #, fuzzy msgid "Shade Animation" -msgstr "Animacion de la Sombra" +msgstr "Animación de la Sombra" msgid "Shade Effect" msgstr "Efecto de Sombra" @@ -618,62 +396,35 @@ msgid "Sidekick" msgstr "Deslizar" -msgid "Sidekick Number of Rotations" -msgstr "" - -msgid "Sidekick Springiness" -msgstr "" - -msgid "Skewer" -msgstr "Nieve" - #, fuzzy -msgid "Skewer Direction" -msgstr "Dirección de la nieve" +msgid "Sidekick Number of Rotations" +msgstr "Deslizar numero de rotaciones" #, fuzzy -msgid "Spacing between beams." -msgstr "El espacio entre las vistas previas" +msgid "Sidekick Springiness" +msgstr "Elasticidad de Deslizar" msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." -msgstr "Ancho inicial del efecto de apertura y terminal de la Lampara Magica" - -msgid "" -"Starting width of open effect and ending width of close effect for Vacuum." msgstr "" +"Ancho inicial del efecto de apertura y final del efecto de cierre para la " +"Lampara Magica." +# Vacuum puede tener varios significados, dependiendo del contexto. #, fuzzy -msgid "Tessellation Type" -msgstr "Tipo de animación del mosaico" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -msgid "Tessellation type for window pieces." +msgid "" +"Starting width of open effect and ending width of close effect for Vacuum." msgstr "" +"Ancho inicial del efecto de apertura y final del efecto de cierre para " +"Aspiradora." msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" - -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" +"Tiempo en milisegundos entre cada una de las muestras de la animación. " +"Mientras más alto sea el número, más bruscos serán los movimientos." msgid "The animation effect shown when closing a window." msgstr "Efecto de animacion cuando se cierra una ventana" @@ -688,81 +439,45 @@ msgstr "Efecto de animacion cuando se minimiza una ventana" msgid "The animation effect shown when shading a window." -msgstr "" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" +msgstr "El efecto de animación cuando se muestra una ventana con sombreado." msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" "La cantidad maxima (numero de particulas) que la lampara magica puede tener" -#, fuzzy msgid "The maximum number of waves for Magic Lamp." -msgstr "Cantidad máxima de partículas activas" +msgstr "Cantidad máxima de ondas para Lámpara Mágica." msgid "The minimum amplitude (size of the waves) Magic Lamp will have." -msgstr "" +msgstr "Amplitud mínima (tamaño de las ondas) que tendrá Lampara Mágica" msgid "" "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "" +"Número de pliegues horizontales que ocurren en la animación Pliegue " +"Horizontal." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" -"La amplitud de onda (Tamaño de onda) Es relativo a la altura de la ventana" - -#, fuzzy msgid "The width of the wave relative to the window height." -msgstr "El ancho del la onda es relativo a la altura de la ventana" - -#, fuzzy -msgid "The windows that will be animated." -msgstr "Tipos de ventanas que deberían ser transparentes" - -msgid "Thickness" -msgstr "Grosor" - -msgid "Thickness of Animated Polygons" -msgstr "Grosor de los poligonos animados" - -msgid "Thickness of Exploding Polygons" -msgstr "Grosor de los poligonos que explotan" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "" - -msgid "Thickness of exploding window pieces (in pixels)." msgstr "" +"Ancho de onda (tamaño de las ondas) en relación a la altura de la ventana." -msgid "Up" -msgstr "Arriba" - -#, fuzzy -msgid "Up-down" -msgstr "Arriba/Abajo" +msgid "The windows that will be animated." +msgstr "Ventanas que serán animadas." msgid "Use various animations as window effects" msgstr "Usar varias animaciones como efectos de ventana" msgid "Vacuum" -msgstr "" +msgstr "Vacio" msgid "Vacuum Grid Y Resolution" -msgstr "" +msgstr "Resolucion de la Rejilla \"Y\" de Vacio" msgid "Vacuum Open Start Width" -msgstr "" +msgstr "Abrir Vacio iniciando con una anchura" msgid "Vacuum Open/Close Moving End" -msgstr "" +msgstr "Movimiento final al Abrir/Cerrar de Vacio" msgid "" "Vertex grid resolution for Magic Lamp (Y dimension only). This is the number " @@ -779,120 +494,115 @@ msgid "Wave" msgstr "Onda" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Amplitud de onda" -#, fuzzy msgid "Wave Width" -msgstr "Ancho de la onda" +msgstr "Ancho de onda" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " "effect." msgstr "" +"Si la ventana debe hacer zoom a la barra de tareas cuando se minimiza con el " +"Pliegue Curvo." msgid "" "Whether the window should zoom to taskbar when minimized with Dream effect." msgstr "" +"Si la ventana debe hacer zoom a la barra de tareas cuando se minimiza con el " +"efecto Sueño." msgid "" "Whether the window should zoom to taskbar when minimized with Glide 1 effect." msgstr "" +"Si la ventana debe hacer zoom a la barra de tareas cuando se minimiza con el " +"efecto Planeo 1." msgid "" "Whether the window should zoom to taskbar when minimized with Glide 2 effect." msgstr "" +"Si la ventana debe hacer zoom a la barra de tareas cuando se minimiza con el " +"efecto Planeo 2." msgid "" "Whether the window should zoom to taskbar when minimized with Horizontal " "Folds effect." msgstr "" +"Si la ventana debe hacer zoom a la barra de tareas cuando se minimiza con el " +"efecto Pliegue Horizontal." -#, fuzzy -msgid "Window Grid Height" -msgstr "Ancho de las ventanas" - -#, fuzzy -msgid "Window Grid Width" -msgstr "Ancho de las ventanas" - -#, fuzzy -msgid "Window folding direction." -msgstr "Dirección de la nieve" - -#, fuzzy msgid "Window that should animate with this effect when focused." -msgstr "Ventanas que deberían poder ser agrupadas" - -msgid "Window that should animate with this effect when shaded." msgstr "" +"Ventanas que deberían animarse con este efecto cuando obtengan el foco." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" +# Perder el foco por "shaded"... +#, fuzzy +msgid "Window that should animate with this effect when shaded." +msgstr "Ventanas que deberían animarse con este efecto cuando pierdan el foco." msgid "Zoom" msgstr "Zoom" msgid "Zoom Springiness" -msgstr "" +msgstr "Elasticidad del zoom" msgid "Zoom from Center" msgstr "Zoom desde el centro" +# Sidekick por "desplazamiento lateral". +#, fuzzy msgid "Zoom from center when playing the Sidekick animation." msgstr "" +"Zoom desde el centro cuando se use la animación Desplazamiento Lateral." msgid "Zoom from center when playing the Zoom animation." -msgstr "" +msgstr "Zoom desde el centro cuando se use la animación Zoom." msgid "Zoom to TaskBar on Minimize" -msgstr "Zoom a la barra de tareas minimizada" +msgstr "Zoom a la barra de tareas al minimizar" msgid "Colors" msgstr "Colores" msgid "Cube Atlantis" -msgstr "" +msgstr "Cubo Atlantis" msgid "Dolphin size" -msgstr "" +msgstr "Tamaño del delfín" msgid "Dolphin size." -msgstr "" +msgstr "Tamaño del delfín." -#, fuzzy msgid "Enable colors" -msgstr "Habilitar el resplandor en las ventanas" +msgstr "Habilitar colores" msgid "Fish size" -msgstr "" +msgstr "Tamaño del pez" -#, fuzzy msgid "Number of fish" -msgstr "Número de partículas" +msgstr "Número de peces" -#, fuzzy msgid "Number of fish inside the cube" -msgstr "Número de partículas" +msgstr "Número de peces dentro del cubo" msgid "Render some fish inside of the transparent cube" -msgstr "" +msgstr "Dibujar algunos peces en el interior del cubo transparente" msgid "Shark size" -msgstr "" +msgstr "Tamaño de los tiburones" msgid "Whale size" -msgstr "" +msgstr "Tamaño de las ballenas" -#, fuzzy msgid "Whale size." -msgstr "Tamaño de las partículas de fuego." +msgstr "Tamaño de las ballenas." msgid "A simple benchmark plugin" msgstr "Un simple plugin de pruebas" @@ -908,7 +618,7 @@ #, fuzzy msgid "Disable Compiz integrated FPS limiter" -msgstr "Deshabilitar el limitador de cuadros integrado de Beryl" +msgstr "Deshabilitar el limitador de cuadros integrado de Compiz" msgid "Disable limiter" msgstr "Deshabilitar el limitador" @@ -931,112 +641,39 @@ msgid "Screen Output" msgstr "Salida a la pantalla" -msgid "Start benchmark" -msgstr "Iniciar benchmark" - -msgid "Update time" -msgstr "Actualizar tiempo" - -msgid "X Position of benchmark window" -msgstr "Posición sobre el eje X de la ventana de pruebas de performance" - -msgid "X position" -msgstr "Posición sobre el eje X" - -msgid "Y Position of benchmark window" -msgstr "Posición sobre el eje Y de la ventana de pruebas de performance" - -msgid "Y position" -msgstr "Posición sobre el eje Y" - -#, fuzzy -msgid "Brightness Decrease" -msgstr "Brillo" - -#, fuzzy -msgid "Brightness Increase" -msgstr "Brillo" - -#, fuzzy -msgid "Brightness Step" -msgstr "Brillo" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "Brillo de las ventanas translúcidas" - -msgid "Brightness and Saturation adjustments" -msgstr "" - -#, fuzzy -msgid "Brightness settings" -msgstr "Brillo de las ventanas seleccionadas" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Brillo de las ventanas translúcidas" - -#, fuzzy -msgid "Brightness window values" -msgstr "Brillo de las ventanas translúcidas" - -#, fuzzy -msgid "Brightness windows" -msgstr "Brillo de las ventanas translúcidas" - -msgid "General" -msgstr "General" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "Saturación" - -#, fuzzy -msgid "Saturation Increase" -msgstr "Saturación" - -#, fuzzy -msgid "Saturation Step" -msgstr "Saturación" - -#, fuzzy -msgid "Saturation settings" -msgstr "Saturación de las ventanas seleccionadas" +msgid "Start benchmark" +msgstr "Iniciar benchmark" -#, fuzzy -msgid "Saturation values for windows" -msgstr "Saturación de las ventanas translúcidas" +msgid "Update time" +msgstr "Actualizar tiempo" -#, fuzzy -msgid "Saturation window values" -msgstr "Saturación de las ventanas translúcidas" +msgid "X Position of benchmark window" +msgstr "Posición sobre el eje X de la ventana de pruebas de performance" -#, fuzzy -msgid "Saturation windows" -msgstr "Saturación de las ventanas translúcidas" +msgid "X position" +msgstr "Posición sobre el eje X" -#, fuzzy -msgid "Window specific" -msgstr "Opacidad de la ventana" +msgid "Y Position of benchmark window" +msgstr "Posición sobre el eje Y de la ventana de pruebas de performance" -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "Ventanas que deberían ser procesadas por 3D" +msgid "Y position" +msgstr "Posición sobre el eje Y" #, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "Ventanas que deberían ser procesadas por 3D" +msgid "Bicubic filter" +msgstr "Intercambiar Filtro" + +msgid "Bicubic texture filtering" +msgstr "" -#, fuzzy msgid "Color filter" -msgstr "Transparencia por color" +msgstr "Filtro de color" -#, fuzzy msgid "Exclude windows" -msgstr "Ventanas excluídas" +msgstr "Excluir ventanas" msgid "Filter colors for accessibility purposes" -msgstr "" +msgstr "Filtros de color para propósitos de accesibilidad" #, fuzzy msgid "Filter window decorations" @@ -1053,12 +690,19 @@ "List of plain text filter files that should be applied when filtering " "windows or screen." msgstr "" +"Lista de ficheros de filtro de texto plano que deben de aplicarse cuando se " +"filtren la pantalla o las ventanas ." +#, fuzzy msgid "" "Select filter to use from filters list : either apply all filters or only " "one specific filter (triggering this action switches filters one by one and " "eventually comes back to the \"all filters\" mode)." -msgstr "Seleccionar el filtro que va a usar desde la lista de filtros:" +msgstr "" +"Seleccionar el filtro que va a usar desde la lista de filtros: si se " +"aplicarán todos los filtros o sólo un filtro específico (activar esta acción " +"alterna los filtros de uno en uno y eventualmente volverá al modo de \"todos " +"los filtros\")." msgid "Switch filter" msgstr "Intercambiar Filtro" @@ -1078,10 +722,13 @@ msgid "Toggle window filtering" msgstr "Habilitar o deshabilitar \"Pantalla completa\" para ventanas" +#, fuzzy msgid "" "Window decorations (borders and titlebar) will be filtered as well as window " "contents if enabled." msgstr "" +"Decoración de Ventana (Barra de Título y bordes) será filtrado , así como el " +"contenido de la ventana, si está activada." #, fuzzy msgid "Windows to be filtered by default." @@ -1123,17 +770,23 @@ "Línea de comandos para el administrador de ventanas.¡¡¡NO ESCRIBAS COMPIZ " "AQUÍ!!!" +msgid "Above" +msgstr "Arriba" + +#, fuzzy msgid "Adjust bottom face image to rotation" -msgstr "" +msgstr "Ajustar la cara de rotación de la imagen del fondo" msgid "Adjust bottom image" msgstr "Ajustar la imagen del fondo" +#, fuzzy msgid "Adjust top face image to rotation" -msgstr "" +msgstr "Ajustar la cara de rotación de la imagen superior" +#, fuzzy msgid "Adjust top image" -msgstr "" +msgstr "Ajustar a imagen superior" msgid "Advance to next image for bottom face of the cube" msgstr "" @@ -1144,6 +797,19 @@ msgid "Appearance" msgstr "Apariencia" +#, fuzzy +msgid "Aspect ratio" +msgstr "Relacion de aspecto" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Zoom automático" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zoom automático cuando la rotación es conducida por el ratón" + msgid "Behaviour" msgstr "Comportamiento" @@ -1172,20 +838,62 @@ msgid "Color of bottom face of the cube" msgstr "" +msgid "Color of the ground (far)." +msgstr "Color del suelo (lejos)." + +msgid "Color of the ground (near)." +msgstr "Color del suelo (cerca)." + msgid "Color of top face of the cube" msgstr "" #, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Reflejo del cubo de Compiz" + +#, fuzzy msgid "Cube Bottom Color" msgstr "Color del borde de las fichas" -msgid "Cube Caps" -msgstr "" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Reflexión en las decoraciones" #, fuzzy msgid "Cube Top Color" msgstr "Color del borde de las fichas" +msgid "Cube caps" +msgstr "" + +msgid "Cylinder" +msgstr "Cilindro" + +#, fuzzy +msgid "Deform caps" +msgstr "Duración" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Zoom automático cuando la rotación es conducida por el ratón" + +#, fuzzy +msgid "Deformation" +msgstr "Deformación" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "Modo de deformación." + +msgid "Distance" +msgstr "Distancia" + msgid "Draw bottom face" msgstr "" @@ -1198,12 +906,37 @@ msgid "Draw top face of the cube" msgstr "" +msgid "Enabled" +msgstr "Activado" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Reflejo del cubo de compiz" + msgid "Go back to previous image for bottom face of the cube" msgstr "" msgid "Go back to previous image for top face of the cube" msgstr "" +msgid "Ground color(far)" +msgstr "Color del suelo (lejos)." + +msgid "Ground color(near)" +msgstr "Color del suelo (cerca)." + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensidad" + +msgid "Jumpy" +msgstr "Saltón" + +msgid "Jumpy reflection" +msgstr "Reflejo saltón" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1213,76 +946,33 @@ "Lista de archivos PNG y SVG que se renderizaran en la parte superior de la " "cara del cubo" -msgid "Next bottom image" -msgstr "" - -msgid "Next top image" -msgstr "" - -#, fuzzy -msgid "Prev bottom image" -msgstr "Biselar la esquina inferior derecha" - -msgid "Prev top image" +msgid "Maintain bottom aspect ratio" msgstr "" -msgid "Render images on top and bottom of the cube" +msgid "Maintain bottom cap image aspect ratio." msgstr "" -msgid "Scale bottom image" +msgid "Maintain top aspect ratio" msgstr "" -msgid "Scale image to cover bottom face of cube" +msgid "Maintain top cap image aspect ratio." msgstr "" -msgid "Scale image to cover top face of cube" +msgid "Next bottom image" msgstr "" -msgid "Scale top image" +msgid "Next top image" msgstr "" #, fuzzy -msgid "Top image files" -msgstr "Archivo de la imagen de los reflejos" - -msgid "Above" -msgstr "Arriba" - -msgid "Auto zoom" -msgstr "Zoom automático" - -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zoom automático cuando la rotación es conducida por el ratón" - -msgid "Color of the ground (far)." -msgstr "Color del suelo (lejos)." - -msgid "Color of the ground (near)." -msgstr "Color del suelo (cerca)." - -msgid "Compiz cube reflection" -msgstr "Reflejo del cubo de compiz" - -msgid "Cube Reflection" -msgstr "Reflejo del cubo" - -msgid "Distance" -msgstr "Distancia" - -msgid "Ground color(far)" -msgstr "Color del suelo (lejos)." - -msgid "Ground color(near)" -msgstr "Color del suelo (cerca)." - -msgid "Intensity" -msgstr "Intensidad" +msgid "Prev bottom image" +msgstr "Biselar la esquina inferior derecha" -msgid "Jumpy" -msgstr "Saltón" +msgid "Prev top image" +msgstr "" -msgid "Jumpy reflection" -msgstr "Reflejo saltón" +msgid "Reflection" +msgstr "Reflejos" msgid "Reflection ground size" msgstr "Tamaño del suelo del reflejo" @@ -1299,6 +989,28 @@ msgid "Reflection mode." msgstr "Modo del reflejo." +msgid "Scale bottom image" +msgstr "" + +msgid "Scale image to cover bottom face of cube" +msgstr "Escalar la imagen hasta cubrir toda la cara inferior del cubo" + +msgid "Scale image to cover top face of cube" +msgstr "Escalar la imagen hasta cubrir toda la cara superior del cubo" + +msgid "Scale top image" +msgstr "" + +msgid "Sphere" +msgstr "Esfera" + +#, fuzzy +msgid "Top image files" +msgstr "Archivo de la imagen de los reflejos" + +msgid "Unfold cube deformation" +msgstr "Deformación aplicada al desplegar el cubo" + msgid "Zoom out automatically only on mouse rotate." msgstr "Zoom automático cuando la rotación es conducida por el ratón." @@ -1306,6 +1018,21 @@ msgid "Zoom out automatically to make the cube fit to the screen." msgstr "Zoom automático para hacer que el cubo entre en la pantalla." +#, fuzzy +msgid "Cube Caps" +msgstr "Engranajes del cubo" + +#, fuzzy +msgid "Render images on top and bottom of the cube" +msgstr "Escalar la imagen hasta cubrir toda la cara inferior del cubo" + +#, fuzzy +msgid "Compiz cube reflection" +msgstr "Reflejo del cubo" + +msgid "Cube Reflection" +msgstr "Reflejo del cubo" + msgid "Animation used when switching to expo mode" msgstr "" @@ -1329,18 +1056,14 @@ msgid "Curve strength" msgstr "Intensidad del desenfoque de movimiento." -#, fuzzy -msgid "Deformation" -msgstr "Duración" - msgid "Deformation of the expo wall" -msgstr "" +msgstr "Deformación de la pared" msgid "Distance between viewports" -msgstr "" +msgstr "Distancia entre escritorios" msgid "Distance of the expo wall" -msgstr "" +msgstr "Distancia de la pared" msgid "Double click time" msgstr "Tiempo doble click" @@ -1362,26 +1085,26 @@ msgstr "" msgid "Exit expo" -msgstr "" +msgstr "Salir de expo" msgid "Expo" -msgstr "" +msgstr "Expo" #, fuzzy msgid "Expo Animation" msgstr "Velocidad de la animación" msgid "Expo Plugin" -msgstr "" +msgstr "Plugin Expo" msgid "Expo button" -msgstr "" +msgstr "Botón del ratón para iniciar Expo" msgid "Expo edge" -msgstr "" +msgstr "Borde de la pantalla para iniciar Expo" msgid "Expo key" -msgstr "" +msgstr "Teclas para iniciar Expo" msgid "Expo mode aspect ratio" msgstr "" @@ -1391,22 +1114,23 @@ msgstr "Tiempo de fundición" msgid "Generate mipmaps in expo mode" -msgstr "" +msgstr "Generar mipmaps en Expo" msgid "Hide panels/docks in expo" -msgstr "" +msgstr "No mostrar paneles/docks en Expo" msgid "Hide panels/docks in expo." -msgstr "" +msgstr "No mostrar paneles/docks en Expo." +# berylog: esta opción se refiere a no usar ventanas gelatinosas al usar Expo msgid "Immediate moves" -msgstr "" +msgstr "Mover inmediatamente" msgid "Inactive viewport brightness." -msgstr "" +msgstr "Brillo de los escritorios inactivos." msgid "Inactive viewport saturation." -msgstr "" +msgstr "Saturación de los escritorios inactivos." #, fuzzy msgid "Mipmaps" @@ -1416,7 +1140,7 @@ msgstr "" msgid "Next viewport" -msgstr "" +msgstr "Escritorio siguiente" msgid "One big wall" msgstr "Un gran muro" @@ -1425,10 +1149,7 @@ msgstr "" msgid "Previous viewport" -msgstr "" - -msgid "Reflection" -msgstr "Reflejos" +msgstr "Escritorio previo" #, fuzzy msgid "Reflection Scale" @@ -1466,9 +1187,8 @@ msgid "Vortex" msgstr "" -#, fuzzy msgid "Zoom time" -msgstr "Zoom" +msgstr "Tiempo de aplicación del zoom" #, fuzzy msgid "Activate Demanding Attention Window" @@ -1532,7 +1252,10 @@ msgstr "" msgid "Center the mouse" -msgstr "Centrar el raton" +msgstr "Centrar el ratón" + +msgid "Dynamic mouse pointer scale" +msgstr "" msgid "Enable focus tracking" msgstr "Activar seguimiento del foco" @@ -1545,9 +1268,8 @@ "level. Disable to target mouse." msgstr "" -#, fuzzy msgid "Enhanced Zoom Desktop" -msgstr "Fundir y mostrar el escritorio" +msgstr "Zoom mejorado del escritorio" msgid "Enhanced zoom functions for the visually impaired and other users" msgstr "" @@ -1585,23 +1307,19 @@ msgstr "" msgid "Hide original mouse pointer" -msgstr "Ocultar el puntero por defecto del raton " +msgstr "Ocultar el puntero por defecto del ratón " msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Factor de escala mínimo" #, fuzzy msgid "Mouse Behaviour" msgstr "Comportamiento" -msgid "Mouse Poll Interval" -msgstr "" - msgid "Mouse Restrain Margin" msgstr "" @@ -1682,12 +1400,20 @@ msgid "Speed" msgstr "Velocidad" +msgid "Static mouse pointer scale" +msgstr "" + msgid "Sync Mouse" msgstr "" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" @@ -1703,32 +1429,45 @@ msgid "Use linear filter when zoomed in" msgstr "" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "Zoom desde el centro" #, fuzzy -msgid "Zoom In" +msgid "Zoom Box" msgstr "Zoom" #, fuzzy +msgid "Zoom In" +msgstr "Acercar" + +#, fuzzy msgid "Zoom In/Out" -msgstr "Zoom" +msgstr "Acercar/Alejar" #, fuzzy msgid "Zoom Out" -msgstr "Zoom" +msgstr "Alejar" msgid "Zoom Specific Level 1" -msgstr "Zoom especifico 1" +msgstr "Zoom específico 1" msgid "Zoom Specific Level 2" -msgstr "Zoom especifico 2" +msgstr "Zoom específico 2" msgid "Zoom Specific Level 3" -msgstr "Zoom especifico 3" +msgstr "Zoom específico 3" -#, fuzzy msgid "Zoom Speed" msgstr "Velocidad del Zoom" @@ -1738,6 +1477,9 @@ msgid "Zoom factor" msgstr "" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" @@ -1791,6 +1533,13 @@ msgid "Toggle window fake ARGB." msgstr "Habilitar o desactivar ARGB falso." +#, fuzzy +msgid "Add Particle" +msgstr "Tiempo de vida de las partículas" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Brillo del fondo" @@ -1801,19 +1550,45 @@ msgstr "Borrar" msgid "Clear (button)" -msgstr "" +msgstr "Borrar (botón del ratón)" -#, fuzzy msgid "Clear (key)" -msgstr "Borrar" +msgstr "Borrar (tecla)" + +msgid "Fire Particle Color" +msgstr "Color de las partículas de fuego" + +msgid "Fire Particle Life" +msgstr "Tiempo de vida de las partículas de fuego" + +msgid "Fire Particle Size" +msgstr "Tamaño de las partículas de fuego" + +msgid "Fire Particle Slowdown" +msgstr "Desaceleración de las partículas de fuego" + +msgid "Fire particle color." +msgstr "Color de las partículas de fuego" + +msgid "Fire particle life." +msgstr "Tiempo de vida de las partículas de fuego" + +msgid "Fire particle size." +msgstr "Tamaño de las partículas de fuego." + +msgid "Fire particle slowdown." +msgstr "Desaceleración de las partículas de fuego." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Utilizar colores aleatorios para el efecto fuego, también conocido como " +"\"Fuego Místico\"." -#, fuzzy msgid "Initiate (button)" -msgstr "Iniciar" +msgstr "Iniciar (botón del ratón)" -#, fuzzy msgid "Initiate (key)" -msgstr "Iniciar" +msgstr "Iniciar (tecla)" msgid "Initiate fire drawing" msgstr "Iniciar dibujo del fuego" @@ -1830,8 +1605,11 @@ msgid "Paint fire or other particles on the screen" msgstr "Dibujar con fuego o con otras partículas en la pantalla" +msgid "Randomly Colored Fire" +msgstr "Fuego de colores aleatorios" + msgid "Cube Gears" -msgstr "" +msgstr "Engranajes del cubo" msgid "Render gears inside of the transparent cube" msgstr "" @@ -1932,6 +1710,9 @@ msgid "Font Size" msgstr "Tamaño de la fuente" +msgid "General" +msgstr "General" + msgid "Glass" msgstr "Vidrio" @@ -2286,10 +2067,10 @@ msgstr "Distancia sobre el eje Y para el modelo de resortes" msgid "Compression Quality" -msgstr "" +msgstr "Calidad de compresión" msgid "JPEG" -msgstr "" +msgstr "JPEG" msgid "JPEG image format plugin" msgstr "Complemento de Imagen en formato JPEG" @@ -2313,7 +2094,7 @@ msgstr "" msgid "Login" -msgstr "" +msgstr "Iniciar sesión" #, fuzzy msgid "Login Window Match" @@ -2324,13 +2105,13 @@ msgstr "Coincidir ventanas" msgid "Login/Logout" -msgstr "" +msgstr "Iniciar/cerrar sesión" msgid "Login/Logout effect" -msgstr "" +msgstr "Efecto al iniciar/cerrar sesión" msgid "Logout" -msgstr "" +msgstr "Cerrar sesión" #, fuzzy msgid "Logout Window Match" @@ -2340,21 +2121,17 @@ msgid "Logout Window match" msgstr "Tipos de ventana que pueden ser agrupados" -#, fuzzy msgid "Window opacity." -msgstr "Opacidad de la ventana" +msgstr "Opacidad de la ventana." -#, fuzzy msgid "Border color" -msgstr "Color del borde de las fichas" +msgstr "Color del borde" -#, fuzzy msgid "Border width" msgstr "Ancho del borde" -#, fuzzy msgid "Border widtht." -msgstr "Ancho del borde" +msgstr "Ancho del borde." msgid "Box height." msgstr "" @@ -2373,9 +2150,8 @@ msgid "Fisheye" msgstr "" -#, fuzzy msgid "Height" -msgstr "Altura" +msgstr "Alto" msgid "Image overlay" msgstr "" @@ -2400,21 +2176,17 @@ msgid "Magnifier image." msgstr "" -#, fuzzy msgid "Mode" -msgstr "Esquivar" +msgstr "Modo" -#, fuzzy msgid "Mode." -msgstr "Esquivar" +msgstr "Modo." -#, fuzzy msgid "Radius" -msgstr "Radio del borde" +msgstr "Radio" -#, fuzzy msgid "Radius of the magnification area." -msgstr "El radio de los ejes de la barra de fichas" +msgstr "Radio del área al que se aplica zoom" msgid "Width" msgstr "Ancho OR anchura" @@ -2441,10 +2213,12 @@ msgstr "" msgid "Maximumize" -msgstr "" +msgstr "Maximumize" msgid "Maximumizes windows (resize them to fit the available screenspace)." msgstr "" +"Maximumiza ventanas (las redimensiona hasta usar todo el espacio disponible " +"en la pantalla)" msgid "" "Treat sticky windows as non-existant when calculating space to use for the " @@ -2506,9 +2280,8 @@ msgid "Visibility/Performance" msgstr "Visibilidad/Rendimiento" -#, fuzzy msgid "Action" -msgstr "Velocidad de la animación" +msgstr "Acción" msgid "Action that is to be invoked." msgstr "" @@ -2519,16 +2292,14 @@ msgid "Detect Diagonal Movements" msgstr "" -#, fuzzy msgid "Gesture" -msgstr "Texturas" +msgstr "Gesto" msgid "Gesture assignment" msgstr "" -#, fuzzy msgid "Gestures" -msgstr "Texturas" +msgstr "Gestos" msgid "" "If this option is selected, diagonal movements are detected, which may lead " @@ -2539,7 +2310,7 @@ msgstr "" msgid "Mousegestures" -msgstr "" +msgstr "Gestos del ratón" msgid "Plugin" msgstr "Plugin" @@ -2548,11 +2319,19 @@ msgstr "" msgid "Start gesture" +msgstr "Iniciar gesto" + +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." msgstr "" msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "" + msgid "Mouse position polling" msgstr "" @@ -2574,17 +2353,14 @@ msgid "Also negate window decorations, not only the window contents." msgstr "" -#, fuzzy msgid "Exclude Windows" msgstr "Ventanas excluídas" -#, fuzzy msgid "Neg Windows" -msgstr "Ventanas en mosaico" +msgstr "Ventanas en negativo" -#, fuzzy msgid "Negate Decorations" -msgstr "Reflexión en las decoraciones" +msgstr "" msgid "Negative" msgstr "Negativo" @@ -2605,16 +2381,14 @@ msgid "Toggle screen negative" msgstr "Habilitar o deshabilitar \"Pantalla Completa\"" -#, fuzzy msgid "Used to set a window or screen negative" -msgstr "Crear fichas automáticamente en las ventanas cuando son creadas" +msgstr "Utilizado para ver una ventana o pantalla en negativo" msgid "Windows to be negative by default" msgstr "" -#, fuzzy msgid "Windows to exclude from negating" -msgstr "Ventanas que deben excluirse del mosaico" +msgstr "Ventanas que no se verán en negativo" msgid "Debug" msgstr "Depurar" @@ -2626,38 +2400,36 @@ msgstr "Error" msgid "Error Notifications" -msgstr "Notificacion de error" +msgstr "Notificaciones de error" -#, fuzzy msgid "Fatal" -msgstr "Metal" +msgstr "Fatal" #, fuzzy msgid "Hide Timeout" msgstr "Tiempo de fundición" msgid "Info" -msgstr "Informacion" +msgstr "Información" msgid "Maximum Log Level" -msgstr "Nivel maximo de registro" +msgstr "Nivel máximo de registro" msgid "The maximum log level to display" -msgstr "Nivel maximo de registro en pantalla" +msgstr "Nivel máximo de registro en pantalla" msgid "" "Timeout (in seconds) before hiding the notification, set to -1 for system " "default and 0 for indefinite" msgstr "" -"Timeout(En segundos) Antes de ocultar la notificaion,,Set es -1 para sistema " -"por defecto y 0 para indefinido" +"Timeout (en segundos) antes de ocultar la notificación, asignado a -1 para " +"el valor por defecto y 0 para indefinido" msgid "Warning" -msgstr "Peligro" +msgstr "Advertencia" -#, fuzzy msgid "Active Opacity" -msgstr "Transparencia" +msgstr "Opacidad Activa" msgid "" "Bypass delay when Opacify is reducing the opacity on one or more windows " @@ -2693,7 +2465,6 @@ msgid "Opacity Levels" msgstr "Niveles de opacidad" -#, fuzzy msgid "Passive Opacity" msgstr "Opacidad Pasiva" @@ -2753,7 +2524,6 @@ "usually when you start Compiz." msgstr "" -#, fuzzy msgid "Animation speed" msgstr "Velocidad de la animación" @@ -2768,101 +2538,91 @@ msgstr "" msgid "Move window arbitrarily by passing x, y and type." -msgstr "" +msgstr "Mover ventana aleatoriamente eligiendo x,y así como el tipo." msgid "Move window to a certain viewport" -msgstr "" +msgstr "Mover ventana a un escritorio concreto" -#, fuzzy msgid "Move window to the bottom edge" -msgstr "Mover cada ventana en el grupo" +msgstr "Mover la ventana hacia el borde inferior" -#, fuzzy msgid "Move window to the bottom left corner" -msgstr "Biselar la esquina inferior izquierda" +msgstr "Mover la ventana hacia la esquina inferior izquierda" -#, fuzzy msgid "Move window to the bottom right corner" -msgstr "Biselar la esquina inferior derecha" +msgstr "Mover la ventana hacia la esquina superior derecha" -#, fuzzy msgid "Move window to the center" -msgstr "Mover cada ventana en el grupo" +msgstr "Mover la ventana hacia el centro" msgid "Move window to the last position" -msgstr "" +msgstr "Mover ventana a la última posición" -#, fuzzy msgid "Move window to the left edge" -msgstr "Mover cada ventana en el grupo" +msgstr "Mover la ventana hacia el borde izquierdo" msgid "Move window to the pointer position" -msgstr "" +msgstr "Mover ventana a la posición del puntero del ratón" -#, fuzzy msgid "Move window to the right edge" -msgstr "Mover cada ventana en el grupo" +msgstr "Mover la ventana hacia el borde derecho" -#, fuzzy msgid "Move window to the top edge" -msgstr "Mover cada ventana en el grupo" +msgstr "Mover la ventana hacia el borde superior" -#, fuzzy msgid "Move window to the top left corner" -msgstr "Biselar la esquina inferior izquierda" +msgstr "Mover la ventana hacia la esquina superior izquierda" -#, fuzzy msgid "Move window to the top right corner" -msgstr "Biselar la esquina inferior derecha" +msgstr "Mover la ventana hacia la esquina superior derecha" msgid "Move window to the viewport on the bottom" -msgstr "" +msgstr "Mover ventana al escritorio de abajo" msgid "Move window to the viewport on the left" -msgstr "" +msgstr "Mover ventana al escritorio de la izquierda" msgid "Move window to the viewport on the right" -msgstr "" +msgstr "Mover ventana al escritorio de la derecha" -#, fuzzy msgid "Move window to the viewport on the top" -msgstr "Mover cada ventana en el grupo" +msgstr "Mover ventana al escritorio de arriba" msgid "Move window to viewport 1" -msgstr "Mover ventana hacia el visor 1" +msgstr "Mover ventana al escritorio 1" msgid "Move window to viewport 10" -msgstr "Mover ventana hacia el visor 10" +msgstr "Mover ventana al escritorio 10" msgid "Move window to viewport 11" -msgstr "Mover ventana hacia el visor 11" +msgstr "Mover ventana al escritorio 11" msgid "Move window to viewport 12" -msgstr "Mover ventana hacia el visor 12" +msgstr "Mover ventana al escritorio 12" msgid "Move window to viewport 2" -msgstr "Mover ventana hacia el visor 2" +msgstr "Mover ventana al escritorio 2" msgid "Move window to viewport 3" -msgstr "Mover ventana hacia el visor 3" +msgstr "Mover ventana al escritorio 3" msgid "Move window to viewport 4" -msgstr "Mover ventana hacia el visor 4" +msgstr "Mover ventana al escritorio 4" msgid "Move window to viewport 5" -msgstr "Mover ventana hacia el visor 5" +msgstr "Mover ventana al escritorio 5" msgid "Move window to viewport 6" -msgstr "Mover ventana hacia el visor 6" +msgstr "Mover ventana al escritorio 6" msgid "Move window to viewport 7" -msgstr "Mover ventana hacia el visor 7" +msgstr "Mover ventana al escritorio 7" msgid "Move window to viewport 8" -msgstr "Mover ventana hacia el visor 8" +msgstr "Mover ventana al escritorio 8" msgid "Move window to viewport 9" -msgstr "Mover ventana hacia el visor 9" +msgstr "Mover ventana al escritorio 9" msgid "" "Number of pixels from the bottom edge where the window will come to rest" @@ -2896,7 +2656,7 @@ msgstr "Relleno" msgid "Put" -msgstr "" +msgstr "Poner ventana" #, fuzzy msgid "Put Bottom" @@ -2911,7 +2671,7 @@ msgstr "Biselar la esquina inferior derecha" msgid "Put Center" -msgstr "" +msgstr "Poner en el centro" #, fuzzy msgid "Put Left" @@ -2978,24 +2738,26 @@ msgstr "Poner el puntero en el centro de la ventana" msgid "Put to adjacent viewport" -msgstr "Poner en el visor adyacente" +msgstr "Poner en el escritorio adyacente" # arbitrario==(aleatorio)???? +# berylog: mejor aleatorio msgid "Put to arbitrary viewport" -msgstr "Poner en un visor arbitrario(aleatorio)" +msgstr "Poner en un escritorio aleatorio" #, fuzzy msgid "Put window" msgstr "Ventanas en mosaico" +#, fuzzy msgid "Put within viewport" -msgstr "" +msgstr "Poner dentro del escritorio" msgid "Restore Position" -msgstr "Restablecer Posicion" +msgstr "Restablecer Posición" msgid "Unfocus Window" -msgstr "Desenfocar ventanas" +msgstr "Desenfocar ventana" msgid "Unfocus windows that are moved off the viewport" msgstr "" @@ -3005,13 +2767,13 @@ msgstr "De arriba a abajo" msgid "Viewport Left" -msgstr "Visor Izquierdo" +msgstr "Escritorio Izquierdo" msgid "Viewport Right" -msgstr "Visor Derecho" +msgstr "Escritorio Derecho" msgid "Viewport Top" -msgstr "Visor Superior" +msgstr "Escritorio Superior" msgid "Window Center" msgstr "Centrar Ventana" @@ -3138,7 +2900,7 @@ msgstr "" msgid "Bold Font" -msgstr "" +msgstr "Negrita" #, fuzzy msgid "Centered on screen" @@ -3148,17 +2910,21 @@ "Changes the minimum brightness factor for windows in the ring. The farer " "away windows are, the less bright are they." msgstr "" +"Cambia el factor de brillo mínimo para las ventanas en el anillo. Cuanto más " +"lejos estén las ventanas, menos brillo tendrán." msgid "" "Changes the minimum scale factor for windows in the ring. The farer away " "windows are, the smaller are they." msgstr "" +"Cambia el factor de escala mínimo para las ventanas en el anillo. Cuanto más " +"lejos estén las ventanas, más pequeñas serán." msgid "Darken Background" -msgstr "" +msgstr "Oscurecer fondo" msgid "Darken background when showing the ring" -msgstr "" +msgstr "Oscurecer fondo cuando se muestra el anillo" #, fuzzy msgid "Emblem" @@ -3177,26 +2943,28 @@ msgstr "Opacidad de la ventana" msgid "Maximum horizontal size of a thumbnail in the ring" -msgstr "" +msgstr "Ancho máximo de las miniaturas en el anillo" msgid "Maximum vertical size of a thumbnail in the ring" -msgstr "" +msgstr "Alto máximo de las miniaturas en el anillo" +#, fuzzy msgid "Minimum Brightness Factor" -msgstr "" +msgstr "Factor de brillo mínimo" +#, fuzzy msgid "Minimum Scale Factor" -msgstr "" +msgstr "Factor de escala mínimo" #, fuzzy msgid "Next Window" msgstr "Ventanas en mosaico" msgid "Next Window (All Workspaces)" -msgstr "" +msgstr "Siguiente ventana (en todos los escritorios)" msgid "Next Window (Group)" -msgstr "" +msgstr "Siguiente ventana (del grupo de ventanas)" msgid "Overlay Icon" msgstr "" @@ -3260,7 +3028,7 @@ msgstr "" msgid "Show Minimized" -msgstr "" +msgstr "Mostrar ventanas minimizadas" #, fuzzy msgid "Show Window Title" @@ -3296,21 +3064,20 @@ msgstr "" msgid "Text Placement" -msgstr "" +msgstr "Posición del texto" msgid "Thumbnail Height" -msgstr "" +msgstr "Alto de la miniatura" msgid "Thumbnail Width" -msgstr "" +msgstr "Ancho de la miniatura" #, fuzzy msgid "Window title display" msgstr "Fuente de los títulos de las ventanas" -#, fuzzy msgid "Windows that should be shown in ring" -msgstr "Ventanas que deberían ser procesadas por 3D" +msgstr "Ventanas que deberían ser mostradas en el anillo" #, fuzzy msgid "All windows" @@ -3321,8 +3088,12 @@ msgstr "El color del título de la ventana en la barra de fichas" #, fuzzy -msgid "Close Windows In Scale" -msgstr "Ventanas en mosaico vertical" +msgid "Close Window" +msgstr "Ventanas en mosaico" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Elevar las ventanas al rotar el cubo" #, fuzzy msgid "Close windows while in scale mode" @@ -3331,10 +3102,19 @@ msgid "Color used for highlighting the hovered window" msgstr "" +msgid "Constrain Pull To Screen" +msgstr "" + #, fuzzy msgid "Draw Window Highlight" msgstr "Dibujar la parte trasera de las ventanas" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + #, fuzzy msgid "Font color of the window title" msgstr "El color del título de la ventana en la barra de fichas" @@ -3342,17 +3122,19 @@ msgid "Font size for window title display" msgstr "" -#, fuzzy msgid "Highlight Color" -msgstr "Color de resalte de las fichas" +msgstr "Color para destacar una ventana" -#, fuzzy msgid "Highlighted window only" -msgstr "Mover ventana hacia X o Y" +msgstr "Únicamente la ventana destacada" msgid "Highlights the hovered window with the given color" msgstr "" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + #, fuzzy msgid "No display" msgstr "Fuente de los títulos de las ventanas" @@ -3364,8 +3146,18 @@ msgid "Organic - EXPERIMENTAL" msgstr "Juntar ventanas (experimental)" +#, fuzzy +msgid "Pull Window" +msgstr "Ventanas en mosaico" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Elevar las ventanas al rotar el cubo" + +# berylog: no sé muy bien cómo traducir Scale Addons, pero creo que es mejor poner Extras y no Añadidos +#, fuzzy msgid "Scale Addons" -msgstr "" +msgstr "Extras para Escalar ventanas" msgid "Selects the mode to layout the windows in scale mode" msgstr "" @@ -3392,6 +3184,10 @@ msgstr "Coincidir ventanas" #, fuzzy +msgid "Window Pull" +msgstr "Reglas de ventana" + +#, fuzzy msgid "Window Title" msgstr "Fuente de los títulos de las ventanas" @@ -3404,11 +3200,12 @@ msgstr "Fuente de los títulos de las ventanas" #, fuzzy -msgid "Zoom Windows In Scale" +msgid "Zoom Window" msgstr "Espacio de las ventanas" -msgid "Zoom windows while in scale mode" -msgstr "" +#, fuzzy +msgid "Zoom window while in scale mode" +msgstr "Elevar las ventanas al rotar el cubo" msgid "Filter Case Insensitive" msgstr "" @@ -3482,13 +3279,11 @@ msgid "Talk to session manager and save/load window state" msgstr "" -#, fuzzy msgid "Animation duration" msgstr "Duración de la animación" -#, fuzzy msgid "Duration of the animation in milliseconds." -msgstr "Duración (en milisegundos) de la animación de puesta en mosaico" +msgstr "Duración de la animación en milisegundos." msgid "Increase the scale factor making the window bigger." msgstr "" @@ -3543,24 +3338,20 @@ "traditional resizing." msgstr "" -#, fuzzy msgid "Background intensity" msgstr "Brillo del fondo" -#, fuzzy msgid "Background intensity." -msgstr "Brillo del fondo" +msgstr "Brillo del fondo." -#, fuzzy msgid "Below" -msgstr "Resplandor" +msgstr "Debajo" msgid "Click duration" msgstr "" -#, fuzzy msgid "Cover" -msgstr "Arriba" +msgstr "" msgid "Cover movement offset." msgstr "" @@ -3568,17 +3359,14 @@ msgid "Cover offset" msgstr "" -#, fuzzy msgid "Disabled" -msgstr "Distancia" +msgstr "Desactivado" -#, fuzzy msgid "Fade in/out speed" -msgstr "Tiempo de agrupación" +msgstr "Velocidad de activar/desactivar fundición" -#, fuzzy msgid "Fade speed" -msgstr "Tiempo de fundición" +msgstr "Velocidad de fundición" msgid "Flip" msgstr "" @@ -3586,31 +3374,28 @@ msgid "Flip angle" msgstr "" -#, fuzzy msgid "Generate mipmaps" -msgstr "Crear mipmaps" +msgstr "Generar mipmaps" msgid "Hide all non Desktop windows during switching" msgstr "" -#, fuzzy msgid "Hide non Desktop windows" -msgstr "Fundir y mostrar el escritorio" +msgstr "" -#, fuzzy msgid "Initiate (All Workspaces)" -msgstr "Iniciar splash" +msgstr "Iniciar (en todos los escritorios)" msgid "Initiate switcher (All Workspaces)." msgstr "" #, fuzzy msgid "Initiate switcher." -msgstr "Iniciar splash" +msgstr "Iniciar switcher." #, fuzzy msgid "Max window size" -msgstr "Dibujar la parte trasera de las ventanas" +msgstr "Tamaño máximo de la ventana" msgid "Maximum click duration in miliseconds." msgstr "" @@ -3633,9 +3418,8 @@ msgid "Overlay an icon on windows in the shift switcher" msgstr "" -#, fuzzy msgid "Rotation angle of the flip animation" -msgstr "Duración (en milisegundos) de la animación de puesta en mosaico" +msgstr "Ángulo de rotación de la animación flip" msgid "" "Selects how the switcher is displayed if multiple output devices are used." @@ -3684,18 +3468,30 @@ msgid "Direction of window movement" msgstr "" +msgid "Down" +msgstr "Abajo" + +msgid "Left" +msgstr "Izquierda" + msgid "Left/Right" msgstr "Izquierda/Derecha" msgid "Movement Direction" msgstr "" +msgid "Right" +msgstr "Derecha" + msgid "Show desktop" msgstr "Mostrar escritorio" msgid "To Corners" msgstr "Hacia los bordes" +msgid "Up" +msgstr "Arriba" + msgid "Up/Down" msgstr "Arriba/Abajo" @@ -3735,7 +3531,7 @@ msgstr "" msgid "Emiters" -msgstr "" +msgstr "Emisores" #, fuzzy msgid "Have random colors for the particles" @@ -3746,53 +3542,41 @@ msgid "Increases the visibility of the mouse pointer" msgstr "" -#, fuzzy msgid "Number Of Particles" msgstr "Número de partículas" -#, fuzzy msgid "Number of particle emiters." -msgstr "Número de partículas" +msgstr "Número de emisores de partículas." -#, fuzzy msgid "Number of particles." -msgstr "Número de partículas" +msgstr "Número de partículas." -#, fuzzy msgid "Particle Color" -msgstr "Color de las partículas de fuego" +msgstr "Color de las partículas" -#, fuzzy msgid "Particle Life" -msgstr "Tiempo de vida de las partículas de fuego" +msgstr "Tiempo de vida de las partículas" -#, fuzzy msgid "Particle Options" -msgstr "Opciones varias" +msgstr "Opciones de las partículas" -#, fuzzy msgid "Particle Size" -msgstr "Tamaño de las partículas de fuego" +msgstr "Tamaño de las partículas" -#, fuzzy msgid "Particle Slowdown" -msgstr "Desaceleración de las partículas de fuego" +msgstr "Desaceleración de las partículas" -#, fuzzy msgid "Particle color." -msgstr "Color de las partículas de fuego" +msgstr "Color de las partículas." -#, fuzzy msgid "Particle life." -msgstr "Tiempo de vida de las partículas de fuego" +msgstr "Tiempo de vida de las partículas." -#, fuzzy msgid "Particle size." -msgstr "Tamaño de las partículas de fuego." +msgstr "Tamaño de las partículas." -#, fuzzy msgid "Particle slowdown." -msgstr "Desaceleración de las partículas de fuego." +msgstr "Desaceleración de las partículas." #, fuzzy msgid "Randomly Colored Particles" @@ -3810,15 +3594,14 @@ msgid "Rotation speed." msgstr "Velocidad de la animación" -#, fuzzy msgid "Show mouse" -msgstr "Tiempo de espera hasta mostrar la barra de fichas" +msgstr "Mostrar puntero del ratón" msgid "Toggle the mouse pointer trail." msgstr "" msgid "Alt" -msgstr "" +msgstr "Alt" msgid "Avoid Snap Modifier" msgstr "" @@ -3827,38 +3610,35 @@ msgstr "" msgid "Control" -msgstr "" +msgstr "Control" msgid "Edge Attraction Distance" -msgstr "" +msgstr "Distancia de atracción a los bordes" msgid "Edge Resistance Distance" -msgstr "" +msgstr "Distancia de resistencia a los bordes" -#, fuzzy msgid "Edge attraction" -msgstr "Saturación" +msgstr "Atracción de los bordes" -#, fuzzy msgid "Edge resistance" -msgstr "Distancia" +msgstr "Resistencia de los bordes" msgid "Edges" -msgstr "" +msgstr "Bordes de la pantalla" +#, fuzzy msgid "Enables windows edges resistance" -msgstr "" +msgstr "Activa la resistencia a los bordes de las ventanas" -#, fuzzy msgid "Meta" -msgstr "Metal" +msgstr "Meta" -#, fuzzy msgid "Screen edges" -msgstr "Profundidad de la pantalla" +msgstr "Bordes de la pantalla" msgid "Shift" -msgstr "" +msgstr "Shift" msgid "Snap Type" msgstr "" @@ -3879,9 +3659,8 @@ msgid "Use this bindings to avoid snapping." msgstr "" -#, fuzzy msgid "Window edges" -msgstr "Tipos de ventana" +msgstr "Bordes de la ventana" msgid "Bottom to Top" msgstr "De abajo a arriba" @@ -3969,7 +3748,7 @@ msgstr "Habilitar o deshabilitar la nieve" msgid "Snow for Compiz" -msgstr "Nieve para compiz" +msgstr "Nieve para Compiz" msgid "Snow is drawn above windows" msgstr "Dibujar la nieve sobre las ventanas" @@ -4035,29 +3814,263 @@ msgstr "Splash" msgid "Start Splash." -msgstr "Empezar splash" +msgstr "Iniciar splash" -msgid "Render text to texture" +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" msgstr "" #, fuzzy -msgid "Text" -msgstr "Texturas" +msgid "Behavior" +msgstr "Comportamiento" #, fuzzy -msgid "Enable Titles" -msgstr "Habilitar texturas" +msgid "Darken background when showing the stack" +msgstr "Oscurecer fondo cuando se muestra el anillo" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Ancho de la miniatura" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Habilitar una ventana determinada" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Saturación de las ventanas seleccionadas" + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Ancho de las ventanas" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Color del suelo (lejos)." + +#, fuzzy +msgid "Windows" +msgstr "Ventanas 3D" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Ventanas que deberían poder ser agrupadas" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Brillo del fondo durante el dibujo" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "No mostrar la aplicación en el paginador" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Poner en visor" + +msgid "Bring Selected To Front" +msgstr "" + +msgid "Centered" +msgstr "Centrado" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Color de relleno del rectángulo de selección" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Color para destacar una ventana" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Color para destacar una ventana" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Color para destacar una ventana" + +#, fuzzy +msgid "Icon" +msgstr "Dentro" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Ancho de las ventanas" + +#, fuzzy +msgid "Mipmap" +msgstr "Crear mipmaps" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "La tecla para seleccionar la ventana activa." + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Ventanas en mosaico" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Siguiente ventana (en todos los escritorios)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Siguiente ventana (del grupo de ventanas)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Siguiente ventana (del grupo de ventanas)" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "Tipos de ventana que pueden ser agrupados" + +msgid "Popup switcher if not visible and select next window" +msgstr "" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" + +msgid "Popup switcher if not visible and select previous window" +msgstr "" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" + +#, fuzzy +msgid "Prev Panel" +msgstr "Vista previa escalable" + +#, fuzzy +msgid "Prev window" +msgstr "Agrupar ventanas" + +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Ventanas en mosaico" + +#, fuzzy +msgid "Prev window (Group)" +msgstr "Siguiente ventana (del grupo de ventanas)" + +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Siguiente ventana (del grupo de ventanas)" + +msgid "Row Alignment" +msgstr "" + +#, fuzzy +msgid "Select next panel type window." +msgstr "Seleccionar una sola ventana" + +msgid "Select next window without showing the popup window." +msgstr "" + +#, fuzzy +msgid "Select previous panel type window." +msgstr "Seleccionar una sola ventana" + +msgid "Select previous window without showing the popup window." +msgstr "" + +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Ancho de las ventanas" + +#, fuzzy +msgid "Show Rectangle" +msgstr "Rectangular" + +msgid "Show icon next to thumbnail" +msgstr "" + +#, fuzzy +msgid "Show minimized windows" +msgstr "Nieve sobre las ventanas" + +msgid "Static Application Switcher" +msgstr "" + +#, fuzzy +msgid "Switcher speed" +msgstr "Velocidad" + +#, fuzzy +msgid "Switcher timestep" +msgstr "Intercambiar Filtro" + +#, fuzzy +msgid "Switcher windows" +msgstr "Ventanas en mosaico" + +msgid "Taskbar Entry" +msgstr "" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" #, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Ventanas que deberían poder ser agrupadas" + +msgid "Render text to texture" +msgstr "" + +msgid "Text" +msgstr "Textos" + +msgid "Enable Titles" +msgstr "Activar títulos" + msgid "Fade In/Out Duration" -msgstr "Saturación" +msgstr "Duración del tiempo de fundición" msgid "Fade In/Out Duration in seconds." msgstr "" -#, fuzzy msgid "Generate Mipmaps" -msgstr "Crear mipmaps" +msgstr "Generar Mipmaps" msgid "Generate mipmaps when possible for higher quality scaling." msgstr "" @@ -4096,21 +4109,17 @@ msgid "Thumbnail Background and Border Glow Color." msgstr "" -#, fuzzy msgid "Thumbnail Border Glow Color" -msgstr "Color del borde de las fichas" +msgstr "Color del borde de las miniaturas" -#, fuzzy msgid "Thumbnail Border Size" -msgstr "Tamaño de las vistas previas" +msgstr "Tamaño del borde de las miniaturas" -#, fuzzy msgid "Thumbnail Window Size" -msgstr "Tamaño de las vistas previas" +msgstr "Tamaño de la miniatura" -#, fuzzy msgid "Thumbnail window size." -msgstr "Ventanas en mosaico" +msgstr "Tamaño de la miniatura." msgid "Thumbnails Always on Top" msgstr "" @@ -4118,25 +4127,22 @@ msgid "Time (in ms) before Thumbnail is shown." msgstr "" -#, fuzzy +# berylog: ¿no debería ser Previsualización de ventanas en lugar de Tipos de ventana? msgid "Window Previews" -msgstr "Tipos de ventana" +msgstr "Previsualización de ventanas" #, fuzzy msgid "Window thumbnails at the taskbar" msgstr "El tamaño de las vistas previas de las ventanas en la barra de tareas" -#, fuzzy msgid "Window title" -msgstr "Fuente de los títulos de las ventanas" +msgstr "Título de la ventana" -#, fuzzy msgid "Window title Font Color." -msgstr "Fuente de los títulos de las ventanas" +msgstr "Color del título de la ventana." -#, fuzzy msgid "Window title Font Size." -msgstr "Fuente de los títulos de las ventanas" +msgstr "Tamaño de los títulos de las ventanas." msgid "Animation Duration" msgstr "Duración de la animación" @@ -4337,21 +4343,17 @@ msgid "Saturation Level of Unfocused Windows" msgstr "Nivel de saturación de las ventanas sin el foco" -#, fuzzy msgid "" "Saturation of the currently focused window. Windows will get saturation " "levels between the focused and minimum." msgstr "" -"Nivel de saturación de la ventana actualmente con el foco. Las ventanas " -"obtendrán un nivel de opacidad entre la ventana con el foco y el mínimo." +"Nivel máximo de saturación (ventana más enfocada). Las ventanas obtendrán un " +"nivel de saturación entre la ventana enfocada y el mínimo." -#, fuzzy msgid "" "Saturation of the least focused window. Windows will get saturation levels " "between the focused and minimum." -msgstr "" -"Nivel de saturación de la ventana actualmente con el foco. Las ventanas " -"obtendrán un nivel de opacidad entre la ventana con el foco y el mínimo." +msgstr "Nivel mínimo de saturación (ventana menos enfocada)." msgid "" "This defines when Trailfocus will start fading windows. This lets you set up " @@ -4362,198 +4364,192 @@ "completamente con el foco." msgid "Trailfocus" -msgstr "Trailfocus" +msgstr "Seguidor de enfoque" msgid "Window to Start Fading" -msgstr "Ventana en la que empezar a desvanecer" +msgstr "Ventana para empezar a desvanecer" msgid "Window types that should be handled by Trailfocus" -msgstr "Tipos de ventana que manejará trailfocus" +msgstr "Tipos de ventana que manejará el Seguidor de enfoque" msgid "Action name for initiate" -msgstr "" +msgstr "Nombre de acción para iniciar" msgid "Action name for initiate/terminate" -msgstr "" +msgstr "Nombre de acción para iniciar/terminar" msgid "Begin Viewport Switch" -msgstr "" +msgstr "Iniciar cambiar escritorio" msgid "Begin entering viewport number" -msgstr "" +msgstr "Empezar ingresando número de escritorio" msgid "Desktop-based Viewport Switching" -msgstr "" +msgstr "Cambiar de escritorio basado en el escritorio" msgid "Go to specific viewport" -msgstr "" +msgstr "Ir a un escritorio específico" -#, fuzzy msgid "Initiate plugin action" -msgstr "Iniciar dibujo del fuego" +msgstr "Iniciar acción del plugin" msgid "Initiate viewport changes through several events" msgstr "" msgid "Initiate/Terminate the selected plugin action" -msgstr "" +msgstr "Iniciar/Terminar plugin seleccionado" -#, fuzzy msgid "Move Down" -msgstr "Abajo" +msgstr "Mover abajo" -#, fuzzy msgid "Move Left" -msgstr "Izquierda" +msgstr "Mover a la izquierda" msgid "Move Next" -msgstr "" +msgstr "Mover a la siguiente" msgid "Move Prev" -msgstr "" +msgstr "Mover al previo" -#, fuzzy msgid "Move Right" -msgstr "Derecha" +msgstr "Mover a la derecha" msgid "Move Up" -msgstr "" +msgstr "Mover arriba" msgid "Move down" -msgstr "" +msgstr "Mover abajo" msgid "Move to the left" -msgstr "" +msgstr "Mover a la izquierda" msgid "Move to the next viewport" -msgstr "" +msgstr "Mover al siguiente escritorio" msgid "Move to the previous viewport" -msgstr "" +msgstr "Mover al escritorio previo" -#, fuzzy msgid "Move to the right" -msgstr "De izquierda a derecha" +msgstr "Mover a la derecha" msgid "Move up" -msgstr "" +msgstr "Mover Arriba" msgid "Number-Based Viewport Switching" -msgstr "" +msgstr "Cambiar de escritorio mediante números" msgid "Plugin for initiate action" -msgstr "" +msgstr "Plugin para iniciar la acción" msgid "Plugin for initiate/action action" -msgstr "" +msgstr "Plugin para iniciar acción" msgid "Switch to Viewport 1" -msgstr "" +msgstr "Cambiar al escritorio 1" msgid "Switch to Viewport 10" -msgstr "" +msgstr "Cambiar al escritorio 10" msgid "Switch to Viewport 11" -msgstr "" +msgstr "Cambiar al escritorio 11" msgid "Switch to Viewport 12" -msgstr "" +msgstr "Cambiar al escritorio 12" msgid "Switch to Viewport 2" -msgstr "" +msgstr "Cambiar al escritorio 2" msgid "Switch to Viewport 3" -msgstr "" +msgstr "Cambiar al escritorio 3" msgid "Switch to Viewport 4" -msgstr "" +msgstr "Cambiar al escritorio 4" msgid "Switch to Viewport 5" -msgstr "" +msgstr "Cambiar al escritorio 5" msgid "Switch to Viewport 6" -msgstr "" +msgstr "Cambiar al escritorio 6" msgid "Switch to Viewport 7" -msgstr "" +msgstr "Cambiar al escritorio 7" msgid "Switch to Viewport 8" -msgstr "" +msgstr "Cambiar al escritorio 8" msgid "Switch to Viewport 9" -msgstr "" +msgstr "Cambiar al escritorio 9" msgid "Switch to viewport 1" -msgstr "" +msgstr "Cambiar al escritorio 1" msgid "Switch to viewport 10" -msgstr "" +msgstr "Cambiar al escritorio 10" msgid "Switch to viewport 11" -msgstr "" +msgstr "Cambiar al escritorio 11" msgid "Switch to viewport 12" -msgstr "" +msgstr "Cambiar al escritorio 12" msgid "Switch to viewport 2" -msgstr "" +msgstr "Cambiar al escritorio 2" msgid "Switch to viewport 3" -msgstr "" +msgstr "Cambiar al escritorio 3" msgid "Switch to viewport 4" -msgstr "" +msgstr "Cambiar al escritorio 4" msgid "Switch to viewport 5" -msgstr "" +msgstr "Cambiar al escritorio 5" msgid "Switch to viewport 6" -msgstr "" +msgstr "Cambiar al escritorio 6" msgid "Switch to viewport 7" -msgstr "" +msgstr "Cambiar al escritorio 7" msgid "Switch to viewport 8" -msgstr "" +msgstr "Cambiar al escritorio 8" msgid "Switch to viewport 9" -msgstr "" +msgstr "Cambiar al escritorio 9" msgid "Viewport Switcher" -msgstr "" +msgstr "Cambiador de escritorio" msgid "Allow Wrap-Around" -msgstr "" +msgstr "Permitir envolver alrededor" msgid "Allow wrap-around when moving the wall up/down/left/right" -msgstr "" +msgstr "Permitir envolver alrededor cuando se mueva la pared" -#, fuzzy msgid "Arrow Colors" -msgstr "Colores" +msgstr "Permitir colores" -#, fuzzy msgid "Background Gradient" -msgstr "Brillo del fondo" +msgstr "Gradiente del fondo" -#, fuzzy msgid "Base Color" -msgstr "Color de la base de las fichas" +msgstr "Color de la base" +# No existe "parede" hay que usar "pared" o "paredes" al referirse a "wall" msgid "Desktop Wall" -msgstr "" +msgstr "Pared de escritorios" msgid "Desktop Wall Plugin" -msgstr "" +msgstr "Plugin de la pared de escritorio" -#, fuzzy msgid "Duration (in s) for wall sliding viewport switching animation" -msgstr "Duración (en milisegundos) de la animación de puesta en mosaico" +msgstr "Duración (en segundos) del deslizamiento del cambiador de escritorios" msgid "" "Duration (in s) the switch target preview should remain visible after " "switching ends." msgstr "" +"Duración (en segundos) del tiempo que debe permanecer la vista previa del " +"objetivo del cambiador antes de que termine. " msgid "Edge Flip DnD" msgstr "" @@ -4567,15 +4563,15 @@ msgid "Edge Flipping" msgstr "" -#, fuzzy msgid "Edge Radius" msgstr "Radio del borde" msgid "Edge flipping" msgstr "" +#, fuzzy msgid "First color for the background gradient of the switcher window." -msgstr "" +msgstr "Primer color para el gradiente del fondo de la ventana de \"switcher\"" msgid "First color for the thumb gradient of the switcher window." msgstr "" @@ -4586,20 +4582,19 @@ msgid "First color of the arrow of the switcher window." msgstr "" -#, fuzzy msgid "Flip Down" -msgstr "Arriba/Abajo" +msgstr "Voltear hacia abajo" -#, fuzzy msgid "Flip Left" -msgstr "Izquierda" +msgstr "Voltear hacia la izquierda" #, fuzzy msgid "Flip Right" -msgstr "Derecha" +msgstr "Voltear hacia la derecha" +#, fuzzy msgid "Flip Up" -msgstr "" +msgstr "Voltear hacia arriba" msgid "Flip down" msgstr "" @@ -4675,8 +4670,9 @@ msgid "Move with window along the wall up" msgstr "Mover cada ventana en el grupo" +#, fuzzy msgid "Move with window within wall" -msgstr "" +msgstr "Mover con la ventana dentro de la pared." msgid "Move within wall" msgstr "Mover dentro de la ventana" @@ -4684,51 +4680,49 @@ msgid "Multimonitor behavior" msgstr "Comportamiento multimonitor" -#, fuzzy msgid "Outline Color" -msgstr "Color de la línea externa" +msgstr "Color de línea externa" msgid "Outline color of the switcher window." -msgstr "Color de la linea externa de la ventana del conmutador" +msgstr "Color de linea externa de la ventana del conmutador" msgid "Preview Scale" -msgstr "" +msgstr "Vista previa escalable" #, fuzzy msgid "Radius of the rounded edge" -msgstr "El radio de los ejes de la barra de fichas" +msgstr "Radio de los ejes de la barra de fichas" msgid "Second color for the background gradient of the switcher window." -msgstr "Segundo color para el fondo de gradiente de la ventana de conmutador" +msgstr "Segundo color para el fondo de gradiente del cambiador de ventanas" msgid "Second color for the thumb gradient of the switcher window." -msgstr "Segundo color para el pulgar de gradiente de la ventana de conmutador" +msgstr "Segundo color para el gradiente del cambiador de ventanas" msgid "Second color for the thumb highlight gradient of the switcher window." -msgstr "" +msgstr "Segundo color para el gradiente del cambiador de ventanas" msgid "Second color of the arrow of the switcher window." -msgstr "Segundo color de la flecha de la ventana del conmutador" +msgstr "Segundo color de la flecha del cambiador de ventanas" -#, fuzzy msgid "Shadow Color" -msgstr "Color de la sombra" +msgstr "Color de sombra" msgid "Show Live Viewport Previews" -msgstr "" +msgstr "Mostrar vistas previas del Viewport en tiempo real" msgid "Show Viewport Switcher Preview" -msgstr "" +msgstr "Mostrar vista previa del cambiador de Viewport" msgid "Show live viewport previews in switcher window" -msgstr "" +msgstr "Mostrar previsualizaciones en el cambiador de ventanas" msgid "Show switcher window while switching viewports" msgstr "" #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Tamaño de la previsualización en %" msgid "Switch Target Preview Visibility Time" msgstr "" @@ -4742,7 +4736,6 @@ msgid "Third color for the background gradient of the switcher window." msgstr "Tercer color para el fondo de gradiente de la ventana de conmutador" -#, fuzzy msgid "Thumb Gradient" msgstr "Gradiente" @@ -4752,151 +4745,125 @@ msgid "Viewport Switching" msgstr "Cambiando Viewport" -#, fuzzy msgid "Wall Sliding Duration" -msgstr "Duración del deslizamiendo de la pared" +msgstr "Duración del deslizamiendo de pared" msgid "Width of the border between the previews" -msgstr "" +msgstr "Ancho del borde entre vistas previas" -#, fuzzy msgid "Background fill type." -msgstr "Brillo del fondo" +msgstr "Tipo de rellendo de fondo" -#, fuzzy msgid "Backgrounds" -msgstr "Fondo" +msgstr "Fondos" msgid "Center Tiled" -msgstr "" - -#, fuzzy -msgid "Centered" -msgstr "Dibujar con fuego en la pantalla" +msgstr "Mosaico Centrado" -#, fuzzy msgid "Color 1" -msgstr "Colores" +msgstr "Color 1" -#, fuzzy msgid "Color 2" -msgstr "Colores" +msgstr "Color 2" msgid "Draw the desktop wallpaper" msgstr "Dibuje el papel tapiz del escritorio" -#, fuzzy msgid "Fill or first gradient color." -msgstr "Color de las partículas de fuego" +msgstr "Color de rellenado o gradiente inicial" -#, fuzzy msgid "Fill type" -msgstr "Contorno relleno" +msgstr "Tipo de relleno" -#, fuzzy msgid "Horizontal gradient" -msgstr "Pliegues horizontales" +msgstr "Gradiente horizontales" -#, fuzzy msgid "Image" -msgstr "Imágenes" +msgstr "Imagen" -#, fuzzy msgid "Image file." -msgstr "Archivo de la imagen de los reflejos" +msgstr "Archivo de la imagen" -#, fuzzy msgid "Image position." -msgstr "Posición sobre el eje X" +msgstr "Posición de la imagen" -#, fuzzy msgid "Position" -msgstr "Posición sobre el eje X" +msgstr "Posición" msgid "Scale and Crop" -msgstr "" +msgstr "Escalar y Cortar" msgid "Scaled" -msgstr "" +msgstr "Escalado" -#, fuzzy msgid "Second gradient color." -msgstr "Gradiente" +msgstr "Segundo color de gradiente" msgid "Solid fill" -msgstr "" +msgstr "Rellenado sólido" #, fuzzy msgid "Tiled" msgstr "Mosaico" msgid "Vertical gradient" -msgstr "" +msgstr "Gradiente Vertical" msgid "Wallpaper" msgstr "Fondo de Pantalla" -#, fuzzy msgid "Background Brightness" msgstr "Brillo del fondo" -#, fuzzy msgid "Background Saturation" -msgstr "Brillo del fondo" +msgstr "Saturación del fondo" -#, fuzzy msgid "Background in Widget Mode" -msgstr "Brillo del fondo" +msgstr "Fondo en modo Widget" -#, fuzzy msgid "Brightness of non-widget windows in widget modes." -msgstr "Brillo de las ventanas translúcidas" +msgstr "Brillo de ventanas no Widget en modo Widget" msgid "End Widget Mode on Click" -msgstr "" +msgstr "Terminar modo Widget al hacer Click" msgid "End widget mode when a non-widget window is clicked." -msgstr "" +msgstr "Terminar modo Widget cuando se haga Clic en una ventana no Widget" msgid "Focus Widget Layer" -msgstr "" +msgstr "Enfocar capa de Widgets" msgid "Focus a window in the widget layer when activating the layer" -msgstr "" +msgstr "Enfocar una ventana in la capa de widgets cuando se active la capa" -#, fuzzy msgid "Saturation of non-widget windows in widget modes." -msgstr "Saturación de las ventanas translúcidas" +msgstr "Saturación de ventanas (no Widgets) en el modo Widget" -#, fuzzy msgid "Show or hide widget windows" -msgstr "Nieve sobre las ventanas" +msgstr "muestra u oculta ventanas Widget" msgid "Show widget windows on a separate layer" -msgstr "" +msgstr "Mostrar ventanas Widget en una capa separada" msgid "Time (in s) for fading into/out of the widget layer." msgstr "" +"Tiempo (en segundos) para transicionar entrada/salidad de la capa de Widgets" -#, fuzzy msgid "Toggle Widget Display" -msgstr "Habilitar o deshabilitar la Redirección la de ventanas" +msgstr "Habilitar o deshabilitar mostrar Widget" msgid "Widget Layer" -msgstr "" +msgstr "Capa de Widgets" -#, fuzzy msgid "Widget Windows" -msgstr "Ventanas en mosaico" +msgstr "Ventanas Widgets" -#, fuzzy msgid "Windows that always should be treated as widgets" -msgstr "Ventanas que deberían ser procesadas por 3D" +msgstr "Ventanas que deberían ser tratadas como Widgets" msgid "Above others windows" msgstr "Por encima de otras ventanas" -#, fuzzy msgid "Below others windows" msgstr "Por debajo de otras ventanas" @@ -4906,17 +4873,14 @@ msgid "Don't show application in taskbar" msgstr "No mostrar la aplicación en la barra de tareas" -#, fuzzy msgid "Fixed Size Windows" -msgstr "Dimención de ventanas fijada" +msgstr "Dimensión de ventanas compuesta" -#, fuzzy msgid "Fullscreen" -msgstr "Pantalla Completa" +msgstr "Pantalla completa" -#, fuzzy msgid "Fullscreen windows" -msgstr "Ventanas en pantalla completa" +msgstr "Ventanas a pantalla completa" msgid "Height values" msgstr "Valores de altura" @@ -4924,31 +4888,34 @@ msgid "Matches" msgstr "Iguales" +#, fuzzy +msgid "Maximized" +msgstr "Maximumize" + +#, fuzzy +msgid "Maximized windows" +msgstr "Ventanas no maximizables" + msgid "No ARGB visuals" msgstr "Sin visuales ARGB" msgid "No focus" msgstr "Sin centrar" -#, fuzzy msgid "Non closable windows" msgstr "Ventanas incerrables" -#, fuzzy msgid "Non maximizable windows" msgstr "Ventanas no maximizables" -#, fuzzy msgid "Non minimizable windows" msgstr "Ventanas no minimizables" -#, fuzzy msgid "Non movable windows" msgstr "Ventanas inmovibles" -#, fuzzy msgid "Non resizable windows" -msgstr "Ventanas no dimensionables" +msgstr "Ventanas no redimensionables" msgid "Set window as non closable" msgstr "Fijar ventana como incerrable" @@ -4965,14 +4932,12 @@ msgid "Set window as non resizable" msgstr "Fijar ventana como no dimensionable" -#, fuzzy msgid "Set windows rules" msgstr "Fijar reglas de ventanas" msgid "Size rules" -msgstr "" +msgstr "Regla de tamaños" -#, fuzzy msgid "Sized Windows" msgstr "Ventanas dimensionadas" @@ -4982,31 +4947,26 @@ msgid "Skip taskbar" msgstr "Saltar Barra de Tareas" -#, fuzzy msgid "Sticky" msgstr "Pegajoso" -#, fuzzy msgid "Sticky windows" msgstr "Ventanas pegajosas" msgid "Width values" msgstr "Valores de anchura" -#, fuzzy msgid "Window Rules" -msgstr "Reglas de ventana" +msgstr "Regla de ventanas" -#, fuzzy msgid "Windows that should be resized by default" -msgstr "Ventanas que deberían ser procesadas por 3D" +msgstr "Ventanas que deberían ser redimensionadas por default" -#, fuzzy msgid "Windows that should be treated as not supporting transparency" -msgstr "Ventanas que deberían ser fundidas con el escritorio" +msgstr "Ventanas que deberían ser tratadas sin transparencia" msgid "Windows will not have focus" -msgstr "La ventana no esta centrada" +msgstr "Las ventanas no estarán enfocadas" msgid "\"On all desktops\" sticky match" msgstr "Modo pegajoso \"En todos los escritorios\"" @@ -5014,6 +4974,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Fijado el Parametro fragmentado AIGLX" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Fijado Menú Firefox" @@ -5021,10 +4984,10 @@ msgstr "Fijar implementacion quebrada glProgramEnvParameter4f" msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." -msgstr "" +msgstr "Arreglar GLX_MESA_copy_sub_buffer erróneo en XGL en fglrx" msgid "Fix screen updates in XGL with fglrx." -msgstr "" +msgstr "Arreglar actualización de ventana en XGL con fglrx" msgid "Fix window type of Firefox and Thunderbird menus." msgstr "Fijar tipo de ventana de los menús de Firefox y Thunderbird" @@ -5041,9 +5004,8 @@ msgid "Fix window type of various Qt windows." msgstr "Fijar tipo de ventana de varias ventanas Qt" -#, fuzzy msgid "Java Window Fix" -msgstr "Fijar Ventana Java " +msgstr "Arreglar Ventanas Java " msgid "Legacy Fullscreen Support" msgstr "Soportar legacy pantalla completa" @@ -5058,32 +5020,366 @@ "Realiza \"en todos los escritorios\" ventanas pegajosas. ventanas pegajosas " "son visibles en todos las partes." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "Has que wine y legacy corran pantalla completa correctamente." msgid "Metacity-like workarounds." -msgstr "Metacity como Solucion" +msgstr "Metacity como solución" msgid "Notification Daemon Fix" -msgstr "Demonio de Notificación Fijado" +msgstr "Fijar Demonio de Notificación" msgid "OpenOffice.org Menu Fix" -msgstr "Menú OpenOffice.org Fijado" +msgstr "Fijar Menú OpenOffice.org" #, fuzzy msgid "Qt Window Fix" msgstr "Ancho de las ventanas" -#, fuzzy msgid "Window stickyness" -msgstr "Habilitar o deshabilitar el modo pegajoso de las ventanas" +msgstr "Fijar ventanas al escritorio" -#, fuzzy msgid "Windows on all desktops that should be made sticky" -msgstr "Ventanas que deberían ser fundidas con el escritorio" +msgstr "Ventanas en todos los escritorios que deberían ser \"pegajosas\"." msgid "Workarounds" -msgstr "" +msgstr "Entorno de trabajo" + +#~ msgid "Airplane" +#~ msgstr "Aeroplano" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Longitud de la Trayectoria de Vuelo del Aeroplano" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Velocidad de la animación para efectos intensos" + +#~ msgid "Automatic" +#~ msgstr "Automático" + +#~ msgid "Beam" +#~ msgstr "Haz" + +# Beam sería línea o haz? +#~ msgid "Beam Color" +#~ msgstr "Color del haz" + +#~ msgid "Beam Life" +#~ msgstr "Vida del haz" + +#~ msgid "Beam Slowdown" +#~ msgstr "Desaceleración del haz" + +#~ msgid "Beam Spacing" +#~ msgstr "Espaciado del haz" + +# ¿Haz no debería ser rayo? +# Roger: No... suena medio raro, pero haz es haz y rayo es rayo. +#~ msgid "Beam Up" +#~ msgstr "Usar Haz" + +#~ msgid "Beam Width" +#~ msgstr "Ancho del haz" + +#~ msgid "Beam color." +#~ msgstr "Color del haz." + +#~ msgid "Beam life." +#~ msgstr "Vida del haz." + +#~ msgid "Beam slowdown." +#~ msgstr "Desaceleración del haz." + +#~ msgid "Beam width." +#~ msgstr "Ancho del haz." + +#~ msgid "Burn" +#~ msgstr "Quemar" + +#~ msgid "Domino" +#~ msgstr "Dominó" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Dirección de caída de las piezas de Dominó" + +#~ msgid "Explode" +#~ msgstr "Explotar" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Dirección de caída de las piezas de dominó." + +#~ msgid "Fire" +#~ msgstr "Fuego" + +#~ msgid "Fire Smoke" +#~ msgstr "Humo del fuego" + +#~ msgid "Fire constant speed" +#~ msgstr "Velocidad constante del fuego" + +#~ msgid "Fire direction" +#~ msgstr "Dirección del fuego" + +#~ msgid "Fire direction." +#~ msgstr "Dirección del fuego." + +#~ msgid "Fire smoke." +#~ msgstr "Humo del fuego." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Volar hasta la Barra de Tareas al minimizar" + +#~ msgid "Fold" +#~ msgstr "Plegar" + +#~ msgid "Fold Direction" +#~ msgstr "Dirección del pliegue" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "" +#~ "Dirección de apertura del pliegue para las piezas en el efecto Cuchilla." + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "Dentro" + +#~ msgid "In-out" +#~ msgstr "Dentro-Fuera" + +#, fuzzy +#~ msgid "Leaf Spread" +#~ msgstr "Separación de las hojas" + +#~ msgid "Left-right" +#~ msgstr "Izquierda-Derecha" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Longitud de la trayectoria de vuelo del aeroplano." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "" +#~ "Hacer la duracion del efecto de fuego dependiento de la altura de la " +#~ "ventana" + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Dirección del movimiento para las partes de la ventana." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Número de Partículas de Fuego" + +#~ msgid "Number of fire particles." +#~ msgstr "Número de partículas de fuego" + +#~ msgid "Out" +#~ msgstr "Fuera" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Direccion de apertura del doblez Razr" + +#, fuzzy +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#~ msgid "Rotation Angle" +#~ msgstr "Angulo de rotación" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Angulo de rotación de las piezas de la ventana animada (en grados)." + +#, fuzzy +#~ msgid "Skewer" +#~ msgstr "Skewer" + +#, fuzzy +#~ msgid "Skewer Direction" +#~ msgstr "Dirección del efecto skewer" + +#, fuzzy +#~ msgid "Spacing between beams." +#~ msgstr "El espacio entre las vistas previas" + +# Una "tesela" es cada una de las piezas diminutas que conforma un mosaico. Una traducción "bruta" sería "teselización". +#, fuzzy +#~ msgid "Tessellation Type" +#~ msgstr "Tipo de animación del mosaico" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "" +#~ "Tipo de patrón de figuras para las piezas de explosión de la ventana" + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Tipo de patrón de figuras para las piezas de la ventana" + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "La ventana de la animación será dividida en trozos a lo largo de una " +#~ "rejilla. Especifica el número de celdas de la rejilla a lo largo de la " +#~ "altura de la ventana." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "La ventana de la animación será dividida en trozos a lo largo de una " +#~ "rejilla. Especifica el número de celdas de la rejilla a lo largo de la " +#~ "anchura de la ventana." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "La explosión de la ventana se divide en trozos a lo largo de una " +#~ "cuadrícula. Especifique el número de cuadrículas a lo largo de la altura " +#~ "de la ventana." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "La explosión de la ventana se divide en trozos a lo largo de una " +#~ "cuadrícula. Especifique el número de cuadrículas a lo largo de la anchura " +#~ "de la ventana." + +#~ msgid "Thickness" +#~ msgstr "Grosor" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Grosor de los poligonos animados" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Grosor de los poligonos que explotan" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Grosor de las piezas de las ventanas animadas (en pixeles)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Grosor de las piezas de las ventanas que explotan (en pixeles)." + +#~ msgid "Up-down" +#~ msgstr "Arriba/Abajo" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Si la ventana debe volar a barra de tareas cuando se minimiza con el " +#~ "efecto Aeroplano." + +#~ msgid "Window Grid Height" +#~ msgstr "Altura de la rejilla de la ventana" + +#~ msgid "Window Grid Width" +#~ msgstr "Ancho de la rejilla de la ventana" + +#~ msgid "Window folding direction." +#~ msgstr "Dirección de plegado de la ventana" + +#, fuzzy +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Grosor de la ventana en píxeles. Ajustar este valor a más de 0 " +#~ "desactivará la sombra, el desenfocado y el reflejo durante la animación." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitud (tamaño de las ondas en el pliegue) de los Pliegues Horizontales " +#~ "relativos a la anchura de la ventana. Los valores negativos pliegan hacia " +#~ "fuera." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitud (tamaño de las ondas en el pliegue) de los pliegues curvos " +#~ "relativos al ancho de la ventana. Los valores negativos pliegan hacia " +#~ "fuera." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "" +#~ "Amplitud de onda (tamaño de las ondas) en relación a la altura de la " +#~ "ventana." + +#~ msgid "Brightness Decrease" +#~ msgstr "Quitar Brillo" + +#~ msgid "Brightness Increase" +#~ msgstr "Aumentar Brillo" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "Brillo" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Brillo y Saturación" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Ajuste de Brillo y Saturación" + +#~ msgid "Brightness settings" +#~ msgstr "Ajustes de Brillo" + +#~ msgid "Brightness values for windows" +#~ msgstr "Valor del Brillo de las ventanas" + +#~ msgid "Brightness window values" +#~ msgstr "Valor del Brillo de las ventanas" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "Brillo de las ventanas" + +#~ msgid "Saturation Decrease" +#~ msgstr "Disminuir Saturación" + +#~ msgid "Saturation Increase" +#~ msgstr "Aumentar Saturación" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "Saturación" + +#~ msgid "Saturation settings" +#~ msgstr "Ajustes de Saturación" + +#~ msgid "Saturation values for windows" +#~ msgstr "Valores de saturación para las ventanas" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "Valores de saturación de las ventanas" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "Saturación de las ventanas translúcidas" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Opacidad de la ventana" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Ventanas que deberían tener un brillo diferente por defecto" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Ventanas que deberían tener una saturación diferente por defecto" + +#, fuzzy +#~ msgid "Close Windows In Scale" +#~ msgstr "Ventanas en mosaico vertical" #~ msgid "Animation Speed" #~ msgstr "Velocidad de la animación" @@ -5114,10 +5410,6 @@ #~ msgid "Misc. options" #~ msgstr "Opciones varias" -#, fuzzy -#~ msgid "Show minimized windows" -#~ msgstr "Nieve sobre las ventanas" - #~ msgid "Tile or Stretch" #~ msgstr "Mosaico o Expandido" @@ -5141,9 +5433,6 @@ #~ "Esto creará mipmaps, los cuales mejorarán la apariencia de las texturas, " #~ "y reducirá los bordes dentados." -#~ msgid "Window width" -#~ msgstr "Ancho de las ventanas" - #~ msgid "Spring model on move" #~ msgstr "Utilizar el modelo de resortes cuando la ventana es movida" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/eu.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/eu.po --- compiz-fusion-plugins-unsupported-0.7.6/po/eu.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/eu.po 2008-09-17 14:29:33.000000000 +0100 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: eu-compiz-fusion-plugins\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" -"PO-Revision-Date: 2008-04-08 15:35+0200\n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" +"PO-Revision-Date: 2008-09-12 14:03+0200\n" "Last-Translator: Ander Elortondo \n" "Language-Team: Euskara \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" -msgstr "3D xagua biratzean bakarrik" +msgstr "3D sagua biratzean bakarrik" msgid "3D Windows" msgstr "3D leihoak" @@ -66,8 +66,8 @@ "Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " "cube via the mouse)" msgstr "" -"Hasi 3D eran biratzea xaguaz egiten bada bakarrik. (adib. kubo biratzea " -"xaguaz egiten bada)" +"Hasi 3D eran biratzea saguaz egiten bada bakarrik. (adib. kubo biratzea " +"saguaz egiten bada)" msgid "Minimum Cube Size" msgstr "Kuboaren tamaina minimoa" @@ -104,16 +104,22 @@ msgstr "3Dn landu beharko liratekeen leihoak" msgid "ADD Helper" -msgstr "" +msgstr "ADI laguntzailea" msgid "Bindings" -msgstr "" +msgstr "Laster-teklak" msgid "Brightness" -msgstr "Disdira" +msgstr "Distira" msgid "Brightness of faded windows" -msgstr "Leiho zeharrargiko disdira" +msgstr "Iraungitako leihoen distira" + +msgid "Enable ADD Helper on start" +msgstr "Gaitu ADI laguntzailea hasterakoan" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Gaitu ADI laguntzailea lehen aldiz kargatzean" msgid "" "Make it slightly easier to concentrate by dimming all but the active window." @@ -123,16 +129,16 @@ msgstr "Opakutasun" msgid "Opacity of faded windows" -msgstr "Leiho zeharrargiko opakutasuna" +msgstr "Iraungitako leihoen opakutasuna" msgid "Saturation" msgstr "Saturazioa" msgid "Saturation of faded windows" -msgstr "Leiho zeharrargiko saturazioa" +msgstr "Iraungitako leihoen saturazioa" msgid "Toggle AddHelper" -msgstr "Arreta indartzeko laguntza jarri edo kendu" +msgstr "Gaitu/ezgaitu arreta indartzeko laguntza" msgid "Use this to enable/disable AddHelper on the fly." msgstr "Arretarako laguntza azkar jarri edo kentzeko erabili hau." @@ -143,45 +149,22 @@ msgid "Window types that should be Opacified." msgstr "Opaku bihur daitezkeen leiho motak" -msgid "Airplane" -msgstr "Egazkina" - -msgid "Airplane Flying Path Length" -msgstr "Egazkinaren hegaldi ibilbidearen luzera" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." msgstr "" -"Eketu guztiak ausazkoak, aukeratutako efektua ahaztuz. Gertaera baten ez " -"bada efekturik aukeratu, ez da animatuko." - -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Tolesdura horizontalen tamaina (tolesdurako uhinen tamaina) leiho " -"zabalerarekin parekatuz. Balore negatiboekin kanporantz tolestuz." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Tolesdura kurbatuaren tamaina (tolesdurako uhinen tamaina) leiho " -"zabalerarekin parekatuz. Balore negatiboekin kanporantz tolestuz." +"Efektu guztiak ausazkoak, hautatutako efektua ahaztuz. Gertaera baten ez " +"bada efekturik hautatu, ez da animatuko." msgid "Angle of window at the end of the animation." msgstr "leihoaren angulua animazio amaitzean" msgid "Animation Selection" -msgstr "Animazioak aukeratu" +msgstr "Animazioak hautatu" msgid "Animation Time Step" msgstr "Animazio denbora-pausoa" -msgid "Animation Time Step For Intense Effects" -msgstr "Animazio denbora-pausoa efektu bortitzetan" - msgid "Animation duration in milliseconds for close effect." msgstr "Animazio iraupena milisegundutan ixte efektuan." @@ -200,52 +183,12 @@ msgid "Animations" msgstr "Animazioak" -msgid "Automatic" -msgstr "Automatiko" - msgid "Away Angle" msgstr "Kontrako angelua" msgid "Away Position" msgstr "Kontrako posizio" -msgid "Beam" -msgstr "Argi-sorta" - -msgid "Beam Color" -msgstr "Argi-sorta kolorea" - -msgid "Beam Life" -msgstr "Argi-sortaren bizia" - -msgid "Beam Slowdown" -msgstr "Argi-sortaren gainbehera" - -msgid "Beam Spacing" -msgstr "Argi-sortaren tartea" - -#, fuzzy -msgid "Beam Up" -msgstr "Argi-sorta goi" - -msgid "Beam Width" -msgstr "Argi-sorta zabalera" - -msgid "Beam color." -msgstr "Argi-sorta kolorea." - -msgid "Beam life." -msgstr "Argi-sorta bizia." - -msgid "Beam slowdown." -msgstr "Argi-sorta gainbehera." - -msgid "Beam width." -msgstr "Argi-sorta zabalera." - -msgid "Burn" -msgstr "Su garrak" - msgid "Close Animation" msgstr "Ixte animazioa" @@ -267,25 +210,16 @@ "fire_color=#0080ffff, fire_particles=700, fire_smoke=1" msgid "Curved Fold" -msgstr "Kurbatutako tolesdura" +msgstr "Kurbatutako tolesdura " -msgid "Curved Fold Amplitude" -msgstr "Kurbatutako tolesduraren tamaina" +msgid "Curved Fold Amplitude Multiplier" +msgstr "Kurbatutako tolesduraren anplitude biderkatzailea" msgid "Dodge" msgstr "Txiri egin" msgid "Dodge Gap Ratio" -msgstr "" - -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Domino piezaren jauzte norabidea" - -msgid "Down" -msgstr "Behera" +msgstr "Txiri tarte ratioa" msgid "Dream" msgstr "Ametz" @@ -296,77 +230,24 @@ msgid "Effect Settings" msgstr "Efektu ezarpenak" -msgid "Explode" -msgstr "Leherketa" - msgid "Fade" -msgstr "Koloregabetu" - -msgid "Falling direction for Domino pieces." -msgstr "Jauzte norabidea domino piezetan." - -msgid "Fire" -msgstr "Sua" - -msgid "Fire Particle Color" -msgstr "Su partikularen kolorea" - -msgid "Fire Particle Life" -msgstr "Su partikularen bizia" - -msgid "Fire Particle Size" -msgstr "Su partikularen tamaina" - -msgid "Fire Particle Slowdown" -msgstr "Su partikulen gainbehera" - -msgid "Fire Smoke" -msgstr "Suaren kea" - -msgid "Fire constant speed" -msgstr "Suaren abiadura konstantea" - -msgid "Fire direction" -msgstr "Suaren norabidea" - -msgid "Fire direction." -msgstr "Suaren norabidea." - -msgid "Fire particle color." -msgstr "Su partikularen kolorea." - -msgid "Fire particle life." -msgstr "Su partikularen bizia." - -msgid "Fire particle size." -msgstr "Su partikularen tamaina." - -msgid "Fire particle slowdown." -msgstr "Su partikulen gainbehera." - -msgid "Fire smoke." -msgstr "Suaren kea." +msgstr "Iraungi" msgid "Fixed window interior during the Rollup animation." msgstr "Biltze animazioan zehar leihoaren barnea finkaturik." -msgid "Fly to TaskBar on Minimize" -msgstr "Egan ataza-barrara ikonotzean." - msgid "Focus Animation" msgstr "Fokuaren animazioa" msgid "Focus Effect" msgstr "Fokuaren efektua" -msgid "Fold" -msgstr "Tolestu" - -msgid "Fold Direction" -msgstr "Toleste norabidea" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Mozketa efektuan, zatien irekitze tolesduraren norabidea" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" +"Tolesduraren anplitude (tamaina) zenbaki honegatik biderkatzen da. Balore " +"negatiboek bestaldera tolesten dute." msgid "Glide 1" msgstr "Txirrist 1" @@ -374,41 +255,17 @@ msgid "Glide 2" msgstr "Txirrist 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Ausazko koloreak izan su efektuan, su mistikoa bezala ere ezaguna." - -msgid "Hexagonal" -msgstr "Hexagonala" - msgid "Horizontal Folds" msgstr "Horizontalean tolestu" -msgid "Horizontal Folds Amplitude" -msgstr "Toleste horizontalaren zabalera" +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "Toleste horizontalaren anplitude biderkatzailea" msgid "How spring-like the Sidekick animation should be." -msgstr "" +msgstr "Ostiko animazioak zenbateko malguki itxura izango duen" msgid "How spring-like the Zoom animation should be." -msgstr "" - -msgid "In" -msgstr "Barnea" - -msgid "In-out" -msgstr "Barne-Kanpo" - -msgid "Leaf Spread" -msgstr "" - -msgid "Left" -msgstr "Ezkerra" - -msgid "Left-right" -msgstr "Ezker-eskuin" - -msgid "Length of airplane's flying path." -msgstr "Egazkinaren egaldi ibilbidearen luzera." +msgstr "Zoom animazioak zenbateko malguki itxura izango duen" msgid "Magic Lamp" msgstr "Lanpara magikoa" @@ -431,9 +288,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Lanpara magikoaren ireki/itxi mugimendu amaiera" -msgid "Make fire effect duration be dependent on window height." -msgstr "Su efektuaren iraupena leihoaren altueraren araberakoa izan dadila." - msgid "Minimize Animation" msgstr "Ikonotu animazioa" @@ -443,21 +297,12 @@ msgid "Minimize/Unminimize Only" msgstr "Ikonotu/handitu bakarrik" -msgid "Movement direction(s) for window pieces." -msgstr "Mugimendu norabidea(k) leiho zatientzat." - msgid "None" msgstr "Ezer ez" -msgid "Number Of Fire Particles" -msgstr "Su partikulen kopurua" - msgid "Number of Horizontal Folds" msgstr "Toleste horizontalen kopurua." -msgid "Number of fire particles." -msgstr "Su partikulen kopurua." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "Ostikoaren bira kopurua (%10 gora behera ausazkoan)" @@ -469,10 +314,10 @@ msgstr "Piztu" msgid "On open/close, move magic lamp ending point with the mouse pointer." -msgstr "" +msgstr "Zabaldu eta ixtean, mugitu lanpara magikoaren amaiera sagu erakusleaz" msgid "On open/close, move vacuum ending point with the mouse pointer." -msgstr "" +msgstr "Zabaldu eta ixtean, mugitu xurgailuaren amaiera sagu erakusleaz" msgid "Open Animation" msgstr "Irekitze animazioa" @@ -486,16 +331,16 @@ msgid "Options" msgstr "Aukerak" -msgid "Out" -msgstr "Kanpoan" - msgid "Pool" -msgstr "Inkesta" +msgstr "Gordailu" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" +"Ausazko efektua hautatuz gero, aukeran dauden efektuen gordailua. Klik " +"berrezarri zerrenda osoa leheneratzeko." msgid "Random" msgstr "Ausaz" @@ -506,36 +351,15 @@ msgid "Random Effects" msgstr "Asazko efektuak" -msgid "Randomly Colored Fire" -msgstr "Suaren kolorea ausazkoa" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Razr tolesduraren irekitze norabidea" - -msgid "Rectangular" -msgstr "Laukia" - -msgid "Right" -msgstr "Eskuma" - msgid "Roll Up" msgstr "Bildu" msgid "Rollup Fixed Interior" msgstr "Biltzean barnea finkaturik" -msgid "Rotation Angle" -msgstr "Biratze angelua" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Animatutako leihoen zatien biratze angelua (Gradutan)" - msgid "Shade Animation" msgstr "Itzal animazioa" @@ -549,55 +373,27 @@ msgstr "Ostikoaren bira kopuruakoa" msgid "Sidekick Springiness" -msgstr "" - -msgid "Skewer" -msgstr "" - -msgid "Skewer Direction" -msgstr "" - -msgid "Spacing between beams." -msgstr "" +msgstr "Ostikoaren malgukitasuna" msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." msgstr "" +"Hasierako zabalera irekitzean eta amaierako zabalera ixtean lanpara magiko " +"efektuan." msgid "" "Starting width of open effect and ending width of close effect for Vacuum." msgstr "" - -msgid "Tessellation Type" -msgstr "" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -msgid "Tessellation type for window pieces." -msgstr "" +"Hasierako zabalera irekitzean eta amaierako zabalera ixtean xurgailu " +"efektuan." msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" - -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" +"Milisegundo kopurua animazio irudikatzeen artean. Gero eta zenbaki handiagoa " +"mugimendu zakarragoa." msgid "The animation effect shown when closing a window." msgstr "Animazio efektua ikusgai leihoa ixtean." @@ -614,20 +410,6 @@ msgid "The animation effect shown when shading a window." msgstr "Animazio efektua ikusgai lehioa itzalera pasatzean." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Eztandako leihoa sareta batean zatituko da.Zehaztu saretak zenbat gelaxka " -"izango dituen leihoaren altueran." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Eztandako leihoa sareta batean zatituko da.Zehaztu saretak zenbat gelaxka " -"izango dituen leihoaren zabaleran." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "Lanpara magikoak izango duen zabalera maximoa (uhinen tamaina)." @@ -641,36 +423,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "Emango diren toleste horizontal kopurua Toleste Horizontal animazioan." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Uhinaren tamaina leiho alturaren araberakoa." - msgid "The width of the wave relative to the window height." msgstr "Uhinaren zabalera leihoaren altueraren araberakoa." msgid "The windows that will be animated." msgstr "Animatuak izango diren leihoak." -msgid "Thickness" -msgstr "Lodiera" - -msgid "Thickness of Animated Polygons" -msgstr "Animatutako poligonoen lodiera." - -msgid "Thickness of Exploding Polygons" -msgstr "Eztandako poligonoen lodiera." - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Animatutako leiho zatien lodiera (pixeletan)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Eztandako leiho zatien lodiera (pixeletan)." - -msgid "Up" -msgstr "Goi" - -msgid "Up-down" -msgstr "Goi-behe" - msgid "Use various animations as window effects" msgstr "Erabili hainbat animazio leiho efektu gisa." @@ -681,10 +439,10 @@ msgstr "Sareta hutsaren Y resoluzioa" msgid "Vacuum Open Start Width" -msgstr "" +msgstr "Xurgailuaren hasierako zabalera." msgid "Vacuum Open/Close Moving End" -msgstr "" +msgstr "Xurgailuaren Ireki/itxi mugimendu amaiera" msgid "" "Vertex grid resolution for Magic Lamp (Y dimension only). This is the number " @@ -701,50 +459,53 @@ "points used to define the curves. The higher the number, the smoother the " "curves. However there will be a loss of performance (CPU usage increases)." msgstr "" +"Sareta erpinaren resoluzioa xurgailuan (Y dimensioan bakarrik). Kurbak " +"definitzeko erabiliko diren puntu kopurua da. Zenbakia handiagoak kurba " +"leuntzen du. Hala ere, errendimendu txikitzea ekar dezake. (CPU erabilera " +"igotzen da)." msgid "Wave" msgstr "Uhina" -msgid "Wave Amplitude" -msgstr "Uhin tamaina" +msgid "Wave Amplitude Multiplier" +msgstr "Uhin anplitude biderkatzailea" msgid "Wave Width" msgstr "Uhin zabalera" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" +"Uhin anplitudea (tamaina) zenbaki honegatik biderkatuko da. Balore " +"negatiboek bestaldera tolestuko dute." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " "effect." msgstr "" +"Leihoak ataza-barrara zoom egin behar badu toleste oker efektuaz txikitzean." msgid "" "Whether the window should zoom to taskbar when minimized with Dream effect." -msgstr "" +msgstr "Leihoak ataza-barrara zoom egin behar badu amets efektuaz txikitzean." msgid "" "Whether the window should zoom to taskbar when minimized with Glide 1 effect." msgstr "" +"Leihoak ataza-barrara zoom egin behar badu txirrist 1 efektuaz txikitzean." msgid "" "Whether the window should zoom to taskbar when minimized with Glide 2 effect." msgstr "" +"Leihoak ataza-barrara zoom egin behar badu txirrist 2 efektuaz txikitzean." msgid "" "Whether the window should zoom to taskbar when minimized with Horizontal " "Folds effect." msgstr "" - -msgid "Window Grid Height" -msgstr "Leihoko Saretaren Altura" - -msgid "Window Grid Width" -msgstr "Leihoko saretaren zabalera" - -msgid "Window folding direction." -msgstr "Leiho toleste norabidea" +"Leihoak ataza-barrara zoom egin behar badu toleste horizontal efektuaz " +"txikitzean." msgid "Window that should animate with this effect when focused." msgstr "Enf" @@ -752,16 +513,11 @@ msgid "Window that should animate with this effect when shaded." msgstr "enfokatzean efektu honegatik animatua izango den leihoa." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" - msgid "Zoom" msgstr "Zoom" msgid "Zoom Springiness" -msgstr "" +msgstr "Zoom malgukitasuna" msgid "Zoom from Center" msgstr "Zoom erditik" @@ -865,83 +621,11 @@ msgid "Y position" msgstr "Y posizioa" -#, fuzzy -msgid "Brightness Decrease" -msgstr "Disdira" - -#, fuzzy -msgid "Brightness Increase" -msgstr "Disdira" - -#, fuzzy -msgid "Brightness Step" -msgstr "Disdira" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "Saturazioa" - -msgid "Brightness and Saturation adjustments" -msgstr "" - -#, fuzzy -msgid "Brightness settings" -msgstr "Disdira" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Leiho zeharrargiko disdira" - -#, fuzzy -msgid "Brightness window values" -msgstr "Leiho zeharrargiko disdira" - -#, fuzzy -msgid "Brightness windows" -msgstr "Leiho zeharrargiko disdira" - -msgid "General" -msgstr "" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "Saturazioa" - -#, fuzzy -msgid "Saturation Increase" -msgstr "Saturazioa" - -#, fuzzy -msgid "Saturation Step" -msgstr "Saturazioa" - -#, fuzzy -msgid "Saturation settings" -msgstr "Saturazioa" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "Leiho zeharrargiko saturazioa" - -#, fuzzy -msgid "Saturation window values" -msgstr "Leiho zeharrargiko saturazioa" - -#, fuzzy -msgid "Saturation windows" -msgstr "Leiho zeharrargiko saturazioa" - -#, fuzzy -msgid "Window specific" -msgstr "Leiho kokapena" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "3Dn landu beharko liratekeen leihoak" +msgid "Bicubic filter" +msgstr "Iragazki bikubikoa" -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "3Dn landu beharko liratekeen leihoak" +msgid "Bicubic texture filtering" +msgstr "Testura bikubikoa iragazten" msgid "Color filter" msgstr "kolore filtroa" @@ -965,32 +649,39 @@ "List of plain text filter files that should be applied when filtering " "windows or screen." msgstr "" +"Leihoak edo pantaila iragaztean aplikatuko diren testu hutsezko iragazkien " +"zerrenda." msgid "" "Select filter to use from filters list : either apply all filters or only " "one specific filter (triggering this action switches filters one by one and " "eventually comes back to the \"all filters\" mode)." msgstr "" +"Hautatu iragazkia, zerrendatik: Erabili iragazki guztiak edo bat bereziki. " +"(ekintza hau abiaraztean, iragazkiak banan-banan aldatuko ditu, \"iragazki " +"guztiak\" modura itzuliz tokatzean)" msgid "Switch filter" msgstr "Aldatu iragazkia" msgid "Toggle filtering for currently focused window." -msgstr "" +msgstr "Gaitu/ezgaitu iragaztea orain fokua duen leihora." msgid "Toggle filtering for every window on the screen." -msgstr "" +msgstr "Gaitu/ezgaitu iragaztea pantailan dauden leiho guztietara." msgid "Toggle screen filtering" -msgstr "" +msgstr "Gaitu/ezgaitu pantaila iragazkia." msgid "Toggle window filtering" -msgstr "" +msgstr "Gaitu/ezgaitu leiho iragazkia." msgid "" "Window decorations (borders and titlebar) will be filtered as well as window " "contents if enabled." msgstr "" +"Leiho dekorazioak (ertzak eta titulu-barra) iragazi egingo dira, leiho " +"edukiaz bat, gaitua badago." msgid "Windows to be filtered by default." msgstr "Lehenetsita iragaziko diren leihoak." @@ -999,34 +690,37 @@ msgstr "Iragaziko ez diren leihoak." msgid "Activate Crash Handler." -msgstr "" +msgstr "Aktibatu Kraskadura laguntzailea." msgid "Compiz crash handler plugin" -msgstr "" +msgstr "Compiz kraskadura laguntzaile plugina" msgid "Crash Dump Directory" -msgstr "" +msgstr "Kraskatzean iraultze karpeta. " msgid "Crash handler" -msgstr "" +msgstr "Kraskadura laguntzailea." msgid "Directory to dump the crash logs to." -msgstr "" +msgstr "Kraskadura egunkaria irauliko den karpeta." msgid "Enable Crash Handler" -msgstr "" +msgstr "Gaitu kraskadura laguntzailea." msgid "Start Other Window Manager" -msgstr "Beste leiho kudetzaile bat abiarazi" +msgstr "Beste leiho kudeatzaile bat abiarazi" msgid "Start other window manager on Crash." -msgstr "Beste leiho kudetzaile bat abiarazi aplikazioa erortzean" +msgstr "Beste leiho kudeatzaile bat abiarazi kraskatzean." msgid "Window Manager Command Line" -msgstr "" +msgstr "Leiho kudeatzailearen komando lerroa" msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" -msgstr "" +msgstr "Leiho kudeatzailearen komando lerroa. EZ IDATZI HEMEN COMPIZ!!!" + +msgid "Above" +msgstr "Gaina" msgid "Adjust bottom face image to rotation" msgstr "Biratzean azpiko aurpegiko irudia doitu" @@ -1049,6 +743,18 @@ msgid "Appearance" msgstr "Itxura" +msgid "Aspect ratio" +msgstr "Ikuspegi-ratio" + +msgid "Aspect ratio of the deformed cube" +msgstr "Ikuspegi-ratioa deformatutako kuboan" + +msgid "Auto zoom" +msgstr "Auto zoom" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Auto zoom saguaz biratzean bakarrik" + msgid "Behaviour" msgstr "Jokabidea" @@ -1056,38 +762,82 @@ msgstr "Azpiko irudiaren fitxategiak" msgid "Clamp bottom face image to border" -msgstr "" +msgstr "Lotu azpiko aurpegiaren irudia ertzari" msgid "" "Clamp bottom face image to border. This is often the best if your image " "doesn't fit the size of the cube or if it's transparent. It can lead to some " "ugly dotted lines when enabled (especially with large enough images) though." msgstr "" +"Lotu azpiko aurpegiaren irudia ertzari. Hau izanen da aukerarik onena " +"irudiaren tamaina ez badator bat kuboarekin edo hau gardena bada. It can " +"lead to some ugly dotted lines when enabled (especially with large enough " +"images) though." msgid "Clamp top face image to border" -msgstr "" +msgstr "Lotu goiko aurpegiaren irudia ertzari" msgid "" "Clamp top face image to border. This is often the best if your image doesn't " "fit the size of the cube or if it's transparent. It can lead to some ugly " "dotted lines when enabled (especially with large enough images) though." msgstr "" +"Lotu azpiko aurpegiaren irudia ertzari. Hau izanen da aukerarik onena " +"irudiaren tamaina ez badator bat kuboarekin edo hau gardena bada. It can " +"lead to some ugly dotted lines when enabled (especially with large enough " +"images) though." msgid "Color of bottom face of the cube" msgstr "Kuboaren azpiko aurpegiko kolorea" +msgid "Color of the ground (far)." +msgstr "Oinarriko kolorea (urruti)." + +msgid "Color of the ground (near)." +msgstr "Oinarriko kolorea (gertu)." + msgid "Color of top face of the cube" msgstr "Kuboaren goiko aurpegiko kolorea" +msgid "Compiz cube reflection and deformation" +msgstr "Compiz kuboaren islapena eta deformazioa" + msgid "Cube Bottom Color" msgstr "Kuboaren azpiko kolorea" -msgid "Cube Caps" -msgstr "Kubo estaldura" +msgid "Cube Reflection and Deformation" +msgstr "Kuboaren islapena eta deformazioa" msgid "Cube Top Color" msgstr "Kuboaren goiko kolorea" +msgid "Cube caps" +msgstr "Kubo estaldura" + +msgid "Cylinder" +msgstr "Zilindroa" + +msgid "Deform caps" +msgstr "Deformatu estaldura" + +msgid "Deform cube caps." +msgstr "Deformatu kubo estaldura." + +msgid "Deform only on mouse rotate" +msgstr "Deformatu saguaz biratzean bakarrik" + +msgid "Deformation" +msgstr "Deformazioa" + +msgid "Deformation in unfold cube mode." +msgstr "Deformazioa tolestu gabeko kubo moduan." + +msgid "Deformation mode." +msgstr "Deformazio modua." + +msgid "Distance" +msgstr "Distantzia" + msgid "Draw bottom face" msgstr "Marraztu azpiko aurpegia" @@ -1100,12 +850,36 @@ msgid "Draw top face of the cube" msgstr "Marraztu kuboaren goiko aurpegia" -msgid "Go back to previous image for bottom face of the cube" +msgid "Enabled" +msgstr "Gaitua" + +msgid "Give cube a reflective ground." +msgstr "Eman kuboari zoru islakorra." + +msgid "Go back to previous image for bottom face of the cube" msgstr "Kuboko azpiko aurpegiko irudirako joan aurreko irudira" msgid "Go back to previous image for top face of the cube" msgstr "Kuboko goiko aurpegiko irudirako joan aurreko irudira" +msgid "Ground color(far)" +msgstr "Zoruaren kolorea (urruti)" + +msgid "Ground color(near)" +msgstr "Zoruaren kolorea (gertu)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "Hasi kuboaren deformazio zilindrikoa, biratzea saguaz ematen bada." + +msgid "Intensity" +msgstr "Intentsitatea" + +msgid "Jumpy" +msgstr "Saltoka" + +msgid "Jumpy reflection" +msgstr "Saltoen islatzea" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1115,6 +889,18 @@ msgstr "" "Kuboko goiko aurpegian prozesatu daitezkeen PNG eta SVG fitxategien zerrenda" +msgid "Maintain bottom aspect ratio" +msgstr "Mantendu azpiko itxura-ratioa" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "Mantendu azpiko estaldura irudiaren itxura-ratioa." + +msgid "Maintain top aspect ratio" +msgstr "Mantendu goiko itxura-ratioa" + +msgid "Maintain top cap image aspect ratio." +msgstr "Mantendu goikok estaldura irudiaren itxura-ratioa." + msgid "Next bottom image" msgstr "Hurrengo azpiko irudia" @@ -1127,8 +913,23 @@ msgid "Prev top image" msgstr "Aurreko goiko irudia" -msgid "Render images on top and bottom of the cube" -msgstr "Kuboaren goiko eta azpiko irudiak prozesatu" +msgid "Reflection" +msgstr "Islatzea" + +msgid "Reflection ground size" +msgstr "Islatzearen zoru tamaina" + +msgid "Reflection ground size." +msgstr "Islatzearen zoru tamaina." + +msgid "Reflection intensity" +msgstr "Islatze intentsitatea" + +msgid "Reflection mode" +msgstr "Islatze modua" + +msgid "Reflection mode." +msgstr "Islatze modua." msgid "Scale bottom image" msgstr "Azpiko irudia eskalatu" @@ -1142,112 +943,71 @@ msgid "Scale top image" msgstr "Goiko irudia eskalatu" +msgid "Sphere" +msgstr "Esfera" + msgid "Top image files" msgstr "Goiko irudi fitxategiak" -msgid "Above" -msgstr "Gaina" +msgid "Unfold cube deformation" +msgstr "Zabaldutako kuboaren deformazioa" -msgid "Auto zoom" -msgstr "Auto zoom" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Txikiagotu automatikoki saguaz biratzean bakarrik." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Auto zoom xaguaz biratzean bakarrik" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Txikiagotu automatikoki kuboa pantailara egokitzeko." -msgid "Color of the ground (far)." -msgstr "Oinarriko kolorea (urruti)." +msgid "Cube Caps" +msgstr "Kubo estaldurak" -msgid "Color of the ground (near)." -msgstr "Oinarriko kolorea (gertu)." +msgid "Render images on top and bottom of the cube" +msgstr "Kuboaren goiko eta azpiko irudiak prozesatu" msgid "Compiz cube reflection" -msgstr "Compiz kuboaren islapena" +msgstr "Compiz kuboaren islatzea" msgid "Cube Reflection" -msgstr "Kubo islapena" - -msgid "Distance" -msgstr "Distantzia" - -msgid "Ground color(far)" -msgstr "Oinarri kolorea (urruti)" - -msgid "Ground color(near)" -msgstr "Oinarri kolorea (gertu)" - -msgid "Intensity" -msgstr "Intentsitatea" - -msgid "Jumpy" -msgstr "" - -msgid "Jumpy reflection" -msgstr "" - -msgid "Reflection ground size" -msgstr "" - -msgid "Reflection ground size." -msgstr "" - -msgid "Reflection intensity" -msgstr "" - -msgid "Reflection mode" -msgstr "" - -msgid "Reflection mode." -msgstr "" - -msgid "Zoom out automatically only on mouse rotate." -msgstr "" - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "" +msgstr "Kubo islatzea" msgid "Animation used when switching to expo mode" -msgstr "" +msgstr "Expo modura aldatzean erabilitako animazioa" msgid "Aspect Ratio" -msgstr "" +msgstr "Itxura ratioa" msgid "Button binding for drag & drop of windows" -msgstr "" +msgstr "Laster-tekla, leihoak arrastatu eta jaregin egiteko" msgid "Button binding to exit expo" -msgstr "" +msgstr "Expotik irteteko laster-tekla" msgid "Button binding to switch to next viewport in expo" -msgstr "" +msgstr "Laster-tekla hurrengo mahaigain aurkezpenera aldatzeko Expon" -#, fuzzy msgid "Curve" -msgstr "Kurbatutako tolesdura" +msgstr "Kurbadura" msgid "Curve strength" -msgstr "" - -#, fuzzy -msgid "Deformation" -msgstr "Iraupena" +msgstr "Kurbaduraren indarra" msgid "Deformation of the expo wall" -msgstr "" +msgstr "Expo ormaren deformazioa" msgid "Distance between viewports" -msgstr "" +msgstr "Mahaingain aurkezpenen arteko tartea" msgid "Distance of the expo wall" -msgstr "" +msgstr "Expo ormara distantzia" msgid "Double click time" -msgstr "Klik bikotzaren denbora" +msgstr "Klik bikoitzaren denbora" msgid "Drag&drop" -msgstr "" +msgstr "Arrastatu eta jaregin" msgid "Duration of the zoomout animation" -msgstr "" +msgstr "Txikitze animazioaren denbora" msgid "Engage wall expo mode button binding" msgstr "" @@ -1259,148 +1019,148 @@ msgstr "" msgid "Exit expo" -msgstr "" +msgstr "Expotik irten" msgid "Expo" -msgstr "" +msgstr "Expo" msgid "Expo Animation" -msgstr "" +msgstr "Expo animazioa" msgid "Expo Plugin" -msgstr "" +msgstr "Expo plugina" msgid "Expo button" -msgstr "" +msgstr "Expo botoia" msgid "Expo edge" -msgstr "" +msgstr "Expo ertza" msgid "Expo key" -msgstr "" +msgstr "Expo tekla" msgid "Expo mode aspect ratio" -msgstr "" +msgstr "Expo moduaren itxura ratioa" msgid "Fade + Zoom" -msgstr "" +msgstr "Iraungi + zoom" msgid "Generate mipmaps in expo mode" -msgstr "" +msgstr "Sortu mipmaps expo moduan" msgid "Hide panels/docks in expo" -msgstr "" +msgstr "Gorde panelak/docks expon" msgid "Hide panels/docks in expo." -msgstr "" +msgstr "Gorde panelak/docks expon." msgid "Immediate moves" -msgstr "" +msgstr "Berehala mugitu" msgid "Inactive viewport brightness." -msgstr "" +msgstr "Aktibo ez dauden mahaigain aurkezpenen distira." msgid "Inactive viewport saturation." -msgstr "" +msgstr "Aktibo ez dauden mahaigain aurkezpenen saturazioa." msgid "Mipmaps" msgstr "Mipmaps" msgid "Multi Output Mode" -msgstr "" +msgstr "Irteera anitzeko modua" msgid "Next viewport" -msgstr "" +msgstr "Hurrengo mahaigain aurkezpena" msgid "One big wall" -msgstr "" +msgstr "Orma handi bakarra" msgid "One wall per output" -msgstr "" +msgstr "Orma bat irteerako" msgid "Previous viewport" -msgstr "" - -msgid "Reflection" -msgstr "" +msgstr "Aurreko mahaigain aurkezpena" msgid "Reflection Scale" -msgstr "" +msgstr "Islatzearen eskala" msgid "Scale factor of the expo wall reflection" -msgstr "" +msgstr "Eskala faktorea expo ormaren islatzean" msgid "" "Selects how the expo wall is displayed if multiple output devices are used." msgstr "" +"Hautatu expo orma nola ikusiko den irteera gailu anitzak erabiltzen badira." msgid "" "Selects if windows movements in expo mode should be immediate - this among " "other things disables wobbliness" msgstr "" +"Hautatu leiho mugimendua berehalakoak izan behar badira - this among other " +"things disables wobbliness" msgid "Show a reflection of the viewports on the ground" -msgstr "" +msgstr "Ikus mahaigain aurkezpenaren islatzea zoruan" msgid "Strength of the deformation in curve mode" -msgstr "" +msgstr "Deformazioaren indarra kurba moduan" msgid "Tilt" -msgstr "" +msgstr "Tilt" msgid "Timeframe to execute a double click" -msgstr "" +msgstr "Denbora-tartea klik bikoitza exekutatzeko" msgid "Viewport distance" -msgstr "" +msgstr "Mahaigain aurkezpenaren distantzia" msgid "Vortex" -msgstr "" +msgstr "Vortex" msgid "Zoom time" -msgstr "" +msgstr "Zoom denbora" msgid "Activate Demanding Attention Window" msgstr "" msgid "Activate Window" -msgstr "" +msgstr "Aktibatu leihoa" msgid "Activate a given window" -msgstr "" +msgstr "Aktibatu emandako leihoa" msgid "Activate next window which has the \"demands attention\" flag set." msgstr "" msgid "Extra WM Actions" -msgstr "" +msgstr "Leiho kudeatzaile akzio extrak" msgid "Provides less commonly used WM actions" -msgstr "" +msgstr "Leiho kudeatzailean gutxien erabiltzen diren akzioak ematen ditu" msgid "Toggle Always-On-Top" -msgstr "" +msgstr "Gaitu/ezgaitu \"beti goian\"" msgid "Toggle Fullscreen" -msgstr "" +msgstr "Gaitu/ezgaitu \"pantaila osoan\"" msgid "Toggle Redirect" -msgstr "" +msgstr "Gaitu/ezgaitu \"birbideratzea\"" msgid "Toggle Sticky" -msgstr "" +msgstr "Gaitu/ezgaitu \"modu itsaskorra\"" msgid "Toggle always on top for the active window" -msgstr "" +msgstr "Gaitu/ezgaitu \"beti goian\" leiho aktiboan" msgid "Toggle window fullscreen" -msgstr "" +msgstr "Gaitu/ezgaitu leihoa \"pantaila osoan\"" msgid "Toggle window redirect" -msgstr "" +msgstr "Gaitu/ezgaitu leihoa \"birbideratzea\"" msgid "Toggle window stickyness" -msgstr "" +msgstr "Gaitu/ezgaitu leihoa \"modu itsaskorrean\"" msgid "Always fit to window on focus track" msgstr "" @@ -1410,9 +1170,12 @@ "Use this if you don't intend to draw a scaled pointer or hide the original " "pointer. The zoomed area will move as you move your mouse." msgstr "" +"Mantendu beti sinkronizatua zoom area eta saguaren kokapena. Erabili hau, ez " +"baduzu marraztu behar eskalatutako erakuslerik edo gorde erakusle originala. " +"Zoom area saguaz batera mugituko da." msgid "Animation" -msgstr "" +msgstr "Animazioa" msgid "" "Attempt to keep the zoomed mouse visible by warping it when it is moved " @@ -1420,13 +1183,17 @@ msgstr "" msgid "Center the mouse" -msgstr "" +msgstr "Lerrokatu zentroan sagua" + +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Eskalatu sagu erakuslea" msgid "Enable focus tracking" -msgstr "" +msgstr "Gaitu foku jarraipena" msgid "Enable this to get a gradually larger mouse pointer as you zoom in" -msgstr "" +msgstr "Gaitu zomma gerturatzean saguaren erakuslea gradualki handitzeko" msgid "" "Enable this to target the focused window when jumping to a specific zoom " @@ -1434,68 +1201,65 @@ msgstr "" msgid "Enhanced Zoom Desktop" -msgstr "" +msgstr "Mahaigain zoom hobetua" msgid "Enhanced zoom functions for the visually impaired and other users" msgstr "" msgid "Filter Linear" -msgstr "" +msgstr "Iragazki lineala" msgid "Fit the window to the zoom level" -msgstr "" +msgstr "Doitu leihoa zoom mailara" msgid "" "Fit the zoomed area to the window when the zoomed area moves as a result of " "focus tracking." -msgstr "" +msgstr "Doitu zoom area leihora zoom area mugitzean foku jarraipen bategatik." msgid "" "Fit the zoomed area to the window when the zoomed area moves as a result of " "focus tracking. Even when not initially zoomed in." msgstr "" +"Doitu zoom area leihora zoom area mugitzean foku jarraipen bategatik nahiz " +"eta hasieran zooma ez izan." msgid "Fit zoom level to window on focus change" -msgstr "" +msgstr "Doitu zoom maila leihora foku maila aldatzean" msgid "Fit zoomed area to window" -msgstr "" +msgstr "Doitu zoom area leihora" msgid "Fitting" -msgstr "" +msgstr "Doitzen" msgid "Focus Tracking" -msgstr "" +msgstr "Foku jarraipena" msgid "Follow Focus Delay" -msgstr "" +msgstr "Jarraitu foku atzerapena" msgid "Hide original mouse pointer" -msgstr "" +msgstr "Gorde sagu erakusle originala" msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" -msgstr "" +msgstr "Gorde sagu erakusle originala gerturatzean eta saguak eskalatzean" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +msgid "Minimum zoom factor" +msgstr "Zoom faktore minimoa" -#, fuzzy msgid "Mouse Behaviour" -msgstr "Jokabidea" - -msgid "Mouse Poll Interval" -msgstr "" +msgstr "Saguaren jokabidea" msgid "Mouse Restrain Margin" -msgstr "" +msgstr "Sagua eutsi marjinen barruan" +#, fuzzy msgid "Mouse panning" -msgstr "" +msgstr "Saguaren jarraipena" msgid "Move the zoom area when focus changes." -msgstr "" +msgstr "Mugitu zoom area fokua aldatzean." msgid "" "Move the zoomed area this much whenever you pan the zoomed area with keys." @@ -1507,119 +1271,149 @@ msgstr "" msgid "Pan (move) the zoom area down" -msgstr "" +msgstr "Mugi zoom area behera" msgid "Pan (move) the zoom area left" -msgstr "" +msgstr "Mugi zoom area ezkerrera" msgid "Pan (move) the zoom area right" -msgstr "" +msgstr "Mugi zoom area eskumara" msgid "Pan (move) the zoom area up" -msgstr "" +msgstr "Mugi zoom area gora" msgid "Pan Factor" -msgstr "" +msgstr "Mugitze faktorea" msgid "Pan Zoom Down" -msgstr "" +msgstr "Mugi zooma behera" msgid "Pan Zoom Left" -msgstr "" +msgstr "Mugi zooma ezkerrera" msgid "Pan Zoom Right" -msgstr "" +msgstr "Mugi zooma eskumara" msgid "Pan Zoom Up" -msgstr "" +msgstr "Mugi zooma gora" msgid "Pan the zoom area when the mouse cursor moves outside the visible area." -msgstr "" +msgstr "Mugi zoom area saguaren erakuslea area ikusgarritik kanpora mugitzean" msgid "Panning" -msgstr "" +msgstr "Panoramika" msgid "Puts the mouse in the middle of the screen (Regardless of zoom level)" -msgstr "" +msgstr "Kokatu sagua pantailaren erdian (zoom maila edozein izanda ere)" +#, fuzzy msgid "Resize the window so it matches the current zoom level." msgstr "" +"Aldatu leihoaren tamaina uneko zoom mailarekin bat badator. (etortzeko?)" msgid "Restrain the mouse to the zoom area" -msgstr "" +msgstr "Eutsi sagua zoom arean." msgid "Scale the mouse pointer" -msgstr "" +msgstr "Eskalatu sagu erakuslea" msgid "Specific Zoom" -msgstr "" +msgstr "Zoom zehatza" msgid "Specific zoom factor 1" -msgstr "" +msgstr "Zoom zehatzaren 1 faktorea" msgid "Specific zoom factor 2" -msgstr "" +msgstr "Zoom zehatzaren 2. faktorea" msgid "Specific zoom factor 3" -msgstr "" +msgstr "Zoom zehatzaren 3. faktorea" msgid "Speed" -msgstr "" +msgstr "Abiadura" + +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Eskalatu sagu erakuslea" msgid "Sync Mouse" -msgstr "" +msgstr "Sinkronizatu sagua" msgid "Target Focused Window on Specific level" +msgstr "Jarraitu fokuan duen leihoa maila zehatzean" + +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." msgstr "" +"Baimendutako zoom balio minimoa. 0.5 balioa 2x zooma da eta 0.25 balioa 4x " +"zooma da." msgid "The size of the margin to add when attempting to restrain the mouse." -msgstr "" +msgstr "Marjinari gehitutako tamaina saguari eutsi behar zaionean" msgid "Timestep" -msgstr "" +msgstr "denbora-pausoa" msgid "Toggle zoom area lock" -msgstr "" +msgstr "Gaitu/ezgaitu zoom area blokeatzea" msgid "Toggles a lock on the zoom area so it doesn't change on various events" msgstr "" msgid "Use linear filter when zoomed in" +msgstr "Erabili iragazki lineala zooma gerturatzean" + +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." msgstr "" -#, fuzzy msgid "Zoom Area Movement" -msgstr "Zoom erditik" +msgstr "Zoom area mugimendua" + +msgid "Zoom Box" +msgstr "Zoom kutxa" msgid "Zoom In" -msgstr "" +msgstr "Zooma gerturatu" msgid "Zoom In/Out" -msgstr "" +msgstr "Zooma gerturatu/urrundu" msgid "Zoom Out" -msgstr "" +msgstr "Zooma urrundu" msgid "Zoom Specific Level 1" -msgstr "" +msgstr "Zoom zehatza 1. maila" msgid "Zoom Specific Level 2" -msgstr "" +msgstr "Zoom zehatza 2. maila" msgid "Zoom Specific Level 3" -msgstr "" +msgstr "Zoom zehatza 3. maila" msgid "Zoom Speed" -msgstr "" +msgstr "Zoom abiadura" msgid "Zoom Timestep" -msgstr "" +msgstr "Zoom denbora-pausoa" msgid "Zoom factor" -msgstr "" +msgstr "Zoom faktorea" + +msgid "Zoom in on a boxed area" +msgstr "Zoom kutxa egindako arean" msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" +"Zoom gerturatu/urrundu faktore honekin. Faktore handigoak zoom azkarragoa " +"dakar." msgid "Zoom level to go to when triggering hotkey 1" msgstr "" @@ -1631,13 +1425,13 @@ msgstr "" msgid "Zoom to the specific zoom level 1" -msgstr "" +msgstr "Zoom 1. zoom maila zehatzera" msgid "Zoom to the specific zoom level 2" -msgstr "" +msgstr "Zoom 2. zoom maila zehatzera" msgid "Zoom to the specific zoom level 3" -msgstr "" +msgstr "Zoom 3. zoom maila zehatzera" msgid "" "Zooms in/out so the focused window is zoomed to the maximum while still " @@ -1645,76 +1439,113 @@ msgstr "" msgid "Easily access your desktop" -msgstr "" +msgstr "Sarbide erraza zure mahaigainera" msgid "Fade Time" -msgstr "" +msgstr "Iraungitze denbora" msgid "Fade time (in ms)" -msgstr "" +msgstr "Iraungitze denbora (ms)" msgid "Fade to Desktop" -msgstr "" +msgstr "Iraungi mahaigainera" msgid "Windows that should be faded to desktop" -msgstr "" +msgstr "Mahaigainera iraungiko diren leihoak" msgid "Alter window opacity based on color." -msgstr "" +msgstr "Aldatu leihoaren opakutasuna kolorean oinarriturik." msgid "Color Opacity" -msgstr "" +msgstr "Opakutasun kolorea" msgid "Toggle Window Fake ARGB" -msgstr "" +msgstr "Gaitu/ezgaitu leiho ARGB faltsua" msgid "Toggle window fake ARGB." +msgstr "Gaitu/ezgaitu leiho ARGB faltsua" + +#, fuzzy +msgid "Add Particle" +msgstr "Partikularen bizia" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." msgstr "" msgid "Background brightness" -msgstr "" +msgstr "Atzeko planoaren distira" msgid "Background brightness during paint" -msgstr "" +msgstr "Atzeko planoaren distira margotzean" msgid "Clear" -msgstr "" +msgstr "Garbitu" msgid "Clear (button)" -msgstr "" +msgstr "Garbitu (botoia)" msgid "Clear (key)" -msgstr "" +msgstr "Garbitu (tekla)" -msgid "Initiate (button)" -msgstr "" +msgid "Fire Particle Color" +msgstr "Su partikularen kolorea" -msgid "Initiate (key)" -msgstr "" +msgid "Fire Particle Life" +msgstr "Su partikularen bizia" -msgid "Initiate fire drawing" -msgstr "" +msgid "Fire Particle Size" +msgstr "Su partikularen tamaina" -msgid "Maximum number of active particles" -msgstr "" +msgid "Fire Particle Slowdown" +msgstr "Su partikulen gainbehera" -msgid "Number of particles" -msgstr "" +msgid "Fire particle color." +msgstr "Su partikularen kolorea." + +msgid "Fire particle life." +msgstr "Su partikularen bizia." + +msgid "Fire particle size." +msgstr "Su partikularen tamaina." + +msgid "Fire particle slowdown." +msgstr "Su partikulen gainbehera." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Ausazko koloreak izan su efektuan, su mistikoa bezala ere ezaguna." + +msgid "Initiate (button)" +msgstr "Hasi (botoia)" + +msgid "Initiate (key)" +msgstr "Hasi (tekla)" + +msgid "Initiate fire drawing" +msgstr "Hasi sua marrazten" + +msgid "Maximum number of active particles" +msgstr "Partikula aktiboen kopuru maximoa" + +msgid "Number of particles" +msgstr "Partikula kopurua" msgid "Paint fire on the screen" -msgstr "" +msgstr "Margotu sua pantailan" msgid "Paint fire or other particles on the screen" -msgstr "" +msgstr "Margotu sua edo beste partikulak pantailan" + +msgid "Randomly Colored Fire" +msgstr "Suaren kolorea ausazkoa" msgid "Cube Gears" -msgstr "" +msgstr "Kubo engranajeak" msgid "Render gears inside of the transparent cube" -msgstr "" +msgstr "Errendatu engranajeak kubo gardenaren barruan" msgid "Animation Options" -msgstr "" +msgstr "Animazio aukerak" msgid "Autotab windows on creation" msgstr "" @@ -1723,16 +1554,16 @@ msgstr "" msgid "Border Radius" -msgstr "" +msgstr "Ertz erradioa" msgid "Border Width" -msgstr "" +msgstr "Ertz zabalera" msgid "Border color of the tab bar" -msgstr "" +msgstr "Fitxa barraren ertz kolorea" msgid "Brightness of selected windows" -msgstr "" +msgstr "Hautatutako leihoen distira" msgid "Change Tab Left" msgstr "" @@ -1741,16 +1572,16 @@ msgstr "" msgid "Change tab animation duration" -msgstr "" +msgstr "Aldatu fitxa animazioaren iraupena" msgid "Close Group" -msgstr "" +msgstr "Itxi taldea" msgid "Create mipmaps for thumbnails" -msgstr "Sortu mipmaps kuadro txikientzat" +msgstr "Sortu mipmaps koadro txikientzat" msgid "Create mipmaps for thumbnails in the tab bar" -msgstr "Sortu mipmaps kuadro txikientzat fitxa barran" +msgstr "Sortu mipmaps koadro txikientzat fitxa barran" msgid "" "Distance (in pixels) between the tab bar and the dragged slot for applying " @@ -1759,10 +1590,10 @@ msgstr "" msgid "Duration (in s) of the animation that happens when changing tabs" -msgstr "" +msgstr "Fitxa aldatzean ematen den animazioaren iraupena, segundotan." msgid "Duration (in s) of the tab bar fading animation when showing/hiding it" -msgstr "" +msgstr "Fitxa barraren iraungitze iraupena (segundotan) erakutsi/gordetzean." msgid "Duration (in s) of the tab bar pulse animation" msgstr "" @@ -1774,64 +1605,67 @@ msgstr "" msgid "Enable Glow" -msgstr "" +msgstr "Gaitu distira" msgid "Enable grouped window glowing" -msgstr "" +msgstr "Gaitu taldekatutako leihoen distira" msgid "Fade time for tab bar animations" -msgstr "" +msgstr "Fitxa barraren animazioen iraungitze denbora" msgid "Fade time for text animations" -msgstr "" +msgstr "Testu animazioen iraungitze denbora" msgid "Fill color of the selection rectangle" -msgstr "" +msgstr "Hautapen-errektangelu betetze-kolorea" msgid "Fill color of the tab bar" -msgstr "" +msgstr "Fitxa barraren betetze-kolorea" msgid "Font Color" -msgstr "" +msgstr "Letren kolorea" msgid "Font Size" -msgstr "" +msgstr "Letren tamaina" + +msgid "General" +msgstr "Orokorra" msgid "Glass" -msgstr "" +msgstr "Kristala" msgid "Glow" -msgstr "" +msgstr "Distira" msgid "Glow Color Change" -msgstr "" +msgstr "Distira kolore aldaketa" msgid "Glow Size" -msgstr "" +msgstr "Distira tamaina" msgid "Glow Type" -msgstr "" +msgstr "Distira mota" msgid "Glow ring" -msgstr "" +msgstr "Distira zirkulua " msgid "Gradient" -msgstr "" +msgstr "Gradientea" msgid "Group Window Match" msgstr "" msgid "Group Windows" -msgstr "" +msgstr "Leihoak taldekatu" msgid "Group and Tab Windows" msgstr "" msgid "Group the windows after selection" -msgstr "" +msgstr "Taldekatu leihoak hautatu ondoren" msgid "Grouping" -msgstr "" +msgstr "Taldekatzen" msgid "Hover time for slot dragging" msgstr "" @@ -1840,124 +1674,139 @@ "If one window in the group is (un)maximized, all other group windows are (un)" "maximized as well." msgstr "" +"Taldeko leiho bat (des)maximizatua badago, bere taldeko leiho denak (des)" +"maximizatuak daude. " msgid "" "If one window in the group is (un)minimized, all other group windows are (un)" "minimized as well." msgstr "" +"Taldeko leiho bat (des)minimizatua badago, bere taldeko leiho denak (des)" +"minimizatuak daude." msgid "" "If one window in the group is (un)shaded, all other group windows are (un)" "shaded as well." msgstr "" +"Taldeko leiho bat itzalpean badago, bere taldeko leiho denak itzalpean daude." msgid "" "If one window in the group is activated, all other group windows are raised " "as well." msgstr "" +"Taldeko leiho bat aktibatua badago, bere taldeko leiho denak goratuak daude." msgid "" "If one window in the group is moved, all other group windows are moved as " "well." msgstr "" +"Taldeko leiho bat mugitzen bada, bere taldeko leiho denak mugituko dira." msgid "" "If one window in the group is resized, all other group windows are resized " "as well." msgstr "" +"Taldeko leiho bati tamaina aldatzean, bere taldeko leiho denei tamaina " +"aldatu." msgid "If there is only 1 window left in the group, it will be ungrouped." -msgstr "" +msgstr "Taldean leiho bat bakarrik geratzen bada, taldea desegin." msgid "" "If you don't like the current glow color, you can change it with this key." msgstr "" +"Indarrean dagoen distira kolorea ez baduzu gogoko, tekla honekin aldatu " +"dezakezu." msgid "" "If you have selected some windows, this automatically groups them (Doesn't " "work with selection mode 'Normal')." msgstr "" +"Hainbat leiho hautatuak badituzu, honek automatikoki talde bilakatzen ditu " +"(Ez dabil hautapen mota 'normala' denean)." msgid "Ignore Group" -msgstr "" +msgstr "Ezikusi taldea" msgid "Key bindings" -msgstr "" +msgstr "Laster-teklak" msgid "Line Color" -msgstr "" +msgstr "Marra kolorea" msgid "Line color of the selection rectangle" -msgstr "" +msgstr "Hautapen-errektangeluaren marra kolorea" msgid "Maximize/unmaximize with group" -msgstr "" +msgstr "Maximizatu/desmaximizatu taldeaz" msgid "Metal" -msgstr "" +msgstr "Metal" msgid "Minimize with group" -msgstr "" +msgstr "Minimizatu taldeaz" msgid "" "Mouse pointer movement speed limit (in pixels/second) for the spring model" msgstr "" msgid "Move every window in the group" -msgstr "" +msgstr "Mugitu taldeko leiho guztiak" msgid "Murrina" msgstr "" msgid "Opacity of selected windows" -msgstr "" +msgstr "hautatutako leihoen opakutasuna" msgid "Play animations on the tab bar e.g. on fade in." msgstr "" msgid "Precision" -msgstr "" +msgstr "Zehaztasuna" msgid "" "Precision of the selection (percentage of the visible window area which must " "be selected for the selection to be recognized)." msgstr "" +"Hautapenaren zehaztasuna (ikusgarri dagoen leihoan hautatu behar den " +"ehunekoa hautapena ontzat emateko)." msgid "Raise every window in the group" -msgstr "" +msgstr "Goratu taldeko leiho guztiak" msgid "Rectangular glow" -msgstr "" +msgstr "Distira errektangeluarra" msgid "Remove Group Window" -msgstr "" +msgstr "Ezabatu leiho taldea" msgid "Remove window from group after dropping it outside a tab bar" -msgstr "" +msgstr "Ezabatu leihoa taldetik, fitxa barratik kanpora arrastatzean." msgid "Resize every window in the group" -msgstr "" +msgstr "Taldeko leiho guztiei tamaina aldatu" msgid "Saturation of selected windows" -msgstr "" +msgstr "Hautatutako leihoen saturazioa" msgid "Select" -msgstr "" +msgstr "Hautatu" msgid "Select Single Window" -msgstr "" +msgstr "Hautatu leiho bakarra" msgid "Selection" -msgstr "" +msgstr "Hautapena" msgid "Selection Color" -msgstr "" +msgstr "Kolore hautapena" msgid "Shade with group" -msgstr "" +msgstr "Itzalpean jarri taldeaz" msgid "Simple" -msgstr "" +msgstr "Sinple" msgid "Slot Drag Spring K" msgstr "" @@ -1984,22 +1833,22 @@ msgstr "" msgid "Tab Base Color" -msgstr "" +msgstr "Fitxaren oinarri kolorea" msgid "Tab Border Color" -msgstr "" +msgstr "Fitxaren ertz kolorea" msgid "Tab Group" -msgstr "" +msgstr "Fitxa taldea" msgid "Tab Highlight Color" -msgstr "" +msgstr "Fitxa nabarmentze kolorea" msgid "Tab Style" -msgstr "" +msgstr "Fitxa estiloa" msgid "Tab bar visibility time after tab change" -msgstr "" +msgstr "Fitxa barra ikusgarritasuna fitxa aldatu ondoren" msgid "Tabbing" msgstr "" @@ -2017,27 +1866,29 @@ msgstr "" msgid "The color of the window title in the tab bar" -msgstr "" +msgstr "Leiho tituluaren kolorea fitxa barran" msgid "The key for closing all windows in the group." -msgstr "" +msgstr "Taldeko leiho guztiak ixteko tekla." msgid "The key for grouping windows." -msgstr "" +msgstr "Leihoak taldekatzeko tekla." msgid "" "The key for ignoring the group. If this key is pressed, you can do actions " "for a single window in the group only." msgstr "" +"Taldea ez-ikusteko tekla. Tekla sakatzean, taldeko leiho bakar batean " +"ekintzak egin ditzakezu." msgid "The key for removing the selected window from its group." -msgstr "" +msgstr "Hautatutako leihoa taldetik ateratzeko tekla." msgid "The key for selecting the current window." -msgstr "" +msgstr "Uneko leihoa hautatzeko tekla." msgid "The key for starting selecting windows." -msgstr "" +msgstr "Leihoak hautatzen hasteko tekla." msgid "The key for switching to the tab left of the current one." msgstr "" @@ -2049,40 +1900,40 @@ msgstr "" msgid "The key for ungrouping the current group." -msgstr "" +msgstr "Uneko taldea desegiteko tekla." msgid "The radius for the tab bar edges" -msgstr "" +msgstr "Fitxa barra ertzen erradioa." msgid "The size of the grouped window glow" -msgstr "" +msgstr "Taldekatutako leihoen distiraren tamaina" msgid "The size of the window thumbs in the task bar" -msgstr "" +msgstr "Leihoen koadro txikien tamaina fitxa barran" msgid "The size of the window title font in the tab bar" -msgstr "" +msgstr "Leihoen tituluko letra tamaina fitxa barran" msgid "The space between the thumbs" -msgstr "" +msgstr "Koadro txikien arteko tartearen tamaina" msgid "The style of the tab bar" -msgstr "" +msgstr "Fitxa barraren estiloa" msgid "The type of the glow" -msgstr "" +msgstr "Distira mota" msgid "The width of the tab bar outline" msgstr "" msgid "Thumb Size" -msgstr "" +msgstr "Koadro txiki tamaina" msgid "Time (in s) before the tab bar is shown after hovering the title bar" msgstr "" msgid "Time (in s) the tab bar is visibly after a tab change" -msgstr "" +msgstr "Zenbat segundo dago ikusgarri fitxa barra fitxa aldatu ondoren" msgid "Time for tab bar pulse animation" msgstr "" @@ -2096,10 +1947,10 @@ msgstr "" msgid "Ungroup Windows" -msgstr "" +msgstr "Leihoak taldetik atera" msgid "Ungroup the windows if only one window is left" -msgstr "" +msgstr "Taldea desegin leiho bakarra geratzen bada" msgid "Untab the group when closing the top tab window instead of changing tab" msgstr "" @@ -2108,371 +1959,376 @@ msgstr "" msgid "Use tab bar animations" -msgstr "" +msgstr "Erabili fitxa barra animazioak" msgid "Window Title Font" -msgstr "" +msgstr "Leiho tituluko letra-mota" msgid "Windows that should be allowed to be grouped" -msgstr "" +msgstr "Taldekatu daitezkeen leihoak" msgid "With this plugin you can group and tab windows" -msgstr "" +msgstr "Plugin honekin leihoak taldekatu eta fitxatan erabil ditzakezu" msgid "Y distance for spring model" msgstr "" msgid "Compression Quality" -msgstr "" +msgstr "Konpresio kalitatea" msgid "JPEG" -msgstr "" +msgstr "JPEG" msgid "JPEG image format plugin" -msgstr "" +msgstr "JPEG irudi formatuko plugina" msgid "Quality of compression when saving JPEG images" -msgstr "" +msgstr "Konpresio kalitatea JPEG irudiak gordetzean" -#, fuzzy msgid "Background/Window brightness." -msgstr "Disdira" +msgstr "Atzeko plano/leiho distira." -#, fuzzy msgid "Background/Window saturation." -msgstr "Saturazioa" +msgstr "Atzeko plano/leiho saturazioa." msgid "Fade In/Out Time" -msgstr "" +msgstr "Iraungitze/argitze denbora" msgid "Fade In/Out Time." -msgstr "" +msgstr "Iraungitze/argitze denbora." msgid "Login" -msgstr "" +msgstr "Saio hasiera" -#, fuzzy msgid "Login Window Match" -msgstr "Leiho parekatzea" +msgstr "" -#, fuzzy msgid "Login Window match" -msgstr "Leiho parekatzea" +msgstr "" msgid "Login/Logout" -msgstr "" +msgstr "Saio hasiera/amaiera" msgid "Login/Logout effect" -msgstr "" +msgstr "Saio hasiera/amaiera efektua" msgid "Logout" -msgstr "" +msgstr "Saio amaiera" -#, fuzzy msgid "Logout Window Match" -msgstr "Leiho parekatzea" +msgstr "" -#, fuzzy msgid "Logout Window match" -msgstr "Leiho parekatzea" +msgstr "" -#, fuzzy msgid "Window opacity." -msgstr "Leiho kokapena" +msgstr "Leiho opakutasuna. " msgid "Border color" -msgstr "" +msgstr "Ertz kolorea" msgid "Border width" -msgstr "" +msgstr "Ertz zabalera" msgid "Border widtht." -msgstr "" +msgstr "Ertz zabalera." msgid "Box height." -msgstr "" +msgstr "Kutxa altura." -#, fuzzy msgid "Box width." -msgstr "leiho zabalera" +msgstr "Kutxa zabalera." -#, fuzzy msgid "Clip mask" -msgstr "Mipmaps" +msgstr "" msgid "Clip mask." msgstr "" -#, fuzzy msgid "Fisheye" -msgstr "Arrain tamaina" +msgstr "Arrain begia" msgid "Height" -msgstr "" +msgstr "Altura" msgid "Image overlay" -msgstr "" +msgstr "Irudia gainjarrita" -#, fuzzy msgid "Keep fully on screen" -msgstr "Erakutsi FPS pantailan" +msgstr "Mantendu upa osoa pantaila barruan" -#, fuzzy msgid "Keep fully on screen." -msgstr "Erakutsi FPS pantailan" +msgstr "Mantendu lupa osoa pantaila barruan." msgid "Magnifier" -msgstr "" +msgstr "Lupa" msgid "Magnifier box" -msgstr "" +msgstr "Lupa kutxa" msgid "Magnifier image" -msgstr "" +msgstr "Lupa irudia" msgid "Magnifier image." -msgstr "" +msgstr "Lupa irudia." msgid "Mode" -msgstr "" +msgstr "Mota" msgid "Mode." -msgstr "" +msgstr "Mota." msgid "Radius" -msgstr "" +msgstr "Erradioa" msgid "Radius of the magnification area." -msgstr "" +msgstr "Handitutako arearen erradioa." msgid "Width" -msgstr "" +msgstr "Zabalera" msgid "X offset of the cursor" -msgstr "" +msgstr "Kurtsorearen X desplazamendua " msgid "X offset of the cursor." -msgstr "" +msgstr "Kurtsorearen X desplazamendua." msgid "Y offset of the cursor" -msgstr "" +msgstr "Kurtsorearen Y desplazamendua " msgid "Y offset of the cursor." -msgstr "" +msgstr "Kurtsorearen Y desplazamendua." msgid "Zoom factor for keyboard initiated magnifier." -msgstr "" +msgstr "Teklatuaz hasitako luparen zoom faktorea." msgid "Ignore already overlapping windows in the calculations" -msgstr "" +msgstr "Jadanik gainjarritako leihoak ezikusi kalkuluetan" msgid "Ignore sticky windows in the calculations" -msgstr "" +msgstr "Ez ikusi itsatsitako leihoak kalkuluetan" msgid "Maximumize" -msgstr "" +msgstr "Tamaina maximora" msgid "Maximumizes windows (resize them to fit the available screenspace)." msgstr "" +"Leihoak tamaina maximora (mahaigainean erabilgarri dagoen tamaina maximora " +"egokitzen ditu)" msgid "" "Treat sticky windows as non-existant when calculating space to use for the " "maximumize window." msgstr "" +"Itsatsitako leihoak existituko ez balira bezala jokatu erabilgarri dagoen " +"tamaina maximoa kalkulatzean." msgid "" "Treat windows that are already overlapping with the current window as non-" "existant when calculating space to use for the maximumize window." msgstr "" +"Jadanik uneko leihoak gainjarritakoak existituko ez balira bezala jokatu " +"erabilgarri dagoen tamaina maximoa kalkulatzean." msgid "" "Trigger a resize of the window currently focused so it fits as much of the " "available screenspae as possible." msgstr "" +"Abiarazi unean fokuan duen leihoaren tamaina aldaketa, mahaigainean " +"erabilgarri dagoen espazioa hartuz" msgid "Trigger maximumize" -msgstr "" +msgstr "Abiarazi tamaina maximora" msgid "Accumulation buffer" -msgstr "" +msgstr "Metaketa buffer" msgid "Activate" -msgstr "" +msgstr "Aktibatu" msgid "Execute Motion Blur if the screen is transformed." -msgstr "" +msgstr "Exekutatu mugimendu lausotzea pantaila transformatua badago." msgid "Motion Blur Strength" -msgstr "" +msgstr "Mugimendu lausotzearen indarra" msgid "Motion Blur mode" -msgstr "" +msgstr "Mugimendu lausotze mota" msgid "Motion Blur on Transformed Screen" -msgstr "" +msgstr "Mugimendu lausotzea pantaila transformatuan" msgid "Motion Blur render mode." -msgstr "" +msgstr "Mugimendu lausotzearen errenderatze mota." msgid "Motion Blur strength." -msgstr "" +msgstr "Mugimendu lausotzearen indarra." msgid "Motion blur" -msgstr "" +msgstr "Mugimendu lausotzea" msgid "Motion blur effect" -msgstr "" +msgstr "Mugimendu lausotze efektua" msgid "Texture Copy" -msgstr "" +msgstr "Testurak kopiatu" msgid "Toggle Motion Blur" -msgstr "" +msgstr "Gaitu/ezgaitu mugimendu lausotzea" msgid "Toggle motion Blur effect." -msgstr "" +msgstr "Gaitu/ezgaitu mugimendu lausotze efektua." msgid "Visibility/Performance" -msgstr "" +msgstr "Ikusgarritasun/errendimendu" -#, fuzzy msgid "Action" -msgstr "Animazioak" +msgstr "Ekintza" msgid "Action that is to be invoked." -msgstr "" +msgstr "Deitua izango den ekintza." msgid "Assign mousegestures to any existing action" -msgstr "" +msgstr "Esleitu sagu keinuak existitzen den edozein ekintzari" msgid "Detect Diagonal Movements" -msgstr "" +msgstr "Mugimendu diagonalak detektatu" msgid "Gesture" -msgstr "" +msgstr "Keinu" msgid "Gesture assignment" -msgstr "" +msgstr "Keinu esleipena" msgid "Gestures" -msgstr "" +msgstr "Keinuak" msgid "" "If this option is selected, diagonal movements are detected, which may lead " "to a decreased detection accuracy." msgstr "" +"Aukera hau hautatzen bada, mugimendu diagonalak detektatuko dira, honek " +"detekzio zehaztasuna jaistera eraman dezake." msgid "Mouse gesture to assign an action to." -msgstr "" +msgstr "Esleituko den sagu keinua ekintza bati." msgid "Mousegestures" -msgstr "" +msgstr "Sagu-keinuak" msgid "Plugin" -msgstr "" +msgstr "Plugina" msgid "Plugin the action belongs to." msgstr "" msgid "Start gesture" +msgstr "Hasi keinua" + +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." msgstr "" msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "" + msgid "Mouse position polling" msgstr "" msgid "Updates the mouse pointer position from the xserver" -msgstr "" +msgstr "Xservertik eguneratu sagu erakuslearen kokapena" msgid "Begin Gesture" -msgstr "" +msgstr "Keinu hasiera" msgid "Begin Mouse Gesture" -msgstr "" +msgstr "Sagu Keinu hasiera" msgid "Mouse switch" -msgstr "" +msgstr "Sagu aldaketa" msgid "Switch viewport in response to mouse gesture" -msgstr "" +msgstr "Aldatu mahaigain aurkezpenaz sagu keinuaz" msgid "Also negate window decorations, not only the window contents." -msgstr "" +msgstr "Leiho dekorazioa ere negatiboan, ez bakarrik edukia." msgid "Exclude Windows" -msgstr "" +msgstr "Kontuan ez hartzeko leihoak" msgid "Neg Windows" -msgstr "" +msgstr "Leihoak negatiboan" -#, fuzzy msgid "Negate Decorations" -msgstr "Iraupena" +msgstr "Dekorazioak negatiboan" msgid "Negative" -msgstr "" +msgstr "Negatiboa" msgid "Toggle Screen Negative" -msgstr "" +msgstr "Gaitu/ezgaitu pantaila negatiboa" msgid "Toggle Window Negative" -msgstr "" +msgstr "Gaitu/ezgaitu leiho negatiboa" msgid "Toggle active window negative" -msgstr "" +msgstr "Gaitu/ezgaitu leiho aktibo negatiboa" msgid "Toggle screen negative" -msgstr "" +msgstr "Gaitu/ezgaitu pantaila negatiboa" msgid "Used to set a window or screen negative" -msgstr "" +msgstr "Leihoa edo pantaila negatiboan jartzeko erabili" msgid "Windows to be negative by default" -msgstr "" +msgstr "Lehenetsirik negatiboan izango diren leihoan" msgid "Windows to exclude from negating" -msgstr "" +msgstr "Negatibo jartzetik baztertuko diren leihoak" msgid "Debug" -msgstr "" +msgstr "Araztu" msgid "Display errors and other messages using libnotify." -msgstr "" +msgstr "libnotify erabiliz erakutsi erroreak eta beste mezuak." msgid "Error" -msgstr "" +msgstr "Errorea" msgid "Error Notifications" -msgstr "" +msgstr "Errore jakinarazpenak" msgid "Fatal" -msgstr "" +msgstr "Larria" msgid "Hide Timeout" -msgstr "" +msgstr "Gorde denbora muga" -#, fuzzy msgid "Info" -msgstr "Barnea" +msgstr "Informazioa" msgid "Maximum Log Level" -msgstr "" +msgstr "Egunkari maila maximoa" msgid "The maximum log level to display" -msgstr "" +msgstr "Bistaratzeko egunkari maila maximoa" msgid "" "Timeout (in seconds) before hiding the notification, set to -1 for system " "default and 0 for indefinite" msgstr "" +"Denbora muga (segundotan) jakinarazpena gordetzeko, jarri -1 sistemak " +"lehenetsitakoa eta 0 infinitua ezartzeko." msgid "Warning" -msgstr "" +msgstr "Abisua" msgid "Active Opacity" -msgstr "" +msgstr "Aktibatu opakutasuna" msgid "" "Bypass delay when Opacify is reducing the opacity on one or more windows " @@ -2483,19 +2339,22 @@ msgstr "" msgid "Delay until Opacification" -msgstr "" +msgstr "Atzeratu opakutasuna burutu arte" msgid "" "Do not wait if the window we are hovering is the focused window. This allows " "us to instantly see the focused window. You probably want to disable this if " "you are not using 'Click to Focus'." msgstr "" +"Ez itxaron gainetik pasatzen ari garen leihoa enfokatutakoa bada. Honek " +"enfokatutako leihoa berehala ikustean ahalbidetzen digu. Seguru aski hau " +"ezgaitu nahi izango duzu ez baduzu erabiltzen 'klik enfokatzeko'." msgid "Make windows easily visible by hovering the mouse over them" -msgstr "" +msgstr "Egin leihoa erraz ikusgai sagu erakuslea gainetik pasatzerakoan." msgid "Only increase opacity if a window is blocking" -msgstr "" +msgstr "Opakutasuna gehitu leihoa blokeatua dagoenean bakarrik" msgid "" "Only increase the opacity on the targeted window if it has one or more " @@ -2503,26 +2362,30 @@ msgstr "" msgid "Opacify" -msgstr "" +msgstr "Opakutzea" msgid "Opacity Levels" -msgstr "" +msgstr "Opakutasun mailak" msgid "Passive Opacity" -msgstr "" +msgstr "Opakutasun pasiboa" msgid "Reset opacity to original values when toggling" -msgstr "" +msgstr "Gaitu/ezgaitzean berrezarri opakutasun originala" msgid "" "Reset the opacity of all windows modified by opacify when toggling Opacify " "with the defined key-combination." msgstr "" +"Definitutako tekla konbinazioaz opakutzea gaitu/ezgaitzean berrezarri leiho " +"guztien opakutasuna" msgid "" "The delay (in ms) before Opacify changes opacity after the active window has " "changed." msgstr "" +"Leiho aktiboa aldatu eta gero, opakutzeak opakutasuna aldatzeko denbora " +"tartea (milisegundotan)" msgid "" "The maximum opacity percentage a window blocking the current targeted window " @@ -2543,10 +2406,10 @@ msgstr "" msgid "Toggle Opacify" -msgstr "" +msgstr "Gaitu/ezgaitu opakutzea" msgid "Toggle Opacify on by default" -msgstr "" +msgstr "Gaitu/ezgaitu opakutzea lehenetsita" msgid "" "Use this to enable/disable Opacify on the fly. Previously opacified windows " @@ -2554,111 +2417,111 @@ msgstr "" msgid "Windows that should be opacified." -msgstr "" +msgstr "Opakutzea aplikatuko zaien leihoak." msgid "" "With this enabled, opacify will be on when you load Opacify, which is " "usually when you start Compiz." -msgstr "" +msgstr "Opakutzea kargatzean gaituko da honekin, normalean Compiz abiaraztean." msgid "Animation speed" -msgstr "" +msgstr "Animazio abiadura" msgid "Animation timestep" -msgstr "" +msgstr "Animazio denbora-pausoa" msgid "Avoid Offscreen" -msgstr "" +msgstr "Saihestu pantailaz-kanpokoa " msgid "Avoids putting window borders offscreen" -msgstr "" +msgstr "Saihestu leiho ertzak pantailaz kanpo ezartzea" msgid "Move window arbitrarily by passing x, y and type." -msgstr "" +msgstr "Mugitu leihoa arbitrarioki x, y eta mota pasatuz. " msgid "Move window to a certain viewport" -msgstr "" +msgstr "Mugitu leihoa mahaigain aurkezpen jakin batera" msgid "Move window to the bottom edge" -msgstr "" +msgstr "Mugitu leihoa azpiko ertzera" msgid "Move window to the bottom left corner" -msgstr "" +msgstr "Mugitu leihoa azpiko ezkerreko izkinara" msgid "Move window to the bottom right corner" -msgstr "" +msgstr "Mugitu leihoa azpiko eskumako izkinara" msgid "Move window to the center" -msgstr "" +msgstr "Mugitu leihoa erdira" msgid "Move window to the last position" -msgstr "" +msgstr "Mugitu leihoa azken posiziora" msgid "Move window to the left edge" -msgstr "" +msgstr "Mugitu leihoa ezkerreko ertzera" msgid "Move window to the pointer position" -msgstr "" +msgstr "Mugitu leihoa erakuslearen posiziora" msgid "Move window to the right edge" -msgstr "" +msgstr "Mugitu leihoa eskumako ertzera" msgid "Move window to the top edge" -msgstr "" +msgstr "Mugitu leihoa goiko ertzera" msgid "Move window to the top left corner" -msgstr "" +msgstr "Mugitu leihoa goiko ezkerreko izkinara" msgid "Move window to the top right corner" -msgstr "" +msgstr "Mugitu leihoa goiko eskumako izkinara" msgid "Move window to the viewport on the bottom" -msgstr "" +msgstr "Mugitu leihoa mahaigain aurkezpenera behean" msgid "Move window to the viewport on the left" -msgstr "" +msgstr "Mugitu leihoa mahaigain aurkezpenera ezkerrean" msgid "Move window to the viewport on the right" -msgstr "" +msgstr "Mugitu leihoa mahaigain aurkezpenera eskuman" msgid "Move window to the viewport on the top" -msgstr "" +msgstr "Mugitu leihoa mahaigain aurkezpenera goian" msgid "Move window to viewport 1" -msgstr "" +msgstr "Mugitu leihoa lehen mahaigain aurkezpenera" msgid "Move window to viewport 10" -msgstr "" +msgstr "Mugitu leihoa 10. mahaigain aurkezpenera" msgid "Move window to viewport 11" -msgstr "" +msgstr "Mugitu leihoa 11. mahaigain aurkezpenera" msgid "Move window to viewport 12" -msgstr "" +msgstr "Mugitu leihoa 12. mahaigain aurkezpenera" msgid "Move window to viewport 2" -msgstr "" +msgstr "Mugitu leihoa 2. mahaigain aurkezpenera" msgid "Move window to viewport 3" -msgstr "" +msgstr "Mugitu leihoa 3. mahaigain aurkezpenera" msgid "Move window to viewport 4" -msgstr "" +msgstr "Mugitu leihoa 4. mahaigain aurkezpenera" msgid "Move window to viewport 5" -msgstr "" +msgstr "Mugitu leihoa 5. mahaigain aurkezpenera" msgid "Move window to viewport 6" -msgstr "" +msgstr "Mugitu leihoa 6. mahaigain aurkezpenera" msgid "Move window to viewport 7" -msgstr "" +msgstr "Mugitu leihoa 7. mahaigain aurkezpenera" msgid "Move window to viewport 8" -msgstr "" +msgstr "Mugitu leihoa 8. mahaigain aurkezpenera" msgid "Move window to viewport 9" -msgstr "" +msgstr "Mugitu leihoa 9. mahaigain aurkezpenera" msgid "" "Number of pixels from the bottom edge where the window will come to rest" @@ -2689,163 +2552,163 @@ msgstr "" msgid "Put" -msgstr "" +msgstr "Kokatu" msgid "Put Bottom" -msgstr "" +msgstr "Kokatu behean" msgid "Put Bottom Left" -msgstr "" +msgstr "Kokatu azpiko ezkerrean" msgid "Put Bottom Right" -msgstr "" +msgstr "Kokatu goiko eskuman" msgid "Put Center" -msgstr "" +msgstr "Kokatu erdian" msgid "Put Left" -msgstr "" +msgstr "Kokatu ezkerrean" msgid "Put On Viewport" -msgstr "" +msgstr "Kokatu mahaigain aurkezpenean" msgid "Put On Viewport 1" -msgstr "" +msgstr "Kokatu lehen mahaigain aurkezpenean" msgid "Put On Viewport 10" -msgstr "" +msgstr "Kokatu 10. mahaigain aurkezpenean" msgid "Put On Viewport 11" -msgstr "" +msgstr "Kokatu 11. mahaigain aurkezpenean" msgid "Put On Viewport 12" -msgstr "" +msgstr "Kokatu 12. mahaigain aurkezpenean" msgid "Put On Viewport 2" -msgstr "" +msgstr "Kokatu 2. mahaigain aurkezpenean" msgid "Put On Viewport 3" -msgstr "" +msgstr "Kokatu 3. mahaigain aurkezpenean" msgid "Put On Viewport 4" -msgstr "" +msgstr "Kokatu 4. mahaigain aurkezpenean" msgid "Put On Viewport 5" -msgstr "" +msgstr "Kokatu 5. mahaigain aurkezpenean" msgid "Put On Viewport 6" -msgstr "" +msgstr "Kokatu 6. mahaigain aurkezpenean" msgid "Put On Viewport 7" -msgstr "" +msgstr "Kokatu 7. mahaigain aurkezpenean" msgid "Put On Viewport 8" -msgstr "" +msgstr "Kokatu 8. mahaigain aurkezpenean" msgid "Put On Viewport 9" -msgstr "" +msgstr "Kokatu 9. mahaigain aurkezpenean" msgid "Put Pointer" -msgstr "" +msgstr "Kokatu erakuslean" msgid "Put Right" -msgstr "" +msgstr "Kokatu eskuman" msgid "Put Top" -msgstr "" +msgstr "Kokatu goian" msgid "Put Top Left" -msgstr "" +msgstr "Kokatu goiko ezkerrean" msgid "Put Top Right" -msgstr "" +msgstr "Kokatu goiko eskuman" msgid "Put pointer uses the center of the window" msgstr "" msgid "Put to adjacent viewport" -msgstr "" +msgstr "Kokatu alboko mahaigain aurkezpenean" msgid "Put to arbitrary viewport" -msgstr "" +msgstr "Kokatu hausazko mahaigain aurkezpenean" msgid "Put window" -msgstr "" +msgstr "Kokatu leihoa" msgid "Put within viewport" -msgstr "" +msgstr "Kokatu mahaigain aurkezpenen barruan" msgid "Restore Position" -msgstr "" +msgstr "Berrezarri posizioa" msgid "Unfocus Window" -msgstr "" +msgstr "Desenfokatu leihoa" msgid "Unfocus windows that are moved off the viewport" -msgstr "" +msgstr "Mahaigain aurkezpenetik kanpora mugitutako leihoak desenfokatu" msgid "Viewport Bottom" -msgstr "" +msgstr "Mahaigain aurkezpen azpian" msgid "Viewport Left" -msgstr "" +msgstr "Mahaigain aurkezpen ezkerrean" msgid "Viewport Right" -msgstr "" +msgstr "Mahaigain aurkezpen eskuman" msgid "Viewport Top" -msgstr "" +msgstr "Mahaigain aurkezpen gainean" msgid "Window Center" -msgstr "" +msgstr "Mahaigain aurkezpen erdian" msgid "Alpha Dependence Threshold" -msgstr "" +msgstr "Alfa dependentzia atalasea" msgid "Alpha dependence threshold." -msgstr "" +msgstr "Alfa dependentzia atalasea." msgid "Draw Reflection for decorations." -msgstr "" +msgstr "Dekorazioen islapena marraztu." msgid "Draw Reflection for windows." -msgstr "" +msgstr "Leihoen islapena marraztu." msgid "Draws reflections" -msgstr "" +msgstr "Islapenak marraztu." msgid "Move the reflection on window move." -msgstr "" +msgstr "Mugitu islapena leihoa mugitzean." msgid "Moving reflection" -msgstr "" +msgstr "Islapen mugimendua" msgid "Reflection Image" -msgstr "" +msgstr "Islapen irudia" msgid "Reflection Image file" -msgstr "" +msgstr "Islapen irudi fitxategia" msgid "Reflection Window Match" -msgstr "" +msgstr "Islapen leiho parekatzea" msgid "Reflection for Decorations" -msgstr "" +msgstr "Dekorazioen islapena" msgid "Reflection for Windows" -msgstr "" +msgstr "Leihoen islapena" msgid "Window match" -msgstr "" +msgstr "Leiho parekatzea" msgid "Color 1 of the gradient background." -msgstr "" +msgstr "Atzeko planoko gradientearen lehen kolorea" msgid "Color 2 of the gradient background." -msgstr "" +msgstr "Atzeko planoko gradientearen 2. kolorea" msgid "Color 3 of the gradient background." -msgstr "" +msgstr "Atzeko planoko gradientearen 3. kolorea" msgid "Color of text on resize popup." msgstr "" @@ -2854,19 +2717,19 @@ msgstr "" msgid "Fade time (in ms) for popup window" -msgstr "" +msgstr "Laster-leihoko iraungitze denbora (milisegundotan)" msgid "Gradient Color 1" -msgstr "" +msgstr "Gradientearen lehen kolorea" msgid "Gradient Color 2" -msgstr "" +msgstr "Gradientearen 2. kolorea" msgid "Gradient Color 3" -msgstr "" +msgstr "Gradientearen 3. kolorea" msgid "Resize Info" -msgstr "" +msgstr "Tamaina aldatze informazioa" msgid "" "Show resize info for all windows as opposed to just windows with a resize " @@ -2874,152 +2737,159 @@ msgstr "" msgid "Show resize info for all windows." -msgstr "" +msgstr "Leiho guztien tamaina aldatzearen informazioa ikusi." msgid "Text color." -msgstr "" +msgstr "Testu kolorea." msgid "Above ring" -msgstr "" +msgstr "Biribil gainean" msgid "Allow Mouse Selection" -msgstr "" +msgstr "Baimendu sagu aukeraketa" msgid "" "Allow the selection of windows by just clicking on them while the switcher " "is active." msgstr "" +"Baimendu leiho aukeraketa bere gainean klik eginez aldatzailea aktibo " +"dagoenean." msgid "" "Amount of opacity (in percent) for windows in the ring which are not selected" msgstr "" +"Opakutasuna (ehunekoan) biribileko leihoentzat aukeratuak ez daudenean. " msgid "Background Color" -msgstr "" +msgstr "Atzeko planoko kolorea" msgid "Background color for the window title" -msgstr "" +msgstr "Atzeko planoko kolorea leiho tituluan" msgid "Below ring" -msgstr "" +msgstr "Biribil azpian" msgid "Big" -msgstr "" +msgstr "Handia" msgid "Bold Font" -msgstr "" +msgstr "Letra lodia" msgid "Centered on screen" -msgstr "" +msgstr "Pantailan zentratua" msgid "" "Changes the minimum brightness factor for windows in the ring. The farer " "away windows are, the less bright are they." msgstr "" +"Aldatu distira faktore minimoak biribileko leihoei. Urruneko leihoek dute " +"distira gutxien." msgid "" "Changes the minimum scale factor for windows in the ring. The farer away " "windows are, the smaller are they." msgstr "" +"Aldatu eskala faktore minimoak biribileko leihoei. Urruneko leihoak dira " +"txikienak." msgid "Darken Background" -msgstr "" +msgstr "Atzeko planoa ilundu" msgid "Darken background when showing the ring" -msgstr "" +msgstr "Atzeko planoa ilundu biribila bistan dagoenean" msgid "Emblem" -msgstr "" +msgstr "Ikurra" msgid "Font color for the window title" -msgstr "" +msgstr "Letra kolorea leiho tituluan" msgid "Font size for the window title" -msgstr "" +msgstr "Letra tamaina leiho tituluan" msgid "Inactive Window Opacity" -msgstr "" +msgstr "Aktibo ez dagoen leihoaren opakutasuna" msgid "Maximum horizontal size of a thumbnail in the ring" -msgstr "" +msgstr "Biribilean koadro txikiaren tamaina horizontal maximoa" msgid "Maximum vertical size of a thumbnail in the ring" -msgstr "" +msgstr "Biribilean koadro txikiaren tamaina bertikal maximoa" msgid "Minimum Brightness Factor" -msgstr "" +msgstr "Distira minimoaren faktorea" msgid "Minimum Scale Factor" -msgstr "" +msgstr "Eskala minimoaren faktorea" msgid "Next Window" -msgstr "" +msgstr "Hurrengo leihoa" msgid "Next Window (All Workspaces)" -msgstr "" +msgstr "Hurrengo leihoa (lan-mahai denak)" msgid "Next Window (Group)" -msgstr "" +msgstr "Hurrengo leihoa (Taldea)" msgid "Overlay Icon" -msgstr "" +msgstr "Ikonoa gainjarri" msgid "Overlay an icon on windows in the ring" -msgstr "" +msgstr "Biribileko leihoetan ikono bat gainjarri" msgid "Previous Window" -msgstr "" +msgstr "Aurreko leihoa" msgid "Previous Window (All Workspaces)" -msgstr "" +msgstr "Aurreko leihoa (lan-mahai denak)" msgid "Previous Window (Group)" -msgstr "" +msgstr "Aurreko leihoa (Taldea)" msgid "Ring Height" -msgstr "" +msgstr "Biribilaren altura" msgid "Ring Switcher" -msgstr "" +msgstr "Biribil aldatzailea" msgid "Ring Width" -msgstr "" +msgstr "Biribil zabalera" msgid "Ring Windows" -msgstr "" +msgstr "Leihoak biribilean" msgid "Ring appearance" -msgstr "" +msgstr "Biribil itxura" msgid "Ring height (in percent of the screen height)" -msgstr "" +msgstr "Biribil altura (Pantailaren alturaren ehunekoan)" msgid "Ring speed" -msgstr "" +msgstr "Biribil abiadura" msgid "Ring timestep" -msgstr "" +msgstr "Biribil denbora-pausoa" msgid "Ring width (in percent of the screen width)" -msgstr "" +msgstr "Biribil zabalera (Pantailaren zabaleraren ehunekoan)" msgid "Rotate Ring Clockwise on Next" -msgstr "" +msgstr "Biratu hurrengoa ordulariaren norabidekoa izanik" msgid "Rotate ring clockwise for next window instead of counterclockwise" -msgstr "" +msgstr "Biratu hurrengoa ordulariaren norabidekoa aurkakoa izanik" msgid "Selects if the window title should be displayed in bold font or not." -msgstr "" +msgstr "Aukeratu leiho tituluan letrak lodiak izango diren ala ez." msgid "Selects where to place the window title." -msgstr "" +msgstr "Aukeratu non jarri leiho titulua." msgid "Show Minimized" -msgstr "" +msgstr "Erakutsi minimizatua" msgid "Show Window Title" -msgstr "" +msgstr "Erakutsi leiho titulua" msgid "" "Show switcher if not visible and select next window of the current " @@ -3045,115 +2915,138 @@ msgstr "" msgid "Show window title of currently selected window." -msgstr "" +msgstr "Erakutsi hautatutako leihoaren leiho titulua" msgid "Show windows that are minimized, shaded or in show desktop mode." msgstr "" +"Erakutsi txikitutako leihoak, itzaldurik edo mahaigain erakuste moduan." msgid "Text Placement" -msgstr "" +msgstr "Testu kokapena" msgid "Thumbnail Height" -msgstr "" +msgstr "Koadro txiki altura" msgid "Thumbnail Width" -msgstr "" +msgstr "Koadro txiki zabalera" msgid "Window title display" -msgstr "" +msgstr "Leiho titulua erakustea" msgid "Windows that should be shown in ring" -msgstr "" +msgstr "Biribilean erakutsiko diren leihoak" -#, fuzzy msgid "All windows" -msgstr "Baztertu leihoa" +msgstr "Leiho guztiak" msgid "Background color of the window title" -msgstr "" +msgstr "Leiho tituluaren atzeko plano kolorea" -msgid "Close Windows In Scale" -msgstr "" +msgid "Close Window" +msgstr "Leihoa itxi" + +msgid "Close window while in scale mode" +msgstr "Itxi leihoa eskalatze moduan dagoenean" msgid "Close windows while in scale mode" -msgstr "" +msgstr "Itxi leihoak eskalatze moduan daudenean" msgid "Color used for highlighting the hovered window" +msgstr "Leihoa nabarmentzeko kolorea gainean jartzean" + +msgid "Constrain Pull To Screen" msgstr "" msgid "Draw Window Highlight" +msgstr "Marraztu leiho nabarmentzea" + +msgid "Exit Scale On Pull" msgstr "" -msgid "Font color of the window title" +msgid "Exit scale mode after a window has been pulled." msgstr "" +msgid "Font color of the window title" +msgstr "Leiho tituluaren testu kolorea" + msgid "Font size for window title display" -msgstr "" +msgstr "Leiho tituluaren testu tamaina" msgid "Highlight Color" -msgstr "" +msgstr "Nabarmentze kolorea" -#, fuzzy msgid "Highlighted window only" -msgstr "Lehio iragaziak" +msgstr "Nabarmendutako leihoa bakarrik" msgid "Highlights the hovered window with the given color" +msgstr "Nabarmendu erakuslea leiho gainetik pasatzean emandako koloreaz" + +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" msgstr "" msgid "No display" -msgstr "" +msgstr "Ez erakutsi" msgid "Normal" -msgstr "" +msgstr "Normal" msgid "Organic - EXPERIMENTAL" +msgstr "Organic - EXPERIMENTAL" + +msgid "Pull Window" msgstr "" -msgid "Scale Addons" +msgid "Pull window to current viewport while in scale mode" msgstr "" +msgid "Scale Addons" +msgstr "Eskala gehigarriak" + msgid "Selects the mode to layout the windows in scale mode" -msgstr "" +msgstr "Hautatu eskalatze moduan leihoak diseinatzeko modua" msgid "Size of the border around the window title" -msgstr "" +msgstr "Ertzaren tamaina leiho titulu inguruan" msgid "Some useful additions to the scale plugin" -msgstr "" +msgstr "Hainbat gehigarri erabilgarri eskalatze pluginerako" msgid "Title Border Size" -msgstr "" +msgstr "Tituluaren ertz tamaina" msgid "Use bold font for window title display" -msgstr "" +msgstr "Erabili letra lodia leiho titulua erakustean" msgid "Window Highlight" -msgstr "" +msgstr "Leiho nabarmentzea" msgid "Window Layout Mode" +msgstr "Leihoak diseinatzeko modua" + +msgid "Window Pull" msgstr "" msgid "Window Title" -msgstr "" +msgstr "Leiho titulua" -#, fuzzy msgid "Window Title Display" -msgstr "leiho motak" +msgstr "Leiho titulua erakustea" msgid "Window title display in scale mode" -msgstr "" +msgstr "Leiho titulua erakustea eskalatze moduan" -msgid "Zoom Windows In Scale" -msgstr "" +msgid "Zoom Window" +msgstr "Zoom leihoa" -msgid "Zoom windows while in scale mode" -msgstr "" +msgid "Zoom window while in scale mode" +msgstr "Zoom leihoa eskalatze moduan" msgid "Filter Case Insensitive" msgstr "" msgid "Filter Type Timeout" -msgstr "" +msgstr "Iragazki mota denbora-muga" msgid "Scale Window Title Filter" msgstr "" @@ -3182,24 +3075,22 @@ msgstr "" msgid "Toggle Prompt Visible" -msgstr "" +msgstr "Gaitu/ezgaitu prompt ikusgarri" msgid "Toggle prompt visible." -msgstr "" +msgstr "Gaitu/ezgaitu prompt ikusgarri." -#, fuzzy msgid "Directory" -msgstr "Toleste norabidea" +msgstr "Direktorio" msgid "Initiate screencasting" msgstr "" msgid "Put screenshot images in this directory" -msgstr "" +msgstr "Pantaila argazki irudiak direktorio honetan jarri" -#, fuzzy msgid "ScreenCast plugin" -msgstr "Pantaila irteera" +msgstr "" msgid "ScreenCasting" msgstr "" @@ -3209,66 +3100,69 @@ "management protocol. This setting only should be used in KDE, as only KDE's " "session manager also saves those applications." msgstr "" +"Saiatu X sesio kudeaketa protokoloa onartzen ez duten aplikazio zaharrak " +"gorde eta berreskuratzen. Ezarpen hau KDEn bakarrik erabili beharko " +"litzateke, KDE sesio kudeatzaileak bezala aplikazio hauek gordez." msgid "Save Legacy Apps" -msgstr "" +msgstr "Aplikazio zaharrak gorde" msgid "Session Management" -msgstr "" +msgstr "Sesio kudeaketa" msgid "Talk to session manager and save/load window state" -msgstr "" +msgstr "Hitz-egin sesio kudeatzaileaz eta gorde/kargatu leiho egoera" -#, fuzzy msgid "Animation duration" -msgstr "Animazioak aukeratu" +msgstr "Animazio iraupena" -#, fuzzy msgid "Duration of the animation in milliseconds." -msgstr "Animazio iraupena milisegundutan irekitze efektuan." +msgstr "Animazio iraupena milisegundotan." msgid "Increase the scale factor making the window bigger." -msgstr "" +msgstr "Handitu eskala faktorea, leihoa handiagoa eginez." -#, fuzzy msgid "Make the window bigger" -msgstr "Beste leiho kudetzaile bat abiarazi" +msgstr "Leihoa handiagoa egin" -#, fuzzy msgid "Make the window smaller" -msgstr "Beste leiho kudetzaile bat abiarazi" +msgstr "Leihoa txikiagoa egin" msgid "Reduces the scale factor making the window smaller." -msgstr "" +msgstr "Txikitu eskala faktorea, leihoa txikiagoa eginez." msgid "Reset the window to original size" -msgstr "" +msgstr "Berrezarri leihoa tamaina originalean" msgid "Resets the currently focused window to original size" -msgstr "" +msgstr "Berrezarri unean enfokatutako leihoa tamaina originalean" msgid "Scale a window down to a portion of it's size." -msgstr "" +msgstr "Leihoaren tamainaren proportzio baten txikitu eskala." msgid "" "Scale a window down to a ration of the screen size. Respectively half, a " "third or a sixth of the screen." msgstr "" +"pantailaren tamainaren proportzio baten txikitu leiho eskala. Hurrenez " +"hurren erdia, herena edo pantailaren seiren baten." msgid "Scale interval" -msgstr "" +msgstr "Eskala tartea" msgid "Shelf" -msgstr "" +msgstr "Apala" msgid "" "The number to divide the scale factor by or multiply it with when " "(respectively) increasing and decreasing the scale level manually. Higher " "number means finer changes." msgstr "" +"Zenbatetan zatitzen edo bidertzen den eskala faktorea, eskuz eskala maila " +"handitzean edo txikitzean. Zenbaki handiek aldaketa finagoak dakarte." msgid "Trigger scale down" -msgstr "" +msgstr "Abiarazi eskala txikitzea" msgid "Trigger scale down to screen" msgstr "" @@ -3277,18 +3171,20 @@ "Visually scales a window down to allow easy monitoring without true/" "traditional resizing." msgstr "" +"Eskala txikitu erakutsiz, tamaina aldaketa benetakoa/tradizionalaren " +"jarraipena ahalbidetzeko." msgid "Background intensity" -msgstr "" +msgstr "Atzeko planoaren intentsitatea" msgid "Background intensity." -msgstr "" +msgstr "Atzeko planoaren intentsitatea." msgid "Below" -msgstr "" +msgstr "Azpian" msgid "Click duration" -msgstr "" +msgstr "Klik iraupena" msgid "Cover" msgstr "" @@ -3300,68 +3196,68 @@ msgstr "" msgid "Disabled" -msgstr "" +msgstr "Ezgaitua" msgid "Fade in/out speed" -msgstr "" +msgstr "Agertze/desagertze abiadura" msgid "Fade speed" -msgstr "" +msgstr "Iraungitze abiadura" msgid "Flip" -msgstr "" +msgstr "Irauli" msgid "Flip angle" -msgstr "" +msgstr "Iraultze angelua" msgid "Generate mipmaps" msgstr "Sortu mipmaps" msgid "Hide all non Desktop windows during switching" -msgstr "" +msgstr "Gorde mahaigainekoak ez diren leihoak Aldatzen dabilenean" msgid "Hide non Desktop windows" -msgstr "" +msgstr "Gorde mahaigainekoak ez diren leihoak" msgid "Initiate (All Workspaces)" -msgstr "" +msgstr "Hasi (idazmahai guztiak)" msgid "Initiate switcher (All Workspaces)." -msgstr "" +msgstr "Hasi Aldatzailea (idazmahai guztiak)" msgid "Initiate switcher." -msgstr "" +msgstr "Hasi Aldatzailea." msgid "Max window size" -msgstr "" +msgstr "Leiho tamaina maximoa" msgid "Maximum click duration in miliseconds." -msgstr "" +msgstr "Klik iraupen maximoa milisegundotan." msgid "Maximum window size (in percent of the screen width)" -msgstr "" +msgstr "Leiho tamaina maximoa (Pantaila zabaleraren portzentaia)" msgid "Mouse movement speed" -msgstr "" +msgstr "Sagu mugimenduaren abiadura" msgid "Mouse speed" -msgstr "" +msgstr "Sagu abiadura" msgid "On activated output" -msgstr "" +msgstr "Aktibatutako irteeran" msgid "One big switcher" -msgstr "" +msgstr "Aldatzaile handi bat" msgid "Overlay an icon on windows in the shift switcher" msgstr "" msgid "Rotation angle of the flip animation" -msgstr "" +msgstr "Biratze angelua Irauli animazioan" msgid "" "Selects how the switcher is displayed if multiple output devices are used." -msgstr "" +msgstr "Aukeratu nola erakutsi aldatzailea hainbat irteera gailu erabiltzean." msgid "Shift Switcher" msgstr "" @@ -3403,18 +3299,30 @@ msgid "Direction of window movement" msgstr "" +msgid "Down" +msgstr "Behera" + +msgid "Left" +msgstr "Ezkerra" + msgid "Left/Right" msgstr "" msgid "Movement Direction" msgstr "" +msgid "Right" +msgstr "Eskuma" + msgid "Show desktop" msgstr "" msgid "To Corners" msgstr "" +msgid "Up" +msgstr "Goi" + msgid "Up/Down" msgstr "" @@ -3455,64 +3363,50 @@ msgid "Emiters" msgstr "" -#, fuzzy msgid "Have random colors for the particles" -msgstr "Ausazko koloreak izan su efektuan, su mistikoa bezala ere ezaguna." +msgstr "Ausazko koloreak partikuletan" msgid "Increases the visibility of the mouse pointer" msgstr "" -#, fuzzy msgid "Number Of Particles" -msgstr "Su partikulen kopurua" +msgstr "Partikulen kopurua" -#, fuzzy msgid "Number of particle emiters." -msgstr "Su partikulen kopurua." +msgstr "Jaurtitako partikulen kopurua." -#, fuzzy msgid "Number of particles." -msgstr "Su partikulen kopurua." +msgstr "Partikulen kopurua." -#, fuzzy msgid "Particle Color" -msgstr "Su partikularen kolorea" +msgstr "Partikularen kolorea" -#, fuzzy msgid "Particle Life" -msgstr "Su partikularen bizia" +msgstr "Partikularen bizia" -#, fuzzy msgid "Particle Options" -msgstr "Hainbat aukera" +msgstr "Partikulen aukerak" -#, fuzzy msgid "Particle Size" -msgstr "Su partikularen tamaina" +msgstr "Partikularen tamaina" -#, fuzzy msgid "Particle Slowdown" -msgstr "Su partikulen deselerazioa" +msgstr "Partikulen gainbehera" -#, fuzzy msgid "Particle color." -msgstr "Su partikularen kolorea." +msgstr "Partikularen kolorea." -#, fuzzy msgid "Particle life." -msgstr "Su partikularen bizia." +msgstr "Partikularen bizia." -#, fuzzy msgid "Particle size." -msgstr "Su partikularen tamaina." +msgstr "Partikularen tamaina." -#, fuzzy msgid "Particle slowdown." -msgstr "Su partikulen deselerazioa." +msgstr "Partikulen gainbehera." -#, fuzzy msgid "Randomly Colored Particles" -msgstr "Suaren kolorea ausazkoa" +msgstr "Partikulen ausazko kolorea" msgid "Ring radius" msgstr "" @@ -3552,199 +3446,414 @@ msgid "Edge attraction" msgstr "" -msgid "Edge resistance" +msgid "Edge resistance" +msgstr "" + +msgid "Edges" +msgstr "" + +msgid "Enables windows edges resistance" +msgstr "" + +msgid "Meta" +msgstr "" + +msgid "Screen edges" +msgstr "" + +msgid "Shift" +msgstr "" + +msgid "Snap Type" +msgstr "" + +msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." +msgstr "" + +msgid "Snapping Windows" +msgstr "" + +msgid "The distance until edge attraction takes place." +msgstr "" + +msgid "The distance until edge resistance takes place." +msgstr "" + +msgid "Use this bindings to avoid snapping." +msgstr "" + +msgid "Window edges" +msgstr "" + +msgid "Bottom to Top" +msgstr "" + +msgid "" +"Delay (in ms) between screen updates. Decreasing this value may make snow " +"fall more smoothly, but will also increase CPU usage." +msgstr "" + +msgid "Enable Blending" +msgstr "" + +msgid "Enable Textures" +msgstr "" + +msgid "Enables alpha blending of snowflakes." +msgstr "" + +msgid "Enables textured snowflakes. If not selected, color gradients are used." +msgstr "" + +msgid "Flakes rotate if checked." +msgstr "" + +msgid "How deep into the screen snowflakes can be drawn before being removed" +msgstr "" + +msgid "" +"How far outside the screen resolution snow flakes can be before being " +"removed. Needed because of FOV." +msgstr "" + +msgid "Key Bindings" +msgstr "" + +msgid "Left to Right" +msgstr "" + +msgid "Number Of Snowflakes" +msgstr "" + +msgid "Number of snowflakes" +msgstr "" + +msgid "Right to Left" +msgstr "" + +msgid "Rotate Flakes" +msgstr "" + +msgid "Screen Boxing" +msgstr "" + +msgid "Screen Depth" +msgstr "" + +msgid "Select snow flake movement direction" +msgstr "" + +msgid "Settings" +msgstr "" + +msgid "Size Of Snowflakes" +msgstr "" + +msgid "Size of snowflakes" +msgstr "" + +msgid "Snow" +msgstr "" + +msgid "Snow Direction" +msgstr "" + +msgid "Snow Over Windows" +msgstr "" + +msgid "Snow Speed" +msgstr "" + +msgid "Snow Textures" +msgstr "" + +msgid "Snow Toggle" +msgstr "Gaitu/ezgaitu elurra" + +msgid "Snow for Compiz" +msgstr "" + +msgid "Snow is drawn above windows" +msgstr "" + +msgid "Snow textures" +msgstr "" + +msgid "Snow toggle key" +msgstr "" + +msgid "Speed of falling snow" +msgstr "" + +msgid "Textures" +msgstr "" + +msgid "Top to Bottom" +msgstr "" + +msgid "Update Delay" +msgstr "" + +msgid "A simple splash plugin" +msgstr "" + +msgid "Background File" msgstr "" -msgid "Edges" +msgid "Background brightness." msgstr "" -msgid "Enables windows edges resistance" +msgid "Background image File." msgstr "" -msgid "Meta" +msgid "Background saturation." msgstr "" -msgid "Screen edges" +msgid "Display In/Out Time." msgstr "" -msgid "Shift" +msgid "Display Time" msgstr "" -msgid "Snap Type" +msgid "Images" msgstr "" -msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." +msgid "Initiate Splash" msgstr "" -msgid "Snapping Windows" +msgid "Logo File" msgstr "" -msgid "The distance until edge attraction takes place." +msgid "Logo image File." msgstr "" -msgid "The distance until edge resistance takes place." +msgid "Show on first start" msgstr "" -msgid "Use this bindings to avoid snapping." +msgid "Show splash on first start." msgstr "" -msgid "Window edges" +msgid "Splash" msgstr "" -msgid "Bottom to Top" +msgid "Start Splash." msgstr "" msgid "" -"Delay (in ms) between screen updates. Decreasing this value may make snow " -"fall more smoothly, but will also increase CPU usage." +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" msgstr "" -msgid "Enable Blending" -msgstr "" +#, fuzzy +msgid "Behavior" +msgstr "Jokabidea" -msgid "Enable Textures" +msgid "Darken background when showing the stack" msgstr "" -msgid "Enables alpha blending of snowflakes." +msgid "On Thumbnail" msgstr "" -msgid "Enables textured snowflakes. If not selected, color gradients are used." -msgstr "" +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Leiho ez aktiboaren sakontasun kolorea" -msgid "Flakes rotate if checked." +msgid "Should not selected windows be rotated" msgstr "" -msgid "How deep into the screen snowflakes can be drawn before being removed" +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Leiho parekatzea" + +msgid "Tilt angle of the background." msgstr "" -msgid "" -"How far outside the screen resolution snow flakes can be before being " -"removed. Needed because of FOV." +#, fuzzy +msgid "Windows" +msgstr "3D leihoak" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "3Dn landu beharko liratekeen leihoak" + +msgid "Alignment for rows that are not fully filled" msgstr "" -msgid "Key Bindings" +msgid "Amount of brightness in percent" msgstr "" -msgid "Left to Right" +msgid "Amount of opacity in percent" msgstr "" -msgid "Number Of Snowflakes" +msgid "Amount of saturation in percent" msgstr "" -msgid "Number of snowflakes" +msgid "Auto Change Viewport" msgstr "" -msgid "Right to Left" +msgid "Bring Selected To Front" msgstr "" -msgid "Rotate Flakes" +msgid "Centered" msgstr "" -msgid "Screen Boxing" +msgid "Change to the viewport of the selected window while switching" msgstr "" -msgid "Screen Depth" +msgid "Color of highlight rectangle" msgstr "" -msgid "Select snow flake movement direction" +msgid "Color of highlight rectangle border" msgstr "" -msgid "Settings" +msgid "Color of inlay in highlight rectangle border" msgstr "" -msgid "Size Of Snowflakes" +msgid "Generate mipmaps when possible for higher quality scaling" msgstr "" -msgid "Size of snowflakes" +#, fuzzy +msgid "Highlight Border Color" +msgstr "Lehio iragaziak" + +msgid "Highlight Border Inlay Color" msgstr "" -msgid "Snow" +msgid "Highlight Mode" msgstr "" -msgid "Snow Direction" +#, fuzzy +msgid "Icon" +msgstr "Barnea" + +msgid "Minimized Window Highlight Rectangle" msgstr "" -msgid "Snow Over Windows" +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" + +msgid "Mode for highlighting the currently selected window" msgstr "" -msgid "Snow Speed" +msgid "Next Panel" msgstr "" -msgid "Snow Textures" +#, fuzzy +msgid "Next window" +msgstr "3D leihoak" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Baztertu leihoa" + +msgid "Next window (Group)" msgstr "" -msgid "Snow Toggle" +msgid "Next window (No popup)" msgstr "" -msgid "Snow for Compiz" +msgid "Original Window Position" msgstr "" -msgid "Snow is drawn above windows" +#, fuzzy +msgid "Popup Window Delay" +msgstr "Baztertu leihoa" + +msgid "Popup switcher if not visible and select next window" msgstr "" -msgid "Snow textures" +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." msgstr "" -msgid "Snow toggle key" +msgid "Popup switcher if not visible and select next window out of all windows" msgstr "" -msgid "Speed of falling snow" +msgid "Popup switcher if not visible and select previous window" msgstr "" -msgid "Textures" +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." msgstr "" -msgid "Top to Bottom" +msgid "" +"Popup switcher if not visible and select previous window out of all windows" msgstr "" -msgid "Update Delay" +msgid "Prev Panel" msgstr "" -msgid "A simple splash plugin" +#, fuzzy +msgid "Prev window" +msgstr "Lehio iragaziak" + +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Baztertu leihoa" + +msgid "Prev window (Group)" msgstr "" -msgid "Background File" +msgid "Prev window (No popup)" msgstr "" -msgid "Background brightness." +msgid "Row Alignment" msgstr "" -msgid "Background image File." +msgid "Select next panel type window." msgstr "" -msgid "Background saturation." +msgid "Select next window without showing the popup window." msgstr "" -msgid "Display In/Out Time." +msgid "Select previous panel type window." msgstr "" -msgid "Display Time" +msgid "Select previous window without showing the popup window." msgstr "" -msgid "Images" +msgid "Selected Window Highlight" msgstr "" -msgid "Initiate Splash" +#, fuzzy +msgid "Show Rectangle" +msgstr "Laukia" + +msgid "Show icon next to thumbnail" msgstr "" -msgid "Logo File" +msgid "Show minimized windows" msgstr "" -msgid "Logo image File." +msgid "Static Application Switcher" msgstr "" -msgid "Show on first start" +msgid "Switcher speed" msgstr "" -msgid "Show splash on first start." +msgid "Switcher timestep" +msgstr "Aldatze denbora-pausoa" + +#, fuzzy +msgid "Switcher windows" +msgstr "Lehio iragaziak" + +msgid "Taskbar Entry" msgstr "" -msgid "Splash" +msgid "Time (in s) the popup window should be delayed before appearing" msgstr "" -msgid "Start Splash." +msgid "Where to draw highlight rectangle for minimized windows" msgstr "" +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "3Dn landu beharko liratekeen leihoak" + msgid "Render text to texture" msgstr "" @@ -4388,9 +4497,8 @@ msgid "Width of the border between the previews" msgstr "" -#, fuzzy msgid "Background fill type." -msgstr "Disdira" +msgstr "Atzeko plano betetze mota." msgid "Backgrounds" msgstr "" @@ -4398,9 +4506,6 @@ msgid "Center Tiled" msgstr "" -msgid "Centered" -msgstr "" - #, fuzzy msgid "Color 1" msgstr "Koloreak" @@ -4459,9 +4564,8 @@ msgid "Wallpaper" msgstr "" -#, fuzzy msgid "Background Brightness" -msgstr "Disdira" +msgstr "Atzeko plano distira" #, fuzzy msgid "Background Saturation" @@ -4470,9 +4574,8 @@ msgid "Background in Widget Mode" msgstr "" -#, fuzzy msgid "Brightness of non-widget windows in widget modes." -msgstr "Leiho zeharrargiko disdira" +msgstr "" msgid "End Widget Mode on Click" msgstr "" @@ -4540,6 +4643,14 @@ msgid "Matches" msgstr "" +#, fuzzy +msgid "Maximized" +msgstr "Tamaina maximora" + +#, fuzzy +msgid "Maximized windows" +msgstr "Lehio iragaziak" + msgid "No ARGB visuals" msgstr "" @@ -4618,6 +4729,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "" @@ -4659,6 +4773,9 @@ "viewports." msgstr "" +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" @@ -4683,6 +4800,296 @@ msgid "Workarounds" msgstr "" +#~ msgid "Airplane" +#~ msgstr "Hegazkina" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Hegazkinaren hegaldi ibilbidearen luzera" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Animazio denbora-pausoa efektu bortitzetan" + +#~ msgid "Automatic" +#~ msgstr "Automatiko" + +#~ msgid "Beam" +#~ msgstr "Argi-sorta" + +#~ msgid "Beam Color" +#~ msgstr "Argi-sorta kolorea" + +#~ msgid "Beam Life" +#~ msgstr "Argi-sortaren bizia" + +#~ msgid "Beam Slowdown" +#~ msgstr "Argi-sortaren gainbehera" + +#~ msgid "Beam Spacing" +#~ msgstr "Argi-sortaren tartea" + +#, fuzzy +#~ msgid "Beam Up" +#~ msgstr "Argi-sorta goi" + +#~ msgid "Beam Width" +#~ msgstr "Argi-sorta zabalera" + +#~ msgid "Beam color." +#~ msgstr "Argi-sorta kolorea." + +#~ msgid "Beam life." +#~ msgstr "Argi-sorta bizia." + +#~ msgid "Beam slowdown." +#~ msgstr "Argi-sorta gainbehera." + +#~ msgid "Beam width." +#~ msgstr "Argi-sorta zabalera." + +#~ msgid "Burn" +#~ msgstr "Su garrak" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Domino piezaren jauzte norabidea" + +#~ msgid "Explode" +#~ msgstr "Leherketa" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Jauzte norabidea domino piezetan." + +#~ msgid "Fire" +#~ msgstr "Sua" + +#~ msgid "Fire Smoke" +#~ msgstr "Suaren kea" + +#~ msgid "Fire constant speed" +#~ msgstr "Suaren abiadura konstantea" + +#~ msgid "Fire direction" +#~ msgstr "Suaren norabidea" + +#~ msgid "Fire direction." +#~ msgstr "Suaren norabidea." + +#~ msgid "Fire smoke." +#~ msgstr "Suaren kea." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Egan ataza-barrara ikonotzean." + +#~ msgid "Fold" +#~ msgstr "Tolestu" + +#~ msgid "Fold Direction" +#~ msgstr "Toleste norabidea" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Mozketa efektuan, zatien irekitze tolesduraren norabidea" + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonala" + +#~ msgid "In" +#~ msgstr "Barnea" + +#~ msgid "In-out" +#~ msgstr "Barne-Kanpo" + +#~ msgid "Left-right" +#~ msgstr "Ezker-eskuin" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Hegazkinaren egaldi ibilbidearen luzera." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Su efektuaren iraupena leihoaren altueraren araberakoa izan dadila." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Mugimendu norabidea(k) leiho zatientzat." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Su partikulen kopurua" + +#~ msgid "Number of fire particles." +#~ msgstr "Su partikulen kopurua." + +#~ msgid "Out" +#~ msgstr "Kanpoan" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Razr tolesduraren irekitze norabidea" + +#~ msgid "Rectangular" +#~ msgstr "Laukia" + +#~ msgid "Rotation Angle" +#~ msgstr "Biratze angelua" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Animatutako leihoen zatien biratze angelua (Gradutan)" + +#~ msgid "Skewer" +#~ msgstr "Birrindu" + +#~ msgid "Skewer Direction" +#~ msgstr "Birrintze norabidea" + +#~ msgid "Spacing between beams." +#~ msgstr "Argi-sorten arteko tartea." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Milisegundo kopurua animazio bizien (adib. sua, argi-sorta) irudikatzeen " +#~ "artean. Gero eta zenbaki handiagoa mugimendu zakarragoa." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Animatutako leihoa saretan zehar zatikatuko da. Adierazi saretaren " +#~ "gelaxka kopurua leihoaren altueran." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Animatutako leihoa saretan zehar zatikatuko da. Adierazi saretaren " +#~ "gelaxka kopurua leihoaren zabaleran." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Eztandako leihoa sareta batean zatituko da.Zehaztu saretak zenbat gelaxka " +#~ "izango dituen leihoaren altueran." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Eztandako leihoa sareta batean zatituko da.Zehaztu saretak zenbat gelaxka " +#~ "izango dituen leihoaren zabaleran." + +#~ msgid "Thickness" +#~ msgstr "Lodiera" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Animatutako poligonoen lodiera." + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Eztandako poligonoen lodiera." + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Animatutako leiho zatien lodiera (pixeletan)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Eztandako leiho zatien lodiera (pixeletan)." + +#~ msgid "Up-down" +#~ msgstr "Goi-behe" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Leihoak ataza-barrara hegan egin behar badu hegazkin efektuaz txikitzean." + +#~ msgid "Window Grid Height" +#~ msgstr "Leihoko Saretaren Altura" + +#~ msgid "Window Grid Width" +#~ msgstr "Leihoko saretaren zabalera" + +#~ msgid "Window folding direction." +#~ msgstr "Leiho toleste norabidea" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Tolesdura horizontalen tamaina (tolesdurako uhinen tamaina) leiho " +#~ "zabalerarekin parekatuz. Balore negatiboekin kanporantz tolestuz." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Tolesdura kurbatuaren tamaina (tolesdurako uhinen tamaina) leiho " +#~ "zabalerarekin parekatuz. Balore negatiboekin kanporantz tolestuz." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "Uhinaren tamaina leiho alturaren araberakoa." + +#~ msgid "Brightness Decrease" +#~ msgstr "Distira txikitu " + +#~ msgid "Brightness Increase" +#~ msgstr "Distira handitu" + +#~ msgid "Brightness Step" +#~ msgstr "Distira tartea" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Distira eta Saturazioa" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Distira eta saturazioa doitzea" + +#~ msgid "Brightness settings" +#~ msgstr "Distira ezarpenak" + +#~ msgid "Brightness values for windows" +#~ msgstr "Distira balioak leihoentzat" + +#~ msgid "Brightness window values" +#~ msgstr "Distira balioak leihoentzat" + +#~ msgid "Brightness windows" +#~ msgstr "Leihoen distira" + +#~ msgid "Saturation Decrease" +#~ msgstr "Saturazioa txikitu" + +#~ msgid "Saturation Increase" +#~ msgstr "Saturazioa handitu" + +#~ msgid "Saturation Step" +#~ msgstr "Saturazioa tartea" + +#~ msgid "Saturation settings" +#~ msgstr "Saturazio ezarpenak" + +#~ msgid "Saturation values for windows" +#~ msgstr "Saturazio balioak leihoentzat" + +#~ msgid "Saturation window values" +#~ msgstr "Saturazio balioak leihoentzat" + +#~ msgid "Saturation windows" +#~ msgstr "Leihoen saturazioa" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Leiho kokapena" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Lehenetsita distira ezberdina izan behar duten leihoak." + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Lehenetsita saturazio ezberdina izan behar duten leihoak." + #~ msgid "Animation Speed" #~ msgstr "Animazio abiadura" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/fa.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/fa.po --- compiz-fusion-plugins-unsupported-0.7.6/po/fa.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/fa.po 2008-09-17 14:29:33.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Compiz-Fusion i18n\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" "PO-Revision-Date: 2008-03-12 06:43+0100\n" "Last-Translator: Ali Tarihi \n" "Language-Team: l10n.ir\n" @@ -122,6 +122,12 @@ msgid "Brightness of faded windows" msgstr "" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -150,27 +156,11 @@ msgid "Window types that should be Opacified." msgstr "" -msgid "Airplane" -msgstr "" - -msgid "Airplane Flying Path Length" -msgstr "" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." msgstr "" -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" - msgid "Angle of window at the end of the animation." msgstr "" @@ -180,9 +170,6 @@ msgid "Animation Time Step" msgstr "" -msgid "Animation Time Step For Intense Effects" -msgstr "" - msgid "Animation duration in milliseconds for close effect." msgstr "" @@ -201,51 +188,12 @@ msgid "Animations" msgstr "" -msgid "Automatic" -msgstr "" - msgid "Away Angle" msgstr "" msgid "Away Position" msgstr "" -msgid "Beam" -msgstr "" - -msgid "Beam Color" -msgstr "" - -msgid "Beam Life" -msgstr "" - -msgid "Beam Slowdown" -msgstr "" - -msgid "Beam Spacing" -msgstr "" - -msgid "Beam Up" -msgstr "" - -msgid "Beam Width" -msgstr "" - -msgid "Beam color." -msgstr "" - -msgid "Beam life." -msgstr "" - -msgid "Beam slowdown." -msgstr "" - -msgid "Beam width." -msgstr "" - -msgid "Burn" -msgstr "" - msgid "Close Animation" msgstr "" @@ -265,7 +213,7 @@ msgid "Curved Fold" msgstr "" -msgid "Curved Fold Amplitude" +msgid "Curved Fold Amplitude Multiplier" msgstr "" msgid "Dodge" @@ -274,15 +222,6 @@ msgid "Dodge Gap Ratio" msgstr "" -msgid "Domino" -msgstr "" - -msgid "Domino Piece Falling Direction" -msgstr "" - -msgid "Down" -msgstr "" - msgid "Dream" msgstr "" @@ -292,76 +231,21 @@ msgid "Effect Settings" msgstr "" -msgid "Explode" -msgstr "" - msgid "Fade" msgstr "" -msgid "Falling direction for Domino pieces." -msgstr "" - -msgid "Fire" -msgstr "" - -msgid "Fire Particle Color" -msgstr "" - -msgid "Fire Particle Life" -msgstr "" - -msgid "Fire Particle Size" -msgstr "" - -msgid "Fire Particle Slowdown" -msgstr "" - -msgid "Fire Smoke" -msgstr "" - -msgid "Fire constant speed" -msgstr "" - -msgid "Fire direction" -msgstr "" - -msgid "Fire direction." -msgstr "" - -msgid "Fire particle color." -msgstr "" - -msgid "Fire particle life." -msgstr "" - -msgid "Fire particle size." -msgstr "" - -msgid "Fire particle slowdown." -msgstr "" - -msgid "Fire smoke." -msgstr "" - msgid "Fixed window interior during the Rollup animation." msgstr "" -msgid "Fly to TaskBar on Minimize" -msgstr "" - msgid "Focus Animation" msgstr "" msgid "Focus Effect" msgstr "" -msgid "Fold" -msgstr "" - -msgid "Fold Direction" -msgstr "" - -msgid "Fold opening direction for pieces in Razr effect." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "Glide 1" @@ -370,16 +254,10 @@ msgid "Glide 2" msgstr "" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" - -msgid "Hexagonal" -msgstr "" - msgid "Horizontal Folds" msgstr "" -msgid "Horizontal Folds Amplitude" +msgid "Horizontal Folds Amplitude Multiplier" msgstr "" msgid "How spring-like the Sidekick animation should be." @@ -388,24 +266,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "" -msgid "In" -msgstr "" - -msgid "In-out" -msgstr "" - -msgid "Leaf Spread" -msgstr "" - -msgid "Left" -msgstr "" - -msgid "Left-right" -msgstr "" - -msgid "Length of airplane's flying path." -msgstr "" - msgid "Magic Lamp" msgstr "" @@ -427,9 +287,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "" -msgid "Make fire effect duration be dependent on window height." -msgstr "" - msgid "Minimize Animation" msgstr "" @@ -439,21 +296,12 @@ msgid "Minimize/Unminimize Only" msgstr "" -msgid "Movement direction(s) for window pieces." -msgstr "" - msgid "None" msgstr "" -msgid "Number Of Fire Particles" -msgstr "" - msgid "Number of Horizontal Folds" msgstr "" -msgid "Number of fire particles." -msgstr "" - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -482,15 +330,12 @@ msgid "Options" msgstr "" -msgid "Out" -msgstr "" - msgid "Pool" msgstr "" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" msgid "Random" @@ -502,36 +347,15 @@ msgid "Random Effects" msgstr "" -msgid "Randomly Colored Fire" -msgstr "" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" -msgid "Razr" -msgstr "" - -msgid "Razr Fold Opening Direction" -msgstr "" - -msgid "Rectangular" -msgstr "" - -msgid "Right" -msgstr "" - msgid "Roll Up" msgstr "" msgid "Rollup Fixed Interior" msgstr "" -msgid "Rotation Angle" -msgstr "" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "" - msgid "Shade Animation" msgstr "" @@ -547,15 +371,6 @@ msgid "Sidekick Springiness" msgstr "" -msgid "Skewer" -msgstr "" - -msgid "Skewer Direction" -msgstr "" - -msgid "Spacing between beams." -msgstr "" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -565,36 +380,11 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "" -msgid "Tessellation Type" -msgstr "" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -msgid "Tessellation type for window pieces." -msgstr "" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The animation effect shown when closing a window." msgstr "" @@ -610,16 +400,6 @@ msgid "The animation effect shown when shading a window." msgstr "" -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" @@ -633,36 +413,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" - msgid "The width of the wave relative to the window height." msgstr "" msgid "The windows that will be animated." msgstr "" -msgid "Thickness" -msgstr "" - -msgid "Thickness of Animated Polygons" -msgstr "" - -msgid "Thickness of Exploding Polygons" -msgstr "" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "" - -msgid "Up" -msgstr "" - -msgid "Up-down" -msgstr "" - msgid "Use various animations as window effects" msgstr "" @@ -693,14 +449,15 @@ msgid "Wave" msgstr "" -msgid "Wave Amplitude" +msgid "Wave Amplitude Multiplier" msgstr "" msgid "Wave Width" msgstr "" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "" @@ -725,26 +482,12 @@ "Folds effect." msgstr "" -msgid "Window Grid Height" -msgstr "" - -msgid "Window Grid Width" -msgstr "" - -msgid "Window folding direction." -msgstr "" - msgid "Window that should animate with this effect when focused." msgstr "" msgid "Window that should animate with this effect when shaded." msgstr "" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" - msgid "Zoom" msgstr "" @@ -853,64 +596,10 @@ msgid "Y position" msgstr "" -msgid "Brightness Decrease" -msgstr "" - -msgid "Brightness Increase" -msgstr "" - -msgid "Brightness Step" -msgstr "" - -msgid "Brightness and Saturation" -msgstr "" - -msgid "Brightness and Saturation adjustments" -msgstr "" - -msgid "Brightness settings" -msgstr "" - -msgid "Brightness values for windows" -msgstr "" - -msgid "Brightness window values" -msgstr "" - -msgid "Brightness windows" -msgstr "" - -msgid "General" -msgstr "" - -msgid "Saturation Decrease" -msgstr "" - -msgid "Saturation Increase" -msgstr "" - -msgid "Saturation Step" -msgstr "" - -msgid "Saturation settings" +msgid "Bicubic filter" msgstr "" -msgid "Saturation values for windows" -msgstr "" - -msgid "Saturation window values" -msgstr "" - -msgid "Saturation windows" -msgstr "" - -msgid "Window specific" -msgstr "" - -msgid "Windows that should have a different brightness by default" -msgstr "" - -msgid "Windows that should have a different saturation by default" +msgid "Bicubic texture filtering" msgstr "" msgid "Color filter" @@ -998,6 +687,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "" +msgid "Above" +msgstr "" + msgid "Adjust bottom face image to rotation" msgstr "" @@ -1019,6 +711,18 @@ msgid "Appearance" msgstr "" +msgid "Aspect ratio" +msgstr "" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "" + msgid "Behaviour" msgstr "" @@ -1046,110 +750,129 @@ msgid "Color of bottom face of the cube" msgstr "" +msgid "Color of the ground (far)." +msgstr "" + +msgid "Color of the ground (near)." +msgstr "" + msgid "Color of top face of the cube" msgstr "" +msgid "Compiz cube reflection and deformation" +msgstr "" + msgid "Cube Bottom Color" msgstr "" -msgid "Cube Caps" +msgid "Cube Reflection and Deformation" msgstr "" msgid "Cube Top Color" msgstr "" -msgid "Draw bottom face" +msgid "Cube caps" msgstr "" -msgid "Draw bottom face of the cube" +msgid "Cylinder" msgstr "" -msgid "Draw top face" +msgid "Deform caps" msgstr "" -msgid "Draw top face of the cube" +msgid "Deform cube caps." msgstr "" -msgid "Go back to previous image for bottom face of the cube" +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "سه بعدی فقط روی چرخش موس" + +msgid "Deformation" msgstr "" -msgid "Go back to previous image for top face of the cube" +msgid "Deformation in unfold cube mode." msgstr "" -msgid "" -"List of PNG and SVG files that should be rendered on bottom face of cube" +msgid "Deformation mode." msgstr "" -msgid "List of PNG and SVG files that should be rendered on top face of cube" +msgid "Distance" msgstr "" -msgid "Next bottom image" +msgid "Draw bottom face" msgstr "" -msgid "Next top image" +msgid "Draw bottom face of the cube" msgstr "" -msgid "Prev bottom image" +msgid "Draw top face" msgstr "" -msgid "Prev top image" +msgid "Draw top face of the cube" msgstr "" -msgid "Render images on top and bottom of the cube" +msgid "Enabled" msgstr "" -msgid "Scale bottom image" +msgid "Give cube a reflective ground." msgstr "" -msgid "Scale image to cover bottom face of cube" +msgid "Go back to previous image for bottom face of the cube" msgstr "" -msgid "Scale image to cover top face of cube" +msgid "Go back to previous image for top face of the cube" msgstr "" -msgid "Scale top image" +msgid "Ground color(far)" msgstr "" -msgid "Top image files" +msgid "Ground color(near)" msgstr "" -msgid "Above" +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." msgstr "" -msgid "Auto zoom" +msgid "Intensity" msgstr "" -msgid "Auto zoom only on Mouse Rotate" +msgid "Jumpy" msgstr "" -msgid "Color of the ground (far)." +msgid "Jumpy reflection" msgstr "" -msgid "Color of the ground (near)." +msgid "" +"List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" -msgid "Compiz cube reflection" +msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "" -msgid "Cube Reflection" +msgid "Maintain bottom aspect ratio" msgstr "" -msgid "Distance" +msgid "Maintain bottom cap image aspect ratio." msgstr "" -msgid "Ground color(far)" +msgid "Maintain top aspect ratio" msgstr "" -msgid "Ground color(near)" +msgid "Maintain top cap image aspect ratio." msgstr "" -msgid "Intensity" +msgid "Next bottom image" msgstr "" -msgid "Jumpy" +msgid "Next top image" msgstr "" -msgid "Jumpy reflection" +msgid "Prev bottom image" +msgstr "" + +msgid "Prev top image" +msgstr "" + +msgid "Reflection" msgstr "" msgid "Reflection ground size" @@ -1167,12 +890,45 @@ msgid "Reflection mode." msgstr "" +msgid "Scale bottom image" +msgstr "" + +msgid "Scale image to cover bottom face of cube" +msgstr "" + +msgid "Scale image to cover top face of cube" +msgstr "" + +msgid "Scale top image" +msgstr "" + +msgid "Sphere" +msgstr "" + +msgid "Top image files" +msgstr "" + +msgid "Unfold cube deformation" +msgstr "" + msgid "Zoom out automatically only on mouse rotate." msgstr "" msgid "Zoom out automatically to make the cube fit to the screen." msgstr "" +msgid "Cube Caps" +msgstr "" + +msgid "Render images on top and bottom of the cube" +msgstr "" + +msgid "Compiz cube reflection" +msgstr "" + +msgid "Cube Reflection" +msgstr "" + msgid "Animation used when switching to expo mode" msgstr "" @@ -1194,9 +950,6 @@ msgid "Curve strength" msgstr "" -msgid "Deformation" -msgstr "" - msgid "Deformation of the expo wall" msgstr "" @@ -1287,9 +1040,6 @@ msgid "Previous viewport" msgstr "" -msgid "Reflection" -msgstr "" - msgid "Reflection Scale" msgstr "" @@ -1385,7 +1135,10 @@ "outside the zoom area." msgstr "" -msgid "Center the mouse" +msgid "Center the mouse" +msgstr "" + +msgid "Dynamic mouse pointer scale" msgstr "" msgid "Enable focus tracking" @@ -1442,17 +1195,12 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." +msgid "Minimum zoom factor" msgstr "" msgid "Mouse Behaviour" msgstr "" -msgid "Mouse Poll Interval" -msgstr "" - msgid "Mouse Restrain Margin" msgstr "" @@ -1531,12 +1279,20 @@ msgid "Speed" msgstr "" +msgid "Static mouse pointer scale" +msgstr "" + msgid "Sync Mouse" msgstr "" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" @@ -1552,9 +1308,22 @@ msgid "Use linear filter when zoomed in" msgstr "" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "" +msgid "Zoom Box" +msgstr "" + msgid "Zoom In" msgstr "" @@ -1582,6 +1351,9 @@ msgid "Zoom factor" msgstr "" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" @@ -1635,6 +1407,12 @@ msgid "Toggle window fake ARGB." msgstr "" +msgid "Add Particle" +msgstr "" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "" @@ -1650,6 +1428,33 @@ msgid "Clear (key)" msgstr "" +msgid "Fire Particle Color" +msgstr "" + +msgid "Fire Particle Life" +msgstr "" + +msgid "Fire Particle Size" +msgstr "" + +msgid "Fire Particle Slowdown" +msgstr "" + +msgid "Fire particle color." +msgstr "" + +msgid "Fire particle life." +msgstr "" + +msgid "Fire particle size." +msgstr "" + +msgid "Fire particle slowdown." +msgstr "" + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" + msgid "Initiate (button)" msgstr "" @@ -1671,6 +1476,9 @@ msgid "Paint fire or other particles on the screen" msgstr "" +msgid "Randomly Colored Fire" +msgstr "" + msgid "Cube Gears" msgstr "" @@ -1761,6 +1569,9 @@ msgid "Font Size" msgstr "" +msgid "General" +msgstr "" + msgid "Glass" msgstr "" @@ -2328,9 +2139,17 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "" + msgid "Mouse position polling" msgstr "" @@ -3020,8 +2839,13 @@ msgid "Background color of the window title" msgstr "" -msgid "Close Windows In Scale" -msgstr "" +#, fuzzy +msgid "Close Window" +msgstr "پنجره‌های ۳بعدی" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "پنجره‌ها را هنگام چرخش مکعب، بالا ببر" msgid "Close windows while in scale mode" msgstr "" @@ -3029,9 +2853,18 @@ msgid "Color used for highlighting the hovered window" msgstr "" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "" @@ -3047,6 +2880,10 @@ msgid "Highlights the hovered window with the given color" msgstr "" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + msgid "No display" msgstr "" @@ -3056,6 +2893,13 @@ msgid "Organic - EXPERIMENTAL" msgstr "" +#, fuzzy +msgid "Pull Window" +msgstr "پنجره‌های ۳بعدی" + +msgid "Pull window to current viewport while in scale mode" +msgstr "" + msgid "Scale Addons" msgstr "" @@ -3080,6 +2924,9 @@ msgid "Window Layout Mode" msgstr "" +msgid "Window Pull" +msgstr "" + msgid "Window Title" msgstr "" @@ -3089,10 +2936,11 @@ msgid "Window title display in scale mode" msgstr "" -msgid "Zoom Windows In Scale" -msgstr "" +#, fuzzy +msgid "Zoom Window" +msgstr "پنجره‌های ۳بعدی" -msgid "Zoom windows while in scale mode" +msgid "Zoom window while in scale mode" msgstr "" msgid "Filter Case Insensitive" @@ -3342,18 +3190,30 @@ msgid "Direction of window movement" msgstr "" +msgid "Down" +msgstr "" + +msgid "Left" +msgstr "" + msgid "Left/Right" msgstr "" msgid "Movement Direction" msgstr "" +msgid "Right" +msgstr "" + msgid "Show desktop" msgstr "" msgid "To Corners" msgstr "" +msgid "Up" +msgstr "" + msgid "Up/Down" msgstr "" @@ -3668,6 +3528,210 @@ msgid "Start Splash." msgstr "" +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" + +msgid "Behavior" +msgstr "" + +msgid "Darken background when showing the stack" +msgstr "" + +msgid "On Thumbnail" +msgstr "" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "رنگ ژرفای پنجره غیر فعال" + +msgid "Should not selected windows be rotated" +msgstr "" + +msgid "Stack Window Switcher" +msgstr "" + +msgid "Tilt angle of the background." +msgstr "" + +#, fuzzy +msgid "Windows" +msgstr "پنجره‌های ۳بعدی" + +msgid "Windows that should be shown in the switcher" +msgstr "" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +msgid "Amount of brightness in percent" +msgstr "" + +msgid "Amount of opacity in percent" +msgstr "" + +msgid "Amount of saturation in percent" +msgstr "" + +msgid "Auto Change Viewport" +msgstr "" + +msgid "Bring Selected To Front" +msgstr "" + +msgid "Centered" +msgstr "" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +msgid "Color of highlight rectangle" +msgstr "" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" + +msgid "Highlight Border Color" +msgstr "" + +msgid "Highlight Border Inlay Color" +msgstr "" + +msgid "Highlight Mode" +msgstr "" + +msgid "Icon" +msgstr "" + +msgid "Minimized Window Highlight Rectangle" +msgstr "" + +msgid "Mipmap" +msgstr "" + +msgid "Mode for highlighting the currently selected window" +msgstr "" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "پنجره‌های ۳بعدی" + +msgid "Next window (All windows)" +msgstr "" + +msgid "Next window (Group)" +msgstr "" + +msgid "Next window (No popup)" +msgstr "" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "پنجره‌های ۳بعدی" + +msgid "Popup switcher if not visible and select next window" +msgstr "" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" + +msgid "Popup switcher if not visible and select previous window" +msgstr "" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" + +msgid "Prev Panel" +msgstr "" + +#, fuzzy +msgid "Prev window" +msgstr "پنجره‌های ۳بعدی" + +msgid "Prev window (All windows)" +msgstr "" + +msgid "Prev window (Group)" +msgstr "" + +msgid "Prev window (No popup)" +msgstr "" + +msgid "Row Alignment" +msgstr "" + +msgid "Select next panel type window." +msgstr "" + +msgid "Select next window without showing the popup window." +msgstr "" + +msgid "Select previous panel type window." +msgstr "" + +msgid "Select previous window without showing the popup window." +msgstr "" + +msgid "Selected Window Highlight" +msgstr "" + +msgid "Show Rectangle" +msgstr "" + +msgid "Show icon next to thumbnail" +msgstr "" + +msgid "Show minimized windows" +msgstr "" + +msgid "Static Application Switcher" +msgstr "" + +msgid "Switcher speed" +msgstr "" + +msgid "Switcher timestep" +msgstr "" + +msgid "Switcher windows" +msgstr "" + +msgid "Taskbar Entry" +msgstr "" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" + +msgid "Windows that should be shown in switcher" +msgstr "" + msgid "Render text to texture" msgstr "" @@ -4320,9 +4384,6 @@ msgid "Center Tiled" msgstr "" -msgid "Centered" -msgstr "" - msgid "Color 1" msgstr "" @@ -4449,6 +4510,13 @@ msgid "Matches" msgstr "" +msgid "Maximized" +msgstr "" + +#, fuzzy +msgid "Maximized windows" +msgstr "رنگ ژرفای پنجره غیر فعال" + msgid "No ARGB visuals" msgstr "" @@ -4527,6 +4595,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "" @@ -4568,6 +4639,9 @@ "viewports." msgstr "" +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/fi.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/fi.po --- compiz-fusion-plugins-unsupported-0.7.6/po/fi.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/fi.po 2008-09-17 14:29:33.000000000 +0100 @@ -9,13 +9,14 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" -"PO-Revision-Date: 2008-04-17 12:19+0200\n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" +"PO-Revision-Date: 2008-09-05 08:41+0200\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" @@ -118,6 +119,12 @@ msgid "Brightness of faded windows" msgstr "Häivyttyneiden ikkunoiden kirkkaus" +msgid "Enable ADD Helper on start" +msgstr "Ota ADD-avustin käyttöön käynnistettäessä" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Ottaa ADD-avustimen käyttöön kun se on ensin ladattu." + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -147,12 +154,6 @@ msgid "Window types that should be Opacified." msgstr "Ikkunatyypit, joihin tulisi käyttää läpinäkyvyyttä" -msgid "Airplane" -msgstr "Lentokone" - -msgid "Airplane Flying Path Length" -msgstr "Lentokoneen polun pituus" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -160,20 +161,6 @@ "Kaikki tehosteet valitaan sattumanvaraisesti, mutta valittua tehostetta ei " "käytetä. Jos mitään tehostetta ei valita, kyseistä tapahtumaa ei animoida" -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Vaakataitosten amplitudi (aallonkorkeus) suhteessa ikkunan leveyteen. " -"Negatiiviset arvot taittavat ulospäin." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Kaarevien taitosten amplitudi (aallonkorkeus) suhteessa ikkunan leveyteen. " -"Negatiiviset arvot taittavat ulospäin." - msgid "Angle of window at the end of the animation." msgstr "Ikkunan kulma animaation lopussa." @@ -183,12 +170,8 @@ msgid "Animation Time Step" msgstr "Animaation aikaviive" -msgid "Animation Time Step For Intense Effects" -msgstr "Animaation aikaviive raskaille efekteille" - -#, fuzzy msgid "Animation duration in milliseconds for close effect." -msgstr "Animaation kesto (ms) *" +msgstr "Animaation kesto millisekunneissa sulkemistehosteelle." msgid "Animation duration in milliseconds for focus effect." msgstr "Animaation kesto (ms) tarkennus efektille" @@ -205,51 +188,12 @@ msgid "Animations" msgstr "Animaatiot" -msgid "Automatic" -msgstr "Automaattinen" - msgid "Away Angle" msgstr "Kulma poispäin" msgid "Away Position" msgstr "Poissa-asento" -msgid "Beam" -msgstr "Säde" - -msgid "Beam Color" -msgstr "Säteen väri" - -msgid "Beam Life" -msgstr "Säteen elinaika" - -msgid "Beam Slowdown" -msgstr "Säteen hidastus" - -msgid "Beam Spacing" -msgstr "Säteiden väli" - -msgid "Beam Up" -msgstr "Säde ylös" - -msgid "Beam Width" -msgstr "Säteen leveys" - -msgid "Beam color." -msgstr "Säteen väri." - -msgid "Beam life." -msgstr "Säteen elinaika." - -msgid "Beam slowdown." -msgstr "Säteen hidastus." - -msgid "Beam width." -msgstr "Säteen leveys." - -msgid "Burn" -msgstr "Polta" - msgid "Close Animation" msgstr "Sulkemisanimaatio" @@ -274,8 +218,8 @@ msgid "Curved Fold" msgstr "Kaarevat taitokset" -msgid "Curved Fold Amplitude" -msgstr "Kaarevien taitosten amplitudi" +msgid "Curved Fold Amplitude Multiplier" +msgstr "Kaarevien taitosten amplitudin kerroin" msgid "Dodge" msgstr "Värilisävalotus" @@ -283,15 +227,6 @@ msgid "Dodge Gap Ratio" msgstr "Väistöväli" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Dominopalikoiden putoamissuunta" - -msgid "Down" -msgstr "Alas" - msgid "Dream" msgstr "Uni" @@ -301,77 +236,24 @@ msgid "Effect Settings" msgstr "Tehosteen asetukset" -msgid "Explode" -msgstr "Räjähdys" - msgid "Fade" msgstr "Häivytys" -msgid "Falling direction for Domino pieces." -msgstr "Dominopalikoiden putoamissuunta" - -msgid "Fire" -msgstr "Tuli" - -msgid "Fire Particle Color" -msgstr "Tulipartikkelin väri" - -msgid "Fire Particle Life" -msgstr "Tulipartikkelin elinikä" - -msgid "Fire Particle Size" -msgstr "Tulipartikkelin koko" - -msgid "Fire Particle Slowdown" -msgstr "Tulipartikkelin hidastuvuus" - -msgid "Fire Smoke" -msgstr "Tulen savu" - -msgid "Fire constant speed" -msgstr "Tulen vakionopeus" - -msgid "Fire direction" -msgstr "Tulen suunta" - -msgid "Fire direction." -msgstr "Tulen suunta." - -msgid "Fire particle color." -msgstr "Tulipartikkelin väri." - -msgid "Fire particle life." -msgstr "Tulipartikkelin elinikä." - -msgid "Fire particle size." -msgstr "Tulipartikkelin koko." - -msgid "Fire particle slowdown." -msgstr "Tulipartikkelin hidastuvuus." - -msgid "Fire smoke." -msgstr "Tulen savu." - msgid "Fixed window interior during the Rollup animation." msgstr "Korjattu ikkunan sisältö rullausanimaation aikana." -msgid "Fly to TaskBar on Minimize" -msgstr "Lennä tehtäväpalkkiin pienennettäessä" - msgid "Focus Animation" msgstr "Kohdistusanimaatio" msgid "Focus Effect" msgstr "Kohdistustehoste" -msgid "Fold" -msgstr "Laskostus" - -msgid "Fold Direction" -msgstr "Laskoksen suunta" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Laskosten avautumissuunta Razr-tehosteen osille." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" +"Laskoksen amplitudi (koko) kerrotaan tällä numerolla. Negatiivisilla " +"arvoilla laskostuminen ulospäin." msgid "Glide 1" msgstr "Liuku 1" @@ -379,19 +261,11 @@ msgid "Glide 2" msgstr "Liuku 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Käytä satunnaisia värejä tulitehosteessa (tunnetaan myös nimellä mystinen " -"tuli: Mystical Fire)" - -msgid "Hexagonal" -msgstr "Monikulmio" - msgid "Horizontal Folds" msgstr "Vaakalaskokset" -msgid "Horizontal Folds Amplitude" -msgstr "Vaakalaskosten amplitudi" +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "Vaakalaskosten amplitudin kerroin" msgid "How spring-like the Sidekick animation should be." msgstr "Sidekick-animaation ponnahtavuus" @@ -399,24 +273,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Lähennysanimaation ponnahtavuus" -msgid "In" -msgstr "Sisällä" - -msgid "In-out" -msgstr "Sisään-ulos" - -msgid "Leaf Spread" -msgstr "Lehtien levittyneisyys" - -msgid "Left" -msgstr "Vasen" - -msgid "Left-right" -msgstr "Vasen-oikea" - -msgid "Length of airplane's flying path." -msgstr "Lentokoneen lentoradan pituus." - msgid "Magic Lamp" msgstr "Taikalamppu" @@ -438,9 +294,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Taikalampun liikkuva avaus/sulkemishäntä" -msgid "Make fire effect duration be dependent on window height." -msgstr "Aseta tulitehosteen kesto riippuvaiseksi ikkunan leveydestä." - msgid "Minimize Animation" msgstr "Pienennysanimaatio" @@ -450,21 +303,12 @@ msgid "Minimize/Unminimize Only" msgstr "Pienennä/palauta ainoastaan" -msgid "Movement direction(s) for window pieces." -msgstr "Ikkunan palasien liikesuunnat" - msgid "None" msgstr "Ei mitään" -msgid "Number Of Fire Particles" -msgstr "Tulipartikkelien lukumäärä" - msgid "Number of Horizontal Folds" msgstr "Vaakasuuntaisten laskosten lukumäärä" -msgid "Number of fire particles." -msgstr "Tulipartikkelien lukumäärä." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "Sidekick-kierrosten lukumäärä (plus miinus 10% satunnaisuutta)" @@ -493,18 +337,15 @@ msgid "Options" msgstr "Valinnat" -msgid "Out" -msgstr "Ulkopuolella" - msgid "Pool" msgstr "Valikoima" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" -"Käytettävä tehostevalikoima jos satunnaistehosteet on valittu. Valitse " -"palauta oletukset palauttaaksesi täyden tehosteluettelon." +"Käytettävä tehostevalikoima josta satunnaistehosteet valitaan. Napsauta " +"Palauta oletukset käyttääksesi kaikkia tehosteita." msgid "Random" msgstr "Satunnainen" @@ -515,36 +356,15 @@ msgid "Random Effects" msgstr "Satunnaistehosteet" -msgid "Randomly Colored Fire" -msgstr "Satunnainen väri tulelle" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "Välien suhde väistön aloituksesta kohdistamiseen." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "" - -msgid "Rectangular" -msgstr "Suorakulmainen" - -msgid "Right" -msgstr "Oikea" - msgid "Roll Up" msgstr "Rullaus" msgid "Rollup Fixed Interior" msgstr "Rullaa kiinteä sisältö" -msgid "Rotation Angle" -msgstr "Kiertokulma" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Animoitujen ikkunanpalasten kiertokulma" - msgid "Shade Animation" msgstr "Varjoanimaatio" @@ -560,15 +380,6 @@ msgid "Sidekick Springiness" msgstr "Sidekick-ponnahtavuus" -msgid "Skewer" -msgstr "Vääristäjä" - -msgid "Skewer Direction" -msgstr "Vääristyksen suunta" - -msgid "Spacing between beams." -msgstr "Säteiden välimatka." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -578,15 +389,6 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "Tyhjiön avaus- ja sulkemistehosteen leveys" -msgid "Tessellation Type" -msgstr "" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -msgid "Tessellation type for window pieces." -msgstr "" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -594,28 +396,6 @@ "Animaatiojaksojen väliaika (ms). Mitä suurempi arvo, sitä nykivämmiksi " "liikkeet tulevat." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Vaativien (esim. tuli, säde) animaatiojaksojen väliaika (ms). Mitä suurempi " -"arvo, sitä nykivämmiksi liikkeet tulevat." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Animoitu ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " -"lukumäärä ikkunan korkeussuunnassa." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Animoitu ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " -"lukumäärä ikkunan leveyssuunnassa." - msgid "The animation effect shown when closing a window." msgstr "Näytettävä animaatiotehoste ikkunaa suljettaessa." @@ -631,20 +411,6 @@ msgid "The animation effect shown when shading a window." msgstr "Näytettävä animaatiotehoste ikkunaa varjostettaessa" -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Räjähtävä ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " -"lukumäärä ikkunan korkeussuunnassa." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Räjähtävä ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " -"lukumäärä ikkunan leveyssuunnassa." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "Taikalampun laskosten enimmäiskoko." @@ -658,36 +424,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "Laskosten lukumäärä vaakalaskos-animaatiossa" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Aallonkorkeus suhteessa ikkunan leveyteen." - msgid "The width of the wave relative to the window height." msgstr "Aallonpituus suhteessa ikkunan korkeuteen" msgid "The windows that will be animated." msgstr "Animoitavat ikkunat." -msgid "Thickness" -msgstr "Paksuus" - -msgid "Thickness of Animated Polygons" -msgstr "Animoitujen monikulmioiden paksuus" - -msgid "Thickness of Exploding Polygons" -msgstr "Räjähtävien monikulmioiden paksuus" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Animoitujen ikkunanpalasten paksuus (kuvapisteinä)" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Räjähtävien ikkunanpalasten paksuus (kuvapisteinä)" - -msgid "Up" -msgstr "Ylös" - -msgid "Up-down" -msgstr "Ylös-alas" - msgid "Use various animations as window effects" msgstr "Käytä useita animaatioita ikkunatehosteina" @@ -718,17 +460,18 @@ msgid "Wave" msgstr "Aalto" -msgid "Wave Amplitude" -msgstr "Aallonkorkeus" +msgid "Wave Amplitude Multiplier" +msgstr "Aallonkorkeuden kerroin" msgid "Wave Width" msgstr "Aaltojen leveys" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Tuleeko ikkunan lentää tehtäväpalkkiin kun se pienennetään " -"lentokonetehosteella." +"Aallonkorkeus (koko) kerrotaan tällä numerolla. Negatiiviset arvot " +"laskostuvat ulospäin." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -761,28 +504,12 @@ "Tuleeko ikkunan pienentyä tehtäväpalkkiin kun se pienennetään " "vaakalaskostehosteella." -msgid "Window Grid Height" -msgstr "Ikkunan koordinaatiston korkeus" - -msgid "Window Grid Width" -msgstr "Ikkunan koordinaatiston leveys" - -msgid "Window folding direction." -msgstr "Ikkunan laskostussuunta." - msgid "Window that should animate with this effect when focused." msgstr "Kohdistettava ikkuna animoituu tällä tehosteella." msgid "Window that should animate with this effect when shaded." msgstr "Varjostettava ikkuna animoituu tällä tehosteella." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Ikkunan paksuus kuvapisteinä. Nollaa suuremmat arvot poistavat käytöstä " -"varjot, sumennuksen ja heijasteet animaatiossa." - msgid "Zoom" msgstr "Zoomaus" @@ -805,58 +532,58 @@ msgstr "Värit" msgid "Cube Atlantis" -msgstr "" +msgstr "Kuutio-Atlantis" msgid "Dolphin size" -msgstr "" +msgstr "Delfiinin koko" msgid "Dolphin size." -msgstr "" +msgstr "Delfiinin koko." msgid "Enable colors" -msgstr "" +msgstr "Ota värit käyttöön" msgid "Fish size" -msgstr "" +msgstr "Kalan koko" msgid "Number of fish" -msgstr "" +msgstr "Kalojen lukumäärä" msgid "Number of fish inside the cube" -msgstr "" +msgstr "Kuution sisällä olevien kalojen lukumäärä" msgid "Render some fish inside of the transparent cube" -msgstr "" +msgstr "Piirrä joitain kaloja läpinäkyvän kuution sisälle" msgid "Shark size" -msgstr "" +msgstr "Hain koko" msgid "Whale size" -msgstr "" +msgstr "Valaan koko" msgid "Whale size." -msgstr "" +msgstr "Valaan koko." msgid "A simple benchmark plugin" -msgstr "" +msgstr "Yksinkertainen suorituskyvyn mittauksen liitännäinen" msgid "Benchmark" -msgstr "" +msgstr "Suorituskyvyn mittaus" msgid "Console Output" -msgstr "" +msgstr "Konsolituloste" msgid "Console output update time" -msgstr "" +msgstr "Konsolitulosteen päivitysaika" msgid "Disable Compiz integrated FPS limiter" -msgstr "" +msgstr "Ota Compizin sisäänrakennettu kehysnopeuden rajoitin pois päältä" msgid "Disable limiter" -msgstr "" +msgstr "Ota rajoitin pois käytöstä" msgid "Display FPS on screen" -msgstr "" +msgstr "Näytä kehysnopeus näytöllä" msgid "Enable" msgstr "Käytä" @@ -865,91 +592,37 @@ msgstr "Aloita" msgid "Main" -msgstr "" +msgstr "Pää" msgid "Print FPS to console" msgstr "Tulosta kehysnopeus konsoliin" msgid "Screen Output" -msgstr "" +msgstr "Tulostus näytölle" msgid "Start benchmark" -msgstr "" +msgstr "Käynnistä suorituskyvyn mittaus" msgid "Update time" -msgstr "" +msgstr "Päivitä aika" msgid "X Position of benchmark window" -msgstr "" +msgstr "Suorituskyvyn mittauksen ikkunan X-sijainti" msgid "X position" msgstr "X-sijainti" msgid "Y Position of benchmark window" -msgstr "" +msgstr "Suorituskyvyn mittauksen ikkunan Y-sijainti" msgid "Y position" msgstr "Y-sijainti" -msgid "Brightness Decrease" -msgstr "Vähennä kirkkautta" - -msgid "Brightness Increase" -msgstr "Lisää kirkkautta" - -msgid "Brightness Step" -msgstr "Kirkkaussäädön porras" - -msgid "Brightness and Saturation" -msgstr "Kirkkaus ja kylläisyys" - -msgid "Brightness and Saturation adjustments" -msgstr "Kirkkauden ja värikylläisyyden säädöt" - -msgid "Brightness settings" -msgstr "Kirkkausasetukset" - -msgid "Brightness values for windows" -msgstr "Ikkunoiden kirkkausasetus" - -msgid "Brightness window values" -msgstr "Kirkkaus, ikkunan arvot" - -msgid "Brightness windows" -msgstr "Kirkkaus, ikkunat" - -msgid "General" -msgstr "Yleiset" - -msgid "Saturation Decrease" -msgstr "Vahennä kylläisyyttä" - -msgid "Saturation Increase" -msgstr "Lisää kylläisyyttä" - -msgid "Saturation Step" -msgstr "Kylläisyysporras" - -msgid "Saturation settings" -msgstr "Kylläisyysasetukset" - -msgid "Saturation values for windows" -msgstr "Kylläisyysarvot ikkunoille" +msgid "Bicubic filter" +msgstr "Bicubic-suodatin" -msgid "Saturation window values" -msgstr "Kylläisyys, ikkunoiden arvot" - -msgid "Saturation windows" -msgstr "Kylläisyys, ikkunat" - -msgid "Window specific" -msgstr "Ikkunakohtainen" - -msgid "Windows that should have a different brightness by default" -msgstr "Ikkunat joilla tulee olla eri peruskirkkaus" - -msgid "Windows that should have a different saturation by default" -msgstr "" +msgid "Bicubic texture filtering" +msgstr "Bicubic-tekstuurisuodatin" msgid "Color filter" msgstr "Värisuodatin" @@ -1014,10 +687,10 @@ msgstr "Ikkunat joita ei suodateta." msgid "Activate Crash Handler." -msgstr "" +msgstr "Aktivoi kaatumisten käsittelijä" msgid "Compiz crash handler plugin" -msgstr "" +msgstr "Compizin kaatumisen käsittelijäliitännäinen" msgid "Crash Dump Directory" msgstr "" @@ -1043,6 +716,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "" +msgid "Above" +msgstr "Ylhäällä" + msgid "Adjust bottom face image to rotation" msgstr "" @@ -1064,6 +740,18 @@ msgid "Appearance" msgstr "Ulkoasu" +msgid "Aspect ratio" +msgstr "Kuvasuhde" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "" + msgid "Behaviour" msgstr "Toiminta" @@ -1091,18 +779,54 @@ msgid "Color of bottom face of the cube" msgstr "" +msgid "Color of the ground (far)." +msgstr "Maan väri (kaukana)." + +msgid "Color of the ground (near)." +msgstr "Maan väri (lähellä)." + msgid "Color of top face of the cube" msgstr "" +msgid "Compiz cube reflection and deformation" +msgstr "Compizin kuution heijastus ja muodon käsittely" + msgid "Cube Bottom Color" -msgstr "" +msgstr "Kuution pohjan väri" -msgid "Cube Caps" -msgstr "Kuution kannet" +msgid "Cube Reflection and Deformation" +msgstr "Kuution heijastus ja muodon käsittely" msgid "Cube Top Color" +msgstr "Kuution katon väri" + +msgid "Cube caps" +msgstr "Kuution kannet" + +msgid "Cylinder" +msgstr "Sylinteri" + +msgid "Deform caps" +msgstr "Muuta kansien muotoa" + +msgid "Deform cube caps." +msgstr "Muuta kuution kansien muotoa." + +msgid "Deform only on mouse rotate" +msgstr "Muuta muotoa vain hiirellä pyöritettäessä" + +msgid "Deformation" +msgstr "Muodon käsittely" + +msgid "Deformation in unfold cube mode." msgstr "" +msgid "Deformation mode." +msgstr "Muodon käsittelytapa." + +msgid "Distance" +msgstr "Etäisyys" + msgid "Draw bottom face" msgstr "" @@ -1115,12 +839,36 @@ msgid "Draw top face of the cube" msgstr "" +msgid "Enabled" +msgstr "Käytössä" + +msgid "Give cube a reflective ground." +msgstr "" + msgid "Go back to previous image for bottom face of the cube" msgstr "" msgid "Go back to previous image for top face of the cube" msgstr "" +msgid "Ground color(far)" +msgstr "Maan väri (kaukana)" + +msgid "Ground color(near)" +msgstr "Maan väri (lähellä)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Voimakkuus" + +msgid "Jumpy" +msgstr "Vaihteleva" + +msgid "Jumpy reflection" +msgstr "" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "Luettelo kuution pohjaan asetettavista PNG- ja SVG-tiedostoista" @@ -1128,6 +876,18 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "Luettelo kuution päälle asetettavista PNG- ja SVG-tiedostoista" +msgid "Maintain bottom aspect ratio" +msgstr "Pidä pohjan kuvasuhde" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "" + +msgid "Maintain top aspect ratio" +msgstr "Pidä katon kuvasuhde" + +msgid "Maintain top cap image aspect ratio." +msgstr "" + msgid "Next bottom image" msgstr "" @@ -1140,7 +900,22 @@ msgid "Prev top image" msgstr "" -msgid "Render images on top and bottom of the cube" +msgid "Reflection" +msgstr "Heijastus" + +msgid "Reflection ground size" +msgstr "Heijastuksen koko alustalla" + +msgid "Reflection ground size." +msgstr "Heijastuksen koko alustalla." + +msgid "Reflection intensity" +msgstr "" + +msgid "Reflection mode" +msgstr "" + +msgid "Reflection mode." msgstr "" msgid "Scale bottom image" @@ -1155,69 +930,33 @@ msgid "Scale top image" msgstr "" +msgid "Sphere" +msgstr "Pallo" + msgid "Top image files" msgstr "" -msgid "Above" -msgstr "Ylhäällä" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" +msgid "Zoom out automatically only on mouse rotate." msgstr "" -msgid "Auto zoom only on Mouse Rotate" +msgid "Zoom out automatically to make the cube fit to the screen." msgstr "" -msgid "Color of the ground (far)." -msgstr "Maan väri (kaukana)." +msgid "Cube Caps" +msgstr "Kuution kannet" -msgid "Color of the ground (near)." -msgstr "Maan väri (lähellä)." +msgid "Render images on top and bottom of the cube" +msgstr "" msgid "Compiz cube reflection" -msgstr "" +msgstr "Compizin kuution heijastus" msgid "Cube Reflection" msgstr "Kuution heijastus" -msgid "Distance" -msgstr "Etäisyys" - -msgid "Ground color(far)" -msgstr "Maan väri (kaukana)" - -msgid "Ground color(near)" -msgstr "Maan väri (lähellä)" - -msgid "Intensity" -msgstr "Voimakkuus" - -msgid "Jumpy" -msgstr "Vaihteleva" - -msgid "Jumpy reflection" -msgstr "" - -msgid "Reflection ground size" -msgstr "Heijastuksen koko alustalla" - -msgid "Reflection ground size." -msgstr "Heijastuksen koko alustalla." - -msgid "Reflection intensity" -msgstr "" - -msgid "Reflection mode" -msgstr "" - -msgid "Reflection mode." -msgstr "" - -msgid "Zoom out automatically only on mouse rotate." -msgstr "" - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "" - msgid "Animation used when switching to expo mode" msgstr "Expo-tilaan siirryttäessä käytettävät animaatiot" @@ -1239,9 +978,6 @@ msgid "Curve strength" msgstr "" -msgid "Deformation" -msgstr "" - msgid "Deformation of the expo wall" msgstr "" @@ -1308,13 +1044,11 @@ msgid "Immediate moves" msgstr "Välittömät liikkeet" -#, fuzzy msgid "Inactive viewport brightness." -msgstr "Epäaktiivisen työtilan kirkkaus" +msgstr "Epäaktiivisen työtilan kirkkaus." -#, fuzzy msgid "Inactive viewport saturation." -msgstr "Epäaktiivisen työtilan saturaatio" +msgstr "Epäaktiivisen työtilan värikylläisyys." msgid "Mipmaps" msgstr "Mipmapit" @@ -1334,9 +1068,6 @@ msgid "Previous viewport" msgstr "Edellinen näkymä" -msgid "Reflection" -msgstr "Heijastus" - msgid "Reflection Scale" msgstr "Heijastusasteikko" @@ -1388,7 +1119,7 @@ msgstr "" msgid "Extra WM Actions" -msgstr "" +msgstr "Ikkunanhallinan lisätoiminnot" msgid "Provides less commonly used WM actions" msgstr "" @@ -1437,6 +1168,10 @@ msgid "Center the mouse" msgstr "Keskitä hiiri" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Sovita kohdistin" + msgid "Enable focus tracking" msgstr "Ota kohdistusseuranta käyttöön" @@ -1491,19 +1226,12 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "Piilottaa alkuperäisen hiiren osoittimen zoomauksen aikana" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Hiiren paikan tarkistusväli millisekunneissa. Pienennä tätä vähentääksesi " -"pätkimistä." +msgid "Minimum zoom factor" +msgstr "Pienin zoomauskerroin" msgid "Mouse Behaviour" msgstr "Hiiren käytös" -msgid "Mouse Poll Interval" -msgstr "Hiiren seurantatiheys" - msgid "Mouse Restrain Margin" msgstr "" @@ -1586,12 +1314,21 @@ msgid "Speed" msgstr "Nopeus" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Sovita kohdistin" + msgid "Sync Mouse" msgstr "Synkronoi hiiri" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "Hiiren rajoitusmarginaalin leveys" @@ -1607,9 +1344,22 @@ msgid "Use linear filter when zoomed in" msgstr "Käytä tasasuodatusta zoomattaessa sisään" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Zoomausalueen liike" +msgid "Zoom Box" +msgstr "Zoomauslaatikko" + msgid "Zoom In" msgstr "Lähennä" @@ -1637,6 +1387,9 @@ msgid "Zoom factor" msgstr "Suurennuskerroin" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "Lähennä/loitonna tällä kertoimella. Suurempi arvo zoomaa nopeammin." @@ -1671,13 +1424,13 @@ msgstr "Häivytysaika" msgid "Fade time (in ms)" -msgstr "" +msgstr "Häivytysaika (ms)" msgid "Fade to Desktop" -msgstr "" +msgstr "Työpöydälle häivytys" msgid "Windows that should be faded to desktop" -msgstr "" +msgstr "Ikkunat jotka häivytetään työpöydälle" msgid "Alter window opacity based on color." msgstr "" @@ -1691,6 +1444,13 @@ msgid "Toggle window fake ARGB." msgstr "" +#, fuzzy +msgid "Add Particle" +msgstr "Partikkelin elinikä" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "" @@ -1706,6 +1466,35 @@ msgid "Clear (key)" msgstr "Tyhjennä (näppäin)" +msgid "Fire Particle Color" +msgstr "Tulipartikkelin väri" + +msgid "Fire Particle Life" +msgstr "Tulipartikkelin elinikä" + +msgid "Fire Particle Size" +msgstr "Tulipartikkelin koko" + +msgid "Fire Particle Slowdown" +msgstr "Tulipartikkelin hidastuvuus" + +msgid "Fire particle color." +msgstr "Tulipartikkelin väri." + +msgid "Fire particle life." +msgstr "Tulipartikkelin elinikä." + +msgid "Fire particle size." +msgstr "Tulipartikkelin koko." + +msgid "Fire particle slowdown." +msgstr "Tulipartikkelin hidastuvuus." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Käytä satunnaisia värejä tulitehosteessa (tunnetaan myös nimellä mystinen " +"tuli: Mystical Fire)" + msgid "Initiate (button)" msgstr "Aloitus (painike)" @@ -1727,11 +1516,14 @@ msgid "Paint fire or other particles on the screen" msgstr "Piirrä tulta tai muita partikkeleita näytölle" +msgid "Randomly Colored Fire" +msgstr "Satunnainen väri tulelle" + msgid "Cube Gears" -msgstr "" +msgstr "Rattaat kuutiossa" msgid "Render gears inside of the transparent cube" -msgstr "" +msgstr "Piirtää rattaita läpinäkyvän kuution sisäpuolelle" msgid "Animation Options" msgstr "Animaation valinnat" @@ -1817,6 +1609,9 @@ msgid "Font Size" msgstr "Kirjasimen koko" +msgid "General" +msgstr "Yleiset" + msgid "Glass" msgstr "Lasi" @@ -1845,7 +1640,7 @@ msgstr "" msgid "Group and Tab Windows" -msgstr "" +msgstr "Ikkunoiden ryhmittely ja välilehdet" msgid "Group the windows after selection" msgstr "" @@ -2010,31 +1805,31 @@ msgstr "" msgid "Tab Group" -msgstr "" +msgstr "Tee ryhmästä välilehtiä" msgid "Tab Highlight Color" msgstr "" msgid "Tab Style" -msgstr "" +msgstr "Välilehtien tyyli" msgid "Tab bar visibility time after tab change" msgstr "" msgid "Tabbing" -msgstr "" +msgstr "Välilehtiin asettelu" msgid "Tabbing Speed" -msgstr "" +msgstr "Välilehtiin asettelun nopeus" msgid "Tabbing Timestep" -msgstr "" +msgstr "Välilehtiin asettelun aikaviive" msgid "Tabbing speed" -msgstr "" +msgstr "Välilehtiin asettelun nopeus" msgid "Tabbing timestep" -msgstr "" +msgstr "Välilehtiin asettelun aikaviive" msgid "The color of the window title in the tab bar" msgstr "" @@ -2096,7 +1891,7 @@ msgstr "" msgid "Thumb Size" -msgstr "" +msgstr "Pienoiskuvan koko" msgid "Time (in s) before the tab bar is shown after hovering the title bar" msgstr "" @@ -2169,13 +1964,11 @@ msgid "Login" msgstr "Kirjautuminen" -#, fuzzy msgid "Login Window Match" -msgstr "Ikkunan syvyys" +msgstr "Täsmäävä kirjautumisikkuna" -#, fuzzy msgid "Login Window match" -msgstr "Ikkunan syvyys" +msgstr "Täsmäävä kirjautumisikkuna" msgid "Login/Logout" msgstr "Kirjautuminen/uloskirjautuminen" @@ -2192,13 +1985,11 @@ msgid "Logout Window match" msgstr "" -#, fuzzy msgid "Window opacity." -msgstr "Ikkunan syvyys" +msgstr "Ikkunan läpikuultamattomuus." -#, fuzzy msgid "Border color" -msgstr "Säteen väri" +msgstr "Reunan väri" msgid "Border width" msgstr "Reunan leveys" @@ -2282,10 +2073,10 @@ msgstr "" msgid "Maximumize" -msgstr "" +msgstr "Ikkunoiden suurentaminen sovittaen" msgid "Maximumizes windows (resize them to fit the available screenspace)." -msgstr "" +msgstr "Suurentaa ikkunat sopimaan vapaana olevaan tilaan näytöllä" msgid "" "Treat sticky windows as non-existant when calculating space to use for the " @@ -2330,10 +2121,10 @@ msgstr "" msgid "Motion blur" -msgstr "" +msgstr "Liikesumennus" msgid "Motion blur effect" -msgstr "" +msgstr "Liikesumennustehoste" msgid "Texture Copy" msgstr "" @@ -2388,9 +2179,19 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Hiiren paikan tarkistusväli millisekunneissa. Pienennä tätä vähentääksesi " +"pätkimistä." + msgid "Misc" msgstr "Sekalaiset" +msgid "Mouse Poll Interval" +msgstr "Hiiren seurantatiheys" + msgid "Mouse position polling" msgstr "Hiiren sijainnin tarkkailu" @@ -2418,9 +2219,8 @@ msgid "Neg Windows" msgstr "" -#, fuzzy msgid "Negate Decorations" -msgstr "Suodata ikkunasomisteet" +msgstr "Poista somisteet" msgid "Negative" msgstr "Negatiivi" @@ -2456,7 +2256,7 @@ msgstr "Virhe" msgid "Error Notifications" -msgstr "" +msgstr "Virhehuomautukset" msgid "Fatal" msgstr "" @@ -2513,7 +2313,7 @@ msgstr "" msgid "Opacify" -msgstr "" +msgstr "Läpikuultamattomuus" msgid "Opacity Levels" msgstr "Läpinäkyvyysasteet" @@ -3076,15 +2876,17 @@ msgid "Windows that should be shown in ring" msgstr "" -#, fuzzy msgid "All windows" -msgstr "3D Ikkunat" +msgstr "Kaikki ikkunat" msgid "Background color of the window title" msgstr "Ikkunan nimen taustaväri" -msgid "Close Windows In Scale" -msgstr "" +msgid "Close Window" +msgstr "Sulje ikkuna" + +msgid "Close window while in scale mode" +msgstr "Sulje ikkuna skaalaustilassa oltaessa" msgid "Close windows while in scale mode" msgstr "" @@ -3092,9 +2894,18 @@ msgid "Color used for highlighting the hovered window" msgstr "" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Piirrä ikkunan korostus" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Ikkunan nimen fontin väri" @@ -3110,6 +2921,11 @@ msgid "Highlights the hovered window with the given color" msgstr "" +#, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "Tee ikkunat hyvin näkyviksi siirtämällä hiiri niiden päälle" + msgid "No display" msgstr "" @@ -3119,8 +2935,15 @@ msgid "Organic - EXPERIMENTAL" msgstr "Orgaaninen - KOKEELLINEN" +msgid "Pull Window" +msgstr "Vedä ikkuna esiin" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Siirrä ikkuna ylempään työtilaan" + msgid "Scale Addons" -msgstr "" +msgstr "Skaalauksen lisäosat" msgid "Selects the mode to layout the windows in scale mode" msgstr "" @@ -3143,20 +2966,22 @@ msgid "Window Layout Mode" msgstr "" +msgid "Window Pull" +msgstr "Ikkunan esiinveto" + msgid "Window Title" msgstr "Ikkunan otsikko" -#, fuzzy msgid "Window Title Display" -msgstr "Ikkunatyypit" +msgstr "Ikkunan otsikon näyttö" msgid "Window title display in scale mode" msgstr "" -msgid "Zoom Windows In Scale" -msgstr "" +msgid "Zoom Window" +msgstr "Ikkunan lähennys" -msgid "Zoom windows while in scale mode" +msgid "Zoom window while in scale mode" msgstr "" msgid "Filter Case Insensitive" @@ -3166,7 +2991,7 @@ msgstr "" msgid "Scale Window Title Filter" -msgstr "" +msgstr "Ikkunan skaalauksen otsikkosuodatin" msgid "Show Filter Text" msgstr "" @@ -3204,7 +3029,7 @@ msgstr "" msgid "Put screenshot images in this directory" -msgstr "" +msgstr "Laita kuvakaappauskuvat tähän hakemistoon" msgid "ScreenCast plugin" msgstr "" @@ -3260,10 +3085,10 @@ msgstr "" msgid "Scale interval" -msgstr "" +msgstr "Skaalauksen aikaväli" msgid "Shelf" -msgstr "" +msgstr "Hylly" msgid "" "The number to divide the scale factor by or multiply it with when " @@ -3368,22 +3193,22 @@ msgstr "" msgid "Shift Switcher" -msgstr "" +msgstr "Selausvaihdin" msgid "Shift Switcher Plugin" -msgstr "" +msgstr "Selausvaihdinliitännäinen" msgid "Shift Windows" -msgstr "" +msgstr "Selaa ikkunoita" msgid "Shift animation speed" -msgstr "" +msgstr "Selausanimaation nopeus" msgid "Shift speed" -msgstr "" +msgstr "Selausnopeus" msgid "Shift timestep" -msgstr "" +msgstr "Selauksen aikaväli" msgid "Switcher mode" msgstr "Vaihtimen tila" @@ -3398,40 +3223,52 @@ msgstr "Sulje vaihdin." msgid "Windows that should be shown in the shift switcher" -msgstr "" +msgstr "Ikkunat jotka näytetään selausvaihtimessa" msgid "Access your desktop easily" -msgstr "" +msgstr "Helppo pääsy työpöydälle" msgid "Direction of window movement" msgstr "Ikkunan liikkeen suunta" +msgid "Down" +msgstr "Alas" + +msgid "Left" +msgstr "Vasen" + msgid "Left/Right" msgstr "Vasen/oikea" msgid "Movement Direction" msgstr "Liikkeen suunta" +msgid "Right" +msgstr "Oikea" + msgid "Show desktop" msgstr "Näytä työpöytä" msgid "To Corners" -msgstr "" +msgstr "Kulmiin" + +msgid "Up" +msgstr "Ylös" msgid "Up/Down" msgstr "Ylös/alas" msgid "Window Opacity" -msgstr "" +msgstr "Ikkunan läpikuultamattomuus" msgid "Window Part Size" msgstr "" msgid "Window movement speed" -msgstr "" +msgstr "Ikkunan liikkeen nopeus" msgid "Window movement timestep" -msgstr "" +msgstr "Ikkunan liikkeen aikaväli" msgid "Window opacity when showdesktop'd" msgstr "" @@ -3479,9 +3316,8 @@ msgid "Particle Life" msgstr "Partikkelin elinikä" -#, fuzzy msgid "Particle Options" -msgstr "Sekalaiset valinnat" +msgstr "Partikkelivalinnat" msgid "Particle Size" msgstr "Partikkelin koko" @@ -3507,16 +3343,14 @@ msgid "Ring radius" msgstr "" -#, fuzzy msgid "Rotation speed" -msgstr "Animaation nopeus" +msgstr "Kiertämisen nopeus" -#, fuzzy msgid "Rotation speed." -msgstr "Animaation nopeus" +msgstr "Kiertämisen nopeus." msgid "Show mouse" -msgstr "" +msgstr "Näytä hiiri" msgid "Toggle the mouse pointer trail." msgstr "" @@ -3567,7 +3401,7 @@ msgstr "" msgid "Snapping Windows" -msgstr "" +msgstr "Tarttuvat ikkunat" msgid "The distance until edge attraction takes place." msgstr "" @@ -3582,7 +3416,7 @@ msgstr "Ikkunan reunat" msgid "Bottom to Top" -msgstr "" +msgstr "Alhaalta ylös" msgid "" "Delay (in ms) between screen updates. Decreasing this value may make snow " @@ -3590,16 +3424,18 @@ msgstr "" msgid "Enable Blending" -msgstr "" +msgstr "Ota sekoittaminen käyttöön" msgid "Enable Textures" -msgstr "" +msgstr "Ota tekstuurit käyttöön" msgid "Enables alpha blending of snowflakes." -msgstr "" +msgstr "Ota lumihiutaleiden läpinäkyvyyssekoittaminen käyttöön." msgid "Enables textured snowflakes. If not selected, color gradients are used." msgstr "" +"Ottaa käyttöön teksturoidut lumihiutaleet. Muussa tapauksessa käytetään " +"väriliukuja." msgid "Flakes rotate if checked." msgstr "" @@ -3612,137 +3448,349 @@ "removed. Needed because of FOV." msgstr "" -msgid "Key Bindings" +msgid "Key Bindings" +msgstr "Pikanäppäimet" + +msgid "Left to Right" +msgstr "Vasemmalta oikealle" + +msgid "Number Of Snowflakes" +msgstr "Lumihiutaleiden määrä" + +msgid "Number of snowflakes" +msgstr "Lumihiutaleiden määrä" + +msgid "Right to Left" +msgstr "Oikealta vasemmalle" + +msgid "Rotate Flakes" +msgstr "Kierrä hiutaleita" + +msgid "Screen Boxing" +msgstr "" + +msgid "Screen Depth" +msgstr "Näytön syvyys" + +msgid "Select snow flake movement direction" +msgstr "Valitse lumihiutaleiden liikkeen suunta" + +msgid "Settings" +msgstr "Asetukset" + +msgid "Size Of Snowflakes" +msgstr "Lumihiutaleiden koko" + +msgid "Size of snowflakes" +msgstr "Lumihiutaleiden koko" + +msgid "Snow" +msgstr "Lumi" + +msgid "Snow Direction" +msgstr "Lumen suunta" + +msgid "Snow Over Windows" +msgstr "Lunta ikkunoiden päällä" + +msgid "Snow Speed" +msgstr "Lumen satamisen nopeus" + +msgid "Snow Textures" +msgstr "Lumen tekstuurit" + +msgid "Snow Toggle" +msgstr "Lumen käyttöönotto" + +msgid "Snow for Compiz" +msgstr "Compizin lumiliitännäinen" + +msgid "Snow is drawn above windows" +msgstr "Lunta piirretään ikkunoiden päälle" + +msgid "Snow textures" +msgstr "Lumitekstuurit" + +msgid "Snow toggle key" +msgstr "Lumen käyttöönoton näppäin" + +msgid "Speed of falling snow" +msgstr "Satavan lumen nopeus" + +msgid "Textures" +msgstr "Tekstuurit" + +msgid "Top to Bottom" +msgstr "Ylhäältä alas" + +msgid "Update Delay" +msgstr "Päivityksen viive" + +msgid "A simple splash plugin" +msgstr "" + +msgid "Background File" +msgstr "Taustakuvan tiedosto" + +msgid "Background brightness." +msgstr "Taustakuvan kirkkaus" + +msgid "Background image File." +msgstr "Taustakuvan kuvatiedosto." + +msgid "Background saturation." +msgstr "Taustakuvan värikylläisyys." + +msgid "Display In/Out Time." +msgstr "" + +msgid "Display Time" +msgstr "" + +msgid "Images" +msgstr "Kuvat" + +msgid "Initiate Splash" +msgstr "" + +msgid "Logo File" +msgstr "Logotiedosto" + +msgid "Logo image File." +msgstr "Logokuvatiedosto." + +msgid "Show on first start" +msgstr "" + +msgid "Show splash on first start." +msgstr "" + +msgid "Splash" +msgstr "Käynnistyskuva" + +msgid "Start Splash." +msgstr "" + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "Läpinäkyvyys prosentteina epäaktiivisille ikkunoille renkaassa" + +msgid "Behavior" +msgstr "Toiminta" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Tummenna taustakuva partikkelien alla" + +msgid "On Thumbnail" +msgstr "Pienoiskuvan päällä" + +msgid "Rotate inactive windows" +msgstr "Kierrä inaktiivisia ikkunoita" + +msgid "Should not selected windows be rotated" +msgstr "" + +msgid "Stack Window Switcher" +msgstr "Pinoikkunavaihdin" + +msgid "Tilt angle of the background." +msgstr "Taustakuvan kallistuskulma." + +msgid "Windows" +msgstr "Ikkunat" + +msgid "Windows that should be shown in the switcher" +msgstr "Ikkunat, jotka näytetään vaihtimessa" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +msgid "Amount of brightness in percent" msgstr "" -msgid "Left to Right" +msgid "Amount of opacity in percent" msgstr "" -msgid "Number Of Snowflakes" +msgid "Amount of saturation in percent" msgstr "" -msgid "Number of snowflakes" +msgid "Auto Change Viewport" msgstr "" -msgid "Right to Left" +msgid "Bring Selected To Front" +msgstr "Tuo valitut eteen" + +msgid "Centered" +msgstr "Keskitetty" + +msgid "Change to the viewport of the selected window while switching" msgstr "" -msgid "Rotate Flakes" +msgid "Color of highlight rectangle" msgstr "" -msgid "Screen Boxing" +msgid "Color of highlight rectangle border" msgstr "" -msgid "Screen Depth" +msgid "Color of inlay in highlight rectangle border" msgstr "" -msgid "Select snow flake movement direction" +msgid "Generate mipmaps when possible for higher quality scaling" msgstr "" -msgid "Settings" -msgstr "Asetukset" +msgid "Highlight Border Color" +msgstr "Korostuksen reunan väri" -msgid "Size Of Snowflakes" -msgstr "" +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Korostuksen väri" -msgid "Size of snowflakes" -msgstr "" +msgid "Highlight Mode" +msgstr "Korostustapa" -msgid "Snow" -msgstr "" +msgid "Icon" +msgstr "Kuvake" -msgid "Snow Direction" -msgstr "" +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Ikkunan korostus" -msgid "Snow Over Windows" -msgstr "" +#, fuzzy +msgid "Mipmap" +msgstr "Mipmapit" -msgid "Snow Speed" -msgstr "" +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Näytä valitun ikkunan otsikko." -msgid "Snow Textures" -msgstr "" +msgid "Next Panel" +msgstr "Seuraava paneeli" -msgid "Snow Toggle" -msgstr "" +msgid "Next window" +msgstr "Seuraava ikkuna" -msgid "Snow for Compiz" -msgstr "" +msgid "Next window (All windows)" +msgstr "Seuraava ikkuna (kaikki ikkunat)" -msgid "Snow is drawn above windows" -msgstr "" +msgid "Next window (Group)" +msgstr "Seuraava ikkuna (ryhmä)" -msgid "Snow textures" -msgstr "" +msgid "Next window (No popup)" +msgstr "Seuraava ikkuna (ei ponnahdusikkunaa)" -msgid "Snow toggle key" +msgid "Original Window Position" msgstr "" -msgid "Speed of falling snow" -msgstr "" +msgid "Popup Window Delay" +msgstr "Ponnahdusikkunan viive" -msgid "Textures" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Näytä vaihdin ja valitse seuraava ikkuna." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "Näytä vaihdin ja valitse seuraava ikkuna nykyisestä ohjelmasta." + +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "Näytä vaihdin ja valitse seuraava ikkuna kaikista ikkunoista." + +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Näytä vaihdin ja valitse edellinen ikkuna." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "Näytä vaihdin ja valitse edellinen ikkuna nykyisestä ohjelmasta." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "Näytä vaihdin ja valitse edellinen ikkuna kaikista ikkunoista." + +msgid "Prev Panel" +msgstr "Edellinen paneeli" + +msgid "Prev window" +msgstr "Edellinen ikkuna" + +msgid "Prev window (All windows)" +msgstr "Edellinen ikkuna (kaikki ikkunat)" + +msgid "Prev window (Group)" +msgstr "Edellinen ikkuna (ryhmä)" + +msgid "Prev window (No popup)" +msgstr "Edellinen ikkuna (ei ponnahdusikkunaa)" + +msgid "Row Alignment" msgstr "" -msgid "Top to Bottom" +msgid "Select next panel type window." msgstr "" -msgid "Update Delay" +msgid "Select next window without showing the popup window." msgstr "" -msgid "A simple splash plugin" +msgid "Select previous panel type window." msgstr "" -msgid "Background File" -msgstr "Taustakuvan tiedosto" +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background brightness." -msgstr "Taustakuvan kirkkaus" +msgid "Selected Window Highlight" +msgstr "Valitun ikkunan korostus" -msgid "Background image File." -msgstr "Taustakuvan kuvatiedosto." +msgid "Show Rectangle" +msgstr "Näytä suorakulmio" -msgid "Background saturation." -msgstr "Taustakuvan värikylläisyys." +msgid "Show icon next to thumbnail" +msgstr "Näytä kuvake pienoiskuvan vieressä" -msgid "Display In/Out Time." -msgstr "" +msgid "Show minimized windows" +msgstr "Näytä piennetyt ikkunat" -msgid "Display Time" -msgstr "" +msgid "Static Application Switcher" +msgstr "Staattinen sovelluksen vaihtaja" -msgid "Images" -msgstr "Kuvat" +msgid "Switcher speed" +msgstr "Vaihtimen nopeus" -msgid "Initiate Splash" -msgstr "" +msgid "Switcher timestep" +msgstr "Vaihtimen aikaviive" -msgid "Logo File" -msgstr "Logotiedosto" +msgid "Switcher windows" +msgstr "Vaihtimen ikkunat" -msgid "Logo image File." -msgstr "Logokuvatiedosto." +#, fuzzy +msgid "Taskbar Entry" +msgstr "Tehtäväpalkki" -msgid "Show on first start" +msgid "Time (in s) the popup window should be delayed before appearing" msgstr "" -msgid "Show splash on first start." +msgid "Where to draw highlight rectangle for minimized windows" msgstr "" -msgid "Splash" -msgstr "Käynnistyskuva" - -msgid "Start Splash." -msgstr "" +msgid "Windows that should be shown in switcher" +msgstr "Ikkunat, jotka näytetään vaihtimessa" msgid "Render text to texture" -msgstr "" +msgstr "Piirrä tekstiä tekstuuriin" msgid "Text" msgstr "Teksti" msgid "Enable Titles" -msgstr "" +msgstr "Ota käyttöön otsikot" msgid "Fade In/Out Duration" msgstr "" @@ -3772,7 +3820,7 @@ msgstr "" msgid "Show Delay" -msgstr "" +msgstr "Näytä viive" msgid "Show Window Title in Thumbnail." msgstr "" @@ -3808,10 +3856,10 @@ msgstr "" msgid "Window Previews" -msgstr "" +msgstr "Ikkunoiden esikatselut" msgid "Window thumbnails at the taskbar" -msgstr "" +msgstr "Pienoiskuvat ikkunoista tehtäväpalkissa" msgid "Window title" msgstr "Ikkunan otsikko" @@ -3823,7 +3871,7 @@ msgstr "" msgid "Animation Duration" -msgstr "" +msgstr "Animaation kesto" msgid "Cascade" msgstr "" @@ -4004,7 +4052,7 @@ msgstr "" msgid "Trailfocus" -msgstr "" +msgstr "Kohdistusjälki" msgid "Window to Start Fading" msgstr "" @@ -4046,10 +4094,10 @@ msgstr "Siirry vasemmalle" msgid "Move Next" -msgstr "" +msgstr "Siirry seuraavaan" msgid "Move Prev" -msgstr "" +msgstr "Siirry edelliseen" msgid "Move Right" msgstr "Siirry oikealle" @@ -4061,10 +4109,10 @@ msgstr "Siirrä alas" msgid "Move to the left" -msgstr "" +msgstr "Siirrä vasemmalle" msgid "Move to the next viewport" -msgstr "" +msgstr "Siirrä seuraavaan työtilaan" msgid "Move to the previous viewport" msgstr "Siirrä edelliseen työtilaan" @@ -4355,7 +4403,7 @@ msgstr "" msgid "Switch all" -msgstr "" +msgstr "Vaihda kaikki" msgid "Switch separately" msgstr "" @@ -4379,67 +4427,64 @@ msgstr "" msgid "Background fill type." -msgstr "" +msgstr "Taustakuvan täyttötapa." msgid "Backgrounds" -msgstr "" +msgstr "Taustakuvat" msgid "Center Tiled" -msgstr "" - -msgid "Centered" -msgstr "" +msgstr "Keskitetty vierekkäin" msgid "Color 1" -msgstr "" +msgstr "Väri 1" msgid "Color 2" -msgstr "" +msgstr "Väri 2" msgid "Draw the desktop wallpaper" -msgstr "" +msgstr "Piirrä työpöydän taustakuva" msgid "Fill or first gradient color." -msgstr "" +msgstr "Täyttö tai ensimmäinen väriliu'un väri" msgid "Fill type" -msgstr "" +msgstr "Täyttötapa" msgid "Horizontal gradient" -msgstr "" +msgstr "Vaakasuuntainen väriliuku" msgid "Image" -msgstr "" +msgstr "Kuva" msgid "Image file." -msgstr "" +msgstr "Kuvatiedosto" msgid "Image position." -msgstr "" +msgstr "Kuvan sijainti." msgid "Position" -msgstr "" +msgstr "Sijainti" msgid "Scale and Crop" -msgstr "" +msgstr "Skaalaus ja rajaus" msgid "Scaled" -msgstr "" +msgstr "Sovitettu" msgid "Second gradient color." -msgstr "" +msgstr "Toinen väriliu'un väri." msgid "Solid fill" -msgstr "" +msgstr "Kiinteä täyttö" msgid "Tiled" -msgstr "" +msgstr "Vierekkäin" msgid "Vertical gradient" -msgstr "" +msgstr "Pystysuuntainen väriliuku" msgid "Wallpaper" -msgstr "" +msgstr "Taustakuva" msgid "Background Brightness" msgstr "Taustakuvan kirkkaus" @@ -4448,10 +4493,10 @@ msgstr "Taustakuvan värikylläisyys" msgid "Background in Widget Mode" -msgstr "" +msgstr "Taustakuva säädintilassa" msgid "Brightness of non-widget windows in widget modes." -msgstr "" +msgstr "Muiden kuin säädinikkunoiden kirkkaus säädintiloissa." msgid "End Widget Mode on Click" msgstr "" @@ -4481,13 +4526,13 @@ msgstr "" msgid "Widget Layer" -msgstr "" +msgstr "Säädintaso" msgid "Widget Windows" -msgstr "" +msgstr "Säädinikkunat" msgid "Windows that always should be treated as widgets" -msgstr "" +msgstr "Ikkunat joita tulisi aina käsitellä säätiminä" msgid "Above others windows" msgstr "Muiden ikkunoiden päällä" @@ -4511,13 +4556,21 @@ msgstr "Koko näytön ikkunat" msgid "Height values" -msgstr "" +msgstr "Korkeusarvot" msgid "Matches" msgstr "Täsmää" +#, fuzzy +msgid "Maximized" +msgstr "Ikkunoiden suurentaminen sovittaen" + +#, fuzzy +msgid "Maximized windows" +msgstr "Ikkunat, joita ei voi suurentaa" + msgid "No ARGB visuals" -msgstr "" +msgstr "Ei ARGB-visuaaleja" msgid "No focus" msgstr "Ei kohdistusta" @@ -4556,7 +4609,7 @@ msgstr "Aseta ikkunan säännöt" msgid "Size rules" -msgstr "" +msgstr "Kokosäännöt" msgid "Sized Windows" msgstr "" @@ -4574,7 +4627,7 @@ msgstr "Tahmaiset ikkunat" msgid "Width values" -msgstr "" +msgstr "Leveysarvot" msgid "Window Rules" msgstr "Ikkunan säännöt" @@ -4594,6 +4647,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Firefox-valikon korjaus" @@ -4636,6 +4692,9 @@ "viewports." msgstr "" +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" @@ -4660,6 +4719,308 @@ msgid "Workarounds" msgstr "Kiertokeinot" +#~ msgid "Airplane" +#~ msgstr "Lentokone" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Lentokoneen polun pituus" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Animaation aikaviive raskaille efekteille" + +#~ msgid "Automatic" +#~ msgstr "Automaattinen" + +#~ msgid "Beam" +#~ msgstr "Säde" + +#~ msgid "Beam Color" +#~ msgstr "Säteen väri" + +#~ msgid "Beam Life" +#~ msgstr "Säteen elinaika" + +#~ msgid "Beam Slowdown" +#~ msgstr "Säteen hidastus" + +#~ msgid "Beam Spacing" +#~ msgstr "Säteiden väli" + +#~ msgid "Beam Up" +#~ msgstr "Säde ylös" + +#~ msgid "Beam Width" +#~ msgstr "Säteen leveys" + +#~ msgid "Beam color." +#~ msgstr "Säteen väri." + +#~ msgid "Beam life." +#~ msgstr "Säteen elinaika." + +#~ msgid "Beam slowdown." +#~ msgstr "Säteen hidastus." + +#~ msgid "Beam width." +#~ msgstr "Säteen leveys." + +#~ msgid "Burn" +#~ msgstr "Polta" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Dominopalikoiden putoamissuunta" + +#~ msgid "Explode" +#~ msgstr "Räjähdys" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Dominopalikoiden putoamissuunta" + +#~ msgid "Fire" +#~ msgstr "Tuli" + +#~ msgid "Fire Smoke" +#~ msgstr "Tulen savu" + +#~ msgid "Fire constant speed" +#~ msgstr "Tulen vakionopeus" + +#~ msgid "Fire direction" +#~ msgstr "Tulen suunta" + +#~ msgid "Fire direction." +#~ msgstr "Tulen suunta." + +#~ msgid "Fire smoke." +#~ msgstr "Tulen savu." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Lennä tehtäväpalkkiin pienennettäessä" + +#~ msgid "Fold" +#~ msgstr "Laskostus" + +#~ msgid "Fold Direction" +#~ msgstr "Laskoksen suunta" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Laskosten avautumissuunta Razr-tehosteen osille." + +#~ msgid "Hexagonal" +#~ msgstr "Monikulmio" + +#~ msgid "In" +#~ msgstr "Sisällä" + +#~ msgid "In-out" +#~ msgstr "Sisään-ulos" + +#~ msgid "Leaf Spread" +#~ msgstr "Lehtien levittyneisyys" + +#~ msgid "Left-right" +#~ msgstr "Vasen-oikea" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Lentokoneen lentoradan pituus." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Aseta tulitehosteen kesto riippuvaiseksi ikkunan leveydestä." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Ikkunan palasien liikesuunnat" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Tulipartikkelien lukumäärä" + +#~ msgid "Number of fire particles." +#~ msgstr "Tulipartikkelien lukumäärä." + +#~ msgid "Out" +#~ msgstr "Ulkopuolella" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Rectangular" +#~ msgstr "Suorakulmainen" + +#~ msgid "Rotation Angle" +#~ msgstr "Kiertokulma" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Animoitujen ikkunanpalasten kiertokulma" + +#~ msgid "Skewer" +#~ msgstr "Vääristäjä" + +#~ msgid "Skewer Direction" +#~ msgstr "Vääristyksen suunta" + +#~ msgid "Spacing between beams." +#~ msgstr "Säteiden välimatka." + +#~ msgid "Tessellation Type" +#~ msgstr "Tesselaation tyyppi" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Tesselaation tyyppi räjähtäville ikkunan kappaleille." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Tesselaation tyyppi ikkunan kappaleille." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Vaativien (esim. tuli, säde) animaatiojaksojen väliaika (ms). Mitä " +#~ "suurempi arvo, sitä nykivämmiksi liikkeet tulevat." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Animoitu ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " +#~ "lukumäärä ikkunan korkeussuunnassa." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Animoitu ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " +#~ "lukumäärä ikkunan leveyssuunnassa." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Räjähtävä ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " +#~ "lukumäärä ikkunan korkeussuunnassa." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Räjähtävä ikkuna paloitellaan koordinaatistolla. Anna koordinaattien " +#~ "lukumäärä ikkunan leveyssuunnassa." + +#~ msgid "Thickness" +#~ msgstr "Paksuus" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Animoitujen monikulmioiden paksuus" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Räjähtävien monikulmioiden paksuus" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Animoitujen ikkunanpalasten paksuus (kuvapisteinä)" + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Räjähtävien ikkunanpalasten paksuus (kuvapisteinä)" + +#~ msgid "Up-down" +#~ msgstr "Ylös-alas" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Tuleeko ikkunan lentää tehtäväpalkkiin kun se pienennetään " +#~ "lentokonetehosteella." + +#~ msgid "Window Grid Height" +#~ msgstr "Ikkunan koordinaatiston korkeus" + +#~ msgid "Window Grid Width" +#~ msgstr "Ikkunan koordinaatiston leveys" + +#~ msgid "Window folding direction." +#~ msgstr "Ikkunan laskostussuunta." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Ikkunan paksuus kuvapisteinä. Nollaa suuremmat arvot poistavat käytöstä " +#~ "varjot, sumennuksen ja heijasteet animaatiossa." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Vaakataitosten amplitudi (aallonkorkeus) suhteessa ikkunan leveyteen. " +#~ "Negatiiviset arvot taittavat ulospäin." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Kaarevien taitosten amplitudi (aallonkorkeus) suhteessa ikkunan " +#~ "leveyteen. Negatiiviset arvot taittavat ulospäin." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "Aallonkorkeus suhteessa ikkunan leveyteen." + +#~ msgid "Brightness Decrease" +#~ msgstr "Vähennä kirkkautta" + +#~ msgid "Brightness Increase" +#~ msgstr "Lisää kirkkautta" + +#~ msgid "Brightness Step" +#~ msgstr "Kirkkaussäädön porras" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Kirkkaus ja kylläisyys" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Kirkkauden ja värikylläisyyden säädöt" + +#~ msgid "Brightness settings" +#~ msgstr "Kirkkausasetukset" + +#~ msgid "Brightness values for windows" +#~ msgstr "Ikkunoiden kirkkausasetus" + +#~ msgid "Brightness window values" +#~ msgstr "Kirkkaus, ikkunan arvot" + +#~ msgid "Brightness windows" +#~ msgstr "Kirkkaus, ikkunat" + +#~ msgid "Saturation Decrease" +#~ msgstr "Vahennä kylläisyyttä" + +#~ msgid "Saturation Increase" +#~ msgstr "Lisää kylläisyyttä" + +#~ msgid "Saturation Step" +#~ msgstr "Kylläisyysporras" + +#~ msgid "Saturation settings" +#~ msgstr "Kylläisyysasetukset" + +#~ msgid "Saturation values for windows" +#~ msgstr "Kylläisyysarvot ikkunoille" + +#~ msgid "Saturation window values" +#~ msgstr "Kylläisyys, ikkunoiden arvot" + +#~ msgid "Saturation windows" +#~ msgstr "Kylläisyys, ikkunat" + +#~ msgid "Window specific" +#~ msgstr "Ikkunakohtainen" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Ikkunat joilla tulee olla eri peruskirkkaus" + #~ msgid "Animation Speed" #~ msgstr "Animaation nopeus" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/fr.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/fr.po --- compiz-fusion-plugins-unsupported-0.7.6/po/fr.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/fr.po 2008-09-17 14:29:33.000000000 +0100 @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: fr-compiz-fusion-plugins\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" -"PO-Revision-Date: 2008-03-18 21:11+0100\n" -"Last-Translator: Tristan RABLAT \n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" +"PO-Revision-Date: 2008-09-03 14:29+0200\n" +"Last-Translator: Florent \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" msgstr "Activer la 3D uniquement lors d'une rotation initiée avec la souris" @@ -118,6 +118,12 @@ msgid "Brightness of faded windows" msgstr "Luminosité des fenêtres ombrées" +msgid "Enable ADD Helper on start" +msgstr "Activer \"ADD Help\" au démarrage" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Active \"ADD Help\" au premier chargement" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -150,12 +156,6 @@ msgid "Window types that should be Opacified." msgstr "Types de fenêtres devant être opacifiées." -msgid "Airplane" -msgstr "Avion" - -msgid "Airplane Flying Path Length" -msgstr "Longueur du chemin de l'avion" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -163,20 +163,6 @@ "Tous les effets sont choisis aléatoirement, ignorant l'effet sélectionné. Si " "\"Aucun\" est sélectionné pour un événement, cet événement ne sera pas animé." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplitude (taille des vagues dans le pli) des Plis Horizontaux relative à la " -"largeur de la fenêtre. les valeurs négatives plient vers l'extérieur." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitude (taille des vagues dans le pli) des pli courbés relative à la " -"largeur de la fenêtre. les valeurs négatives plient vers l'extérieur." - msgid "Angle of window at the end of the animation." msgstr "Angle de la fenêtre à la fin de l'animation" @@ -186,9 +172,6 @@ msgid "Animation Time Step" msgstr "Délai d'animation" -msgid "Animation Time Step For Intense Effects" -msgstr "Délai d'animation pour les effets intenses" - msgid "Animation duration in milliseconds for close effect." msgstr "Durée de l'animation en millisecondes pour les effets de fermeture." @@ -207,51 +190,12 @@ msgid "Animations" msgstr "Animations" -msgid "Automatic" -msgstr "Automatique" - msgid "Away Angle" msgstr "Angle d'éloignement" msgid "Away Position" msgstr "Position d'éloignement" -msgid "Beam" -msgstr "Rayon" - -msgid "Beam Color" -msgstr "Couleur du Rayon" - -msgid "Beam Life" -msgstr "Durée de vie du Rayon" - -msgid "Beam Slowdown" -msgstr "Ralentissement du Rayon" - -msgid "Beam Spacing" -msgstr "Espacement du Rayon" - -msgid "Beam Up" -msgstr "Rayonnement" - -msgid "Beam Width" -msgstr "Largeur du Rayon" - -msgid "Beam color." -msgstr "Couleur du Rayon" - -msgid "Beam life." -msgstr "Durée de vie du Rayon" - -msgid "Beam slowdown." -msgstr "Ralentissement du Rayon" - -msgid "Beam width." -msgstr "Largeur du Rayon" - -msgid "Burn" -msgstr "Brûler" - msgid "Close Animation" msgstr "Animation de fermeture" @@ -276,8 +220,8 @@ msgid "Curved Fold" msgstr "Pli Courbé" -msgid "Curved Fold Amplitude" -msgstr "Amplitude du pli courbé" +msgid "Curved Fold Amplitude Multiplier" +msgstr "Facteur d'Amplitude du pli courbé" msgid "Dodge" msgstr "Évitement" @@ -285,15 +229,6 @@ msgid "Dodge Gap Ratio" msgstr "Amplitude d'évitement" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Direction de chute des pièces de domino" - -msgid "Down" -msgstr "Bas" - msgid "Dream" msgstr "Rêve" @@ -303,77 +238,24 @@ msgid "Effect Settings" msgstr "Configuration de l'effet" -msgid "Explode" -msgstr "Explosion" - msgid "Fade" msgstr "Fondre" -msgid "Falling direction for Domino pieces." -msgstr "Direction de chute des pièces de domino" - -msgid "Fire" -msgstr "Feu" - -msgid "Fire Particle Color" -msgstr "Couleur des particules de feu" - -msgid "Fire Particle Life" -msgstr "Longévité des particules de feu" - -msgid "Fire Particle Size" -msgstr "Taille des particules de feu" - -msgid "Fire Particle Slowdown" -msgstr "Ralentissement des particules de feu" - -msgid "Fire Smoke" -msgstr "Fumée" - -msgid "Fire constant speed" -msgstr "Vitesse de feu constante" - -msgid "Fire direction" -msgstr "Direction du feu" - -msgid "Fire direction." -msgstr "Direction du feu" - -msgid "Fire particle color." -msgstr "Couleur des particules de feu." - -msgid "Fire particle life." -msgstr "Longévité des particules de feu." - -msgid "Fire particle size." -msgstr "Taille des particules de feu." - -msgid "Fire particle slowdown." -msgstr "Ralentissement des particules de feu" - -msgid "Fire smoke." -msgstr "Fumée" - msgid "Fixed window interior during the Rollup animation." msgstr "Intérieur de la fenêtre fixe pendant l'animation d'enroulement." -msgid "Fly to TaskBar on Minimize" -msgstr "Voler vers la barre de tâches à la Minimisation" - msgid "Focus Animation" msgstr "Animation de focus" msgid "Focus Effect" msgstr "Effet de focus" -msgid "Fold" -msgstr "Pliage" - -msgid "Fold Direction" -msgstr "Direction de pliage" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Direction d'ouverture du pli pour les pièces dans l'effet Razr" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" +"L'amplitude (taille) de pli est multiplié par ce nombre. Des valeurs " +"négatives plient vers l'extérieur." msgid "Glide 1" msgstr "Glissement 1" @@ -381,17 +263,11 @@ msgid "Glide 2" msgstr "Glissement 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Feu Mystique (Utiliser des couleurs aléatoires pour l'effet de feu)" - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Plis Horizontaux" -msgid "Horizontal Folds Amplitude" -msgstr "Amplitude des plis horizontaux" +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "Facteur d'Amplitude des plis horizontaux" msgid "How spring-like the Sidekick animation should be." msgstr "Élasticité de l'animation Renversement" @@ -399,24 +275,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Élasticité de l'animation du Zoom" -msgid "In" -msgstr "Entrée" - -msgid "In-out" -msgstr "Entrée-Sortie" - -msgid "Leaf Spread" -msgstr "Envergure de la feuille" - -msgid "Left" -msgstr "Gauche" - -msgid "Left-right" -msgstr "Gauche-Droite" - -msgid "Length of airplane's flying path." -msgstr "Longueur de l'itinéraire de vol de l'avion" - msgid "Magic Lamp" msgstr "Lampe Magique" @@ -438,10 +296,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Fin du mouvement d'Ouverture/Fermeture de la Lampe Magique" -msgid "Make fire effect duration be dependent on window height." -msgstr "" -"Rendre la durée de l'effet de feu dépendante de la hauteur de la fenêtre." - msgid "Minimize Animation" msgstr "Animation de Minimisation" @@ -451,21 +305,12 @@ msgid "Minimize/Unminimize Only" msgstr "Minimiser/déminimiser seulement" -msgid "Movement direction(s) for window pieces." -msgstr "Direction du mouvement des morceaux de fenêtre" - msgid "None" msgstr "Aucun" -msgid "Number Of Fire Particles" -msgstr "Nombre de particules de feu" - msgid "Number of Horizontal Folds" msgstr "Nombre de plis horizontaux" -msgid "Number of fire particles." -msgstr "Nombre de particules de feu" - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "Nombre de rotations pour le Renversement (plus ou moins 10% d'aléa)." @@ -498,18 +343,15 @@ msgid "Options" msgstr "Options" -msgid "Out" -msgstr "Sortie" - msgid "Pool" msgstr "Sélection" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Sélection d'effets à utiliser si l'effet aléatoire est sélectionné. Appuyez " -"sur Restaurer pour remettre la liste complète." +"sur Restaurer pour utiliser tous les effets." msgid "Random" msgstr "Aléatoire" @@ -520,36 +362,15 @@ msgid "Random Effects" msgstr "Effets Aléatoires" -msgid "Randomly Colored Fire" -msgstr "Feu multicolore" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "Durée entre le début de l'évitement et le focus." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Direction d'ouverture du pli Razr" - -msgid "Rectangular" -msgstr "Rectangulaire" - -msgid "Right" -msgstr "Droite" - msgid "Roll Up" msgstr "Enrouler" msgid "Rollup Fixed Interior" msgstr "Intérieur de l'Enroulement fixe" -msgid "Rotation Angle" -msgstr "Angle de rotation" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Angle de rotation des morceaux de fenêtre animés (en degrés)." - msgid "Shade Animation" msgstr "Animation d'ombrage" @@ -565,15 +386,6 @@ msgid "Sidekick Springiness" msgstr "Élasticité du Renversement" -msgid "Skewer" -msgstr "Cisaillement" - -msgid "Skewer Direction" -msgstr "Direction de Cisaillement" - -msgid "Spacing between beams." -msgstr "Espace entre les bandes." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -587,15 +399,6 @@ "Largeur du début de l'effet d'ouverture et largeur de fin de l'effet de " "fermeture pour le Vide." -msgid "Tessellation Type" -msgstr "Type de Pavage (Tesselation)" - -msgid "Tessellation type for exploding window pieces." -msgstr "Type de pavage pour exploser les morceaux de fenêtres." - -msgid "Tessellation type for window pieces." -msgstr "Type de pavage pour les morceaux de fenêtres." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -603,29 +406,6 @@ "Durée en millisecondes entre chaque rendu de l'animation. Plus ce nombre est " "grand, plus les mouvements seront saccadés." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Durée en millisecondes entre chaque rendu des animations intenses (Ex.: " -"Brûler, Rayon). Plus ce nombre est grand, plus les mouvements seront " -"saccadés." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"La fenêtre animée sera découpée en pièces selon une grille. Spécifie le " -"nombre de cellules de la grille dans la hauteur de la fenêtre." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"La fenêtre animée sera découpée en pièces selon une grille. Spécifie le " -"nombre de cellules de la grille dans la largeur de la fenêtre." - msgid "The animation effect shown when closing a window." msgstr "L'effet animé à la fermeture d'une fenêtre." @@ -641,20 +421,6 @@ msgid "The animation effect shown when shading a window." msgstr "L'effet animé quand une fenêtre est ombrée." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"La fenêtre explosant sera découpée en morceaux selon une grille. Spécifie le " -"nombre de cellules de la grille dans la hauteur de la fenêtre." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"La fenêtre explosant sera découpée en morceaux selon une grille. Spécifie le " -"nombre de cellules de la grille dans la largeur de la fenêtre." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "L'amplitude maximale (taille des vagues) de la Lampe Magique." @@ -668,38 +434,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "Le nombre de plis horizontaux dans l'animation Pli Horizontal." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" -"L'amplitude de la vague (taille des vagues) relativement à la hauteur de la " -"fenêtre" - msgid "The width of the wave relative to the window height." msgstr "La largeur de la vague relativement à la hauteur de la fenêtre" msgid "The windows that will be animated." msgstr "Types de fenêtres qui seront animées" -msgid "Thickness" -msgstr "Épaisseur" - -msgid "Thickness of Animated Polygons" -msgstr "Épaisseur des Polygones Animés" - -msgid "Thickness of Exploding Polygons" -msgstr "Épaisseur des Polygones Explosant" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Épaisseur des morceaux de fenêtre animés (en pixels)" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Épaisseur des morceaux de fenêtre explosant (en pixels)" - -msgid "Up" -msgstr "Haut" - -msgid "Up-down" -msgstr "Haut-Bas" - msgid "Use various animations as window effects" msgstr "Utiliser des animation variées comme effets de fenêtre" @@ -738,17 +478,19 @@ msgid "Wave" msgstr "Vague" -msgid "Wave Amplitude" -msgstr "Amplitude de la Vague" +msgid "Wave Amplitude Multiplier" +msgstr "Facteur Amplitude de la Vague" msgid "Wave Width" msgstr "Largeur des Vagues" +# Des problèmes de traduction au niveau de "Fold outward" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"La fenêtre vole vers la barre de tâche quand elle est minimisée avec l'effet " -"Avion." +"L'amplitude (taille) de la vague est multipliée par ce nombre. Les valeurs " +"négatives renvoient vers l'extérieur." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -782,28 +524,12 @@ "La fenêtre zoome sur la barre de tâche quand elle est minimisée avec l'effet " "Plis Horizontaux." -msgid "Window Grid Height" -msgstr "Hauteur de la grille de la fenêtre" - -msgid "Window Grid Width" -msgstr "Largeur de la grille de la fenêtre" - -msgid "Window folding direction." -msgstr "Direction de pliage de la fenêtre" - msgid "Window that should animate with this effect when focused." msgstr "Fenêtres devant être animées avec cet effet quand elles ont le focus." msgid "Window that should animate with this effect when shaded." msgstr "Fenêtres devant être animées avec cet effet quand elles sont ombrées." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Épaisseur de la fenêtre en pixels. Une valeur plus grande que 0 désactivera " -"l'ombre, le flou, et la réflexion pendant l'animation." - msgid "Zoom" msgstr "Zoom" @@ -912,65 +638,12 @@ msgid "Y position" msgstr "Position verticale" -msgid "Brightness Decrease" -msgstr "Diminution de la Luminosité" - -msgid "Brightness Increase" -msgstr "Augmentation de la Luminosité" - -msgid "Brightness Step" -msgstr "Intervale de luminosité" - -msgid "Brightness and Saturation" -msgstr "Luminosité et Saturation" - -msgid "Brightness and Saturation adjustments" -msgstr "Ajustements de la luminosité et de la saturation" - -msgid "Brightness settings" -msgstr "Réglages de la luminosité" - -msgid "Brightness values for windows" -msgstr "Valeurs de luminosité pour les fenêtres" - -msgid "Brightness window values" -msgstr "Valeurs de luminosité pour la fenêtre" - -msgid "Brightness windows" -msgstr "Luminosité des fenêtres" - -msgid "General" -msgstr "Général" - -msgid "Saturation Decrease" -msgstr "Diminution de la Saturation" - -msgid "Saturation Increase" -msgstr "Augmentation de la saturation" - -msgid "Saturation Step" -msgstr "Intervale de saturation" - -msgid "Saturation settings" -msgstr "Réglages de la saturation" - -msgid "Saturation values for windows" -msgstr "Valeurs de saturation pour les fenêtres" - -msgid "Saturation window values" -msgstr "Valeurs de la saturation pour la fenêtre" - -msgid "Saturation windows" -msgstr "Saturation des fenêtres" +msgid "Bicubic filter" +msgstr "Filtre Bicubique" -msgid "Window specific" -msgstr "Spécifique à la fenêtre" - -msgid "Windows that should have a different brightness by default" -msgstr "Fenêtres devant avoir une luminosité différente par défaut" - -msgid "Windows that should have a different saturation by default" -msgstr "Fenêtres devant avoir une saturation différente par défaut" +# Bicubique n'est pas correct mais il n'y a pas vraiment de correspondance. +msgid "Bicubic texture filtering" +msgstr "Filtrage de texture Bicubique" msgid "Color filter" msgstr "Filtre de Couleur" @@ -1066,6 +739,9 @@ msgstr "" "Commande de lancement du gestionnaire de fenêtres. NE PAS ENTRER COMPIZ!" +msgid "Above" +msgstr "Au-dessus" + msgid "Adjust bottom face image to rotation" msgstr "Ajuster l'image de la face inférieure à la rotation" @@ -1087,6 +763,18 @@ msgid "Appearance" msgstr "Apparence" +msgid "Aspect ratio" +msgstr "Ratio d'aspect" + +msgid "Aspect ratio of the deformed cube" +msgstr "Ratio d'aspect du cube déformé" + +msgid "Auto zoom" +msgstr "Zoom automatique" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zoom automatique seulement lors d'une rotation avec la souris" + msgid "Behaviour" msgstr "Comportement" @@ -1122,18 +810,54 @@ msgid "Color of bottom face of the cube" msgstr "Couleur de la face inférieure du cube." +msgid "Color of the ground (far)." +msgstr "Couleur de la surface (loin)." + +msgid "Color of the ground (near)." +msgstr "Couleur de la surface (près)." + msgid "Color of top face of the cube" msgstr "Couleur de la face supérieure du cube." +msgid "Compiz cube reflection and deformation" +msgstr "Réflexion et déformation du cube de Compiz" + msgid "Cube Bottom Color" msgstr "Couleur du dessous du Cube" -msgid "Cube Caps" -msgstr "Dessus/Dessous du Cube" +msgid "Cube Reflection and Deformation" +msgstr "Réflexion et déformation du cube" msgid "Cube Top Color" msgstr "Couleur du dessus du Cube." +msgid "Cube caps" +msgstr "Dessus/Dessous du Cube" + +msgid "Cylinder" +msgstr "Cylindre" + +msgid "Deform caps" +msgstr "Déformation du coté inférieur et supérieur" + +msgid "Deform cube caps." +msgstr "Déformation du cube." + +msgid "Deform only on mouse rotate" +msgstr "Déformation uniquement lors d'une rotation avec la souris" + +msgid "Deformation" +msgstr "Déformation" + +msgid "Deformation in unfold cube mode." +msgstr "Déformation en mode dépliage du cube." + +msgid "Deformation mode." +msgstr "Mode de déformation." + +msgid "Distance" +msgstr "Distance" + msgid "Draw bottom face" msgstr "Dessiner la face inférieure" @@ -1146,12 +870,39 @@ msgid "Draw top face of the cube" msgstr "Dessiner la face supérieure du cube" +msgid "Enabled" +msgstr "Activé" + +msgid "Give cube a reflective ground." +msgstr "Donner un reflet au cube." + msgid "Go back to previous image for bottom face of the cube" msgstr "Revenir à l'image précédente pour la face inférieure du cube" msgid "Go back to previous image for top face of the cube" msgstr "Revenir à l'image précédente pour la face supérieure du cube" +msgid "Ground color(far)" +msgstr "Couleur de la surface (loin)" + +msgid "Ground color(near)" +msgstr "Couleur de la surface (près)" + +# "cube cylindre" n'existant pas en Français, on suppose que la déformation est cylindrique et concerne le cube. +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" +"Initialise le déformation cylindrique du cube seulement si la rotation est " +"dirigée par la souris." + +msgid "Intensity" +msgstr "Intensité" + +msgid "Jumpy" +msgstr "Sautillante" + +msgid "Jumpy reflection" +msgstr "Réflexion sautillante" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1163,6 +914,19 @@ "Liste de fichiers PNG et SVG devant être dessinés sur la face supérieure du " "cube" +# Fond n'est pas une bonne adaptation de bottom +msgid "Maintain bottom aspect ratio" +msgstr "Maintenir le ratio d'aspect du fond" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "Maintenir le ratio d'aspect de l'image du fond." + +msgid "Maintain top aspect ratio" +msgstr "Maintenir le ratio d'aspect du dessus" + +msgid "Maintain top cap image aspect ratio." +msgstr "Maintenir le ratio d'aspect de l'image supérieure." + msgid "Next bottom image" msgstr "Image inférieure suivante" @@ -1175,8 +939,23 @@ msgid "Prev top image" msgstr "Image supérieure précédente" -msgid "Render images on top and bottom of the cube" -msgstr "Dessiner les images au dessus et en dessous du cube" +msgid "Reflection" +msgstr "Réflexion" + +msgid "Reflection ground size" +msgstr "Taille de la surface de réflexion" + +msgid "Reflection ground size." +msgstr "Taille de la surface de réflexion." + +msgid "Reflection intensity" +msgstr "Intensité de la réflexion" + +msgid "Reflection mode" +msgstr "Mode de réflexion" + +msgid "Reflection mode." +msgstr "Mode de réflexion." msgid "Scale bottom image" msgstr "Mettre l'image inférieure à l'échelle" @@ -1190,71 +969,36 @@ msgid "Scale top image" msgstr "Mettre l'image supérieure à l'échelle" +# Remplacement de "vitesse" qui n'a aucun rapport. +msgid "Sphere" +msgstr "Sphère" + msgid "Top image files" msgstr "Fichiers image du dessus" -msgid "Above" -msgstr "Au-dessus" +msgid "Unfold cube deformation" +msgstr "Déplié la déformation du cube" -msgid "Auto zoom" -msgstr "Zoom automatique" +msgid "Zoom out automatically only on mouse rotate." +msgstr "" +"Dézoomer automatiquement lors d'une rotation avec la souris uniquement." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zoom automatique seulement lors d'une rotation avec la souris" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "" +"Dézoomer automatiquement pour que la taille du cube soit adaptée à l'écran" -msgid "Color of the ground (far)." -msgstr "Couleur de la surface (loin)." +msgid "Cube Caps" +msgstr "Dessus/Dessous du Cube" -msgid "Color of the ground (near)." -msgstr "Couleur de la surface (près)." +msgid "Render images on top and bottom of the cube" +msgstr "Dessiner les images au dessus et en dessous du cube" msgid "Compiz cube reflection" -msgstr "Réflexion du cube de Compiz" +msgstr "Réflexion du Cube de Compiz" msgid "Cube Reflection" msgstr "Réflexion du Cube" -msgid "Distance" -msgstr "Distance" - -msgid "Ground color(far)" -msgstr "Couleur de la surface (loin)" - -msgid "Ground color(near)" -msgstr "Couleur de la surface (près)" - -msgid "Intensity" -msgstr "Intensité" - -msgid "Jumpy" -msgstr "Sautillante" - -msgid "Jumpy reflection" -msgstr "Réflexion sautillante" - -msgid "Reflection ground size" -msgstr "Taille de la surface de réflexion" - -msgid "Reflection ground size." -msgstr "Taille de la surface de réflexion." - -msgid "Reflection intensity" -msgstr "Intensité de la réflexion" - -msgid "Reflection mode" -msgstr "Mode de réflexion" - -msgid "Reflection mode." -msgstr "Mode de réflexion." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "" -"Dézoomer automatiquement lors d'une rotation avec la souris uniquement." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "" -"Dézoomer automatiquement pour que la taille du cube soit adaptée à l'écran" - msgid "Animation used when switching to expo mode" msgstr "Animation utilisée lors du passage au mode Exposé" @@ -1277,9 +1021,6 @@ msgid "Curve strength" msgstr "Courbure" -msgid "Deformation" -msgstr "Déformation" - msgid "Deformation of the expo wall" msgstr "Déformation du chemin de l'Éxposé" @@ -1370,9 +1111,6 @@ msgid "Previous viewport" msgstr "Bureau précédent" -msgid "Reflection" -msgstr "Réflexion" - msgid "Reflection Scale" msgstr "Echelle de Réflexion" @@ -1413,18 +1151,18 @@ msgid "Zoom time" msgstr "Durée de Zoom" -#, fuzzy msgid "Activate Demanding Attention Window" -msgstr "Active une fenêtre donnée" +msgstr "Activer une fenêtre de \"Demande d'attention\"" msgid "Activate Window" msgstr "Activer la fenêtre" msgid "Activate a given window" -msgstr "Active une fenêtre donnée" +msgstr "Activer une fenêtre donnée" msgid "Activate next window which has the \"demands attention\" flag set." msgstr "" +"Activer la prochaine fenêtre qui possède le drapeau \"Demande d'attention\"." msgid "Extra WM Actions" msgstr "Actions supplémentaires du Gestionnaire de Fenêtres" @@ -1436,7 +1174,7 @@ msgstr "Garder toujours au dessus" msgid "Toggle Fullscreen" -msgstr "Activer le Plein Écran" +msgstr "Basculer en Plein Écran" msgid "Toggle Redirect" msgstr "Activer la redirection" @@ -1482,6 +1220,10 @@ msgid "Center the mouse" msgstr "Centrer le pointeur" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Mettre le pointeur à l'échelle" + msgid "Enable focus tracking" msgstr "Activer le suivi du focus" @@ -1546,19 +1288,12 @@ "Cache le pointeur d'origine de la souris lors du zoom et lors de la mise à " "l'échelle du pointeur" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Intervalle de relevé de la position de la souris, en millisecondes. Réduisez " -"cette valeur pour réduire le comportement saccadé." +msgid "Minimum zoom factor" +msgstr "Facteur minimum de zoom" msgid "Mouse Behaviour" msgstr "Comportement du pointeur" -msgid "Mouse Poll Interval" -msgstr "Intervalle de relevé de position de la souris" - msgid "Mouse Restrain Margin" msgstr "Marge de restriction du pointeur" @@ -1645,12 +1380,23 @@ msgid "Speed" msgstr "Vitesse" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Mettre le pointeur à l'échelle" + msgid "Sync Mouse" msgstr "Souris synchronisée" msgid "Target Focused Window on Specific level" msgstr "Cible la fenêtre ayant le focus à un niveau spécifique" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" +"Le facteur minimum autorisé de zoom. Une valeur de 0.5 équivaut à un Zoom " +"x2, une valeur de 0.25 équivaut à un Zoom x4." + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "Taille de la marge à ajouter en essayant de restraindre la souris." @@ -1668,9 +1414,22 @@ msgid "Use linear filter when zoomed in" msgstr "Utiliser un filtre linéaire lors du zoom" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Mouvement de la zone de zoom" +msgid "Zoom Box" +msgstr "Boîte de Zoom" + msgid "Zoom In" msgstr "Zoomer" @@ -1698,6 +1457,9 @@ msgid "Zoom factor" msgstr "Facteur de zoom" +msgid "Zoom in on a boxed area" +msgstr "Zoom sur une zone" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Zoomer/dézoomer avec ce facteur. Une plus grande valeur signifie un zoom " @@ -1755,6 +1517,14 @@ msgid "Toggle window fake ARGB." msgstr "Basculer la fenêtre en faux ARGB." +msgid "Add Particle" +msgstr "Ajouter des particules" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" +"Ajoute une particule de feu à la position (x,y), où x et y sont de type " +"\"float\"" + msgid "Background brightness" msgstr "Luminosité du fond" @@ -1770,6 +1540,33 @@ msgid "Clear (key)" msgstr "Effacer (touche)" +msgid "Fire Particle Color" +msgstr "Couleur des particules de feu" + +msgid "Fire Particle Life" +msgstr "Longévité des particules de feu" + +msgid "Fire Particle Size" +msgstr "Taille des particules de feu" + +msgid "Fire Particle Slowdown" +msgstr "Ralentissement des particules de feu" + +msgid "Fire particle color." +msgstr "Couleur des particules de feu." + +msgid "Fire particle life." +msgstr "Longévité des particules de feu." + +msgid "Fire particle size." +msgstr "Taille des particules de feu." + +msgid "Fire particle slowdown." +msgstr "Ralentissement des particules de feu" + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Feu Mystique (Utiliser des couleurs aléatoires pour l'effet de feu)" + msgid "Initiate (button)" msgstr "Initialiser (bouton)" @@ -1791,6 +1588,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Peindre du feu ou d'autres particules sur l'écran" +msgid "Randomly Colored Fire" +msgstr "Feu multicolore" + msgid "Cube Gears" msgstr "Rouages dans le Cube" @@ -1885,6 +1685,9 @@ msgid "Font Size" msgstr "Taille de la police" +msgid "General" +msgstr "Général" + msgid "Glass" msgstr "Verre" @@ -2283,7 +2086,7 @@ msgstr "Effet à l'Identification/la Déconnection" msgid "Logout" -msgstr "Déconnection" +msgstr "Déconnexion" msgid "Logout Window Match" msgstr "Correspondance de la fenêtre Déconnection" @@ -2372,9 +2175,8 @@ msgid "Zoom factor for keyboard initiated magnifier." msgstr "Facteur de zoom pour le grossiseur lancé à partir du clavier." -#, fuzzy msgid "Ignore already overlapping windows in the calculations" -msgstr "Ignorer les fenêtres adhésives dans les calculs" +msgstr "Ignorer les fenêtres déjà recoupées dans les calculs" msgid "Ignore sticky windows in the calculations" msgstr "Ignorer les fenêtres adhésives dans les calculs" @@ -2394,13 +2196,13 @@ "Traiter les fenêtres adhésives comme non-existantes en calculant l'espace à " "utiliser pour Étaler la fenêtre." -#, fuzzy +# Traduction difficile. msgid "" "Treat windows that are already overlapping with the current window as non-" "existant when calculating space to use for the maximumize window." msgstr "" -"Traiter les fenêtres adhésives comme non-existantes en calculant l'espace à " -"utiliser pour Étaler la fenêtre." +"Traiter les fenêtres se chevauchant déjà avec la fenêtre courante comme " +"inexistantes quand l'espace de calcul est utilisé pour la fenêtre maximisée." msgid "" "Trigger a resize of the window currently focused so it fits as much of the " @@ -2497,9 +2299,19 @@ msgid "Start gesture" msgstr "Démarrer Mouvement" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Intervalle de relevé de la position de la souris, en millisecondes. Réduisez " +"cette valeur pour réduire le comportement saccadé." + msgid "Misc" msgstr "Divers" +msgid "Mouse Poll Interval" +msgstr "Intervalle de relevé de position de la souris" + msgid "Mouse position polling" msgstr "Scrutation de la position de la souris" @@ -2520,6 +2332,8 @@ msgid "Also negate window decorations, not only the window contents." msgstr "" +"Ignorer aussi les décorations de la fenêtre, pas seulement le contenu de " +"celle-ci." msgid "Exclude Windows" msgstr "Exclure les fenêtres" @@ -2527,9 +2341,8 @@ msgid "Neg Windows" msgstr "Fenêtres en négatif" -#, fuzzy msgid "Negate Decorations" -msgstr "Réflexion pour les décorations" +msgstr "Ignorer les décorations" msgid "Negative" msgstr "Négatif" @@ -3251,8 +3064,11 @@ msgid "Background color of the window title" msgstr "Couleur d'arrière-plan du titre de la fenêtre" -msgid "Close Windows In Scale" -msgstr "Fermer les fenêtres en mode Échelle" +msgid "Close Window" +msgstr "Fermer la fenêtre" + +msgid "Close window while in scale mode" +msgstr "Fermer la fenêtre en mode Échelle" msgid "Close windows while in scale mode" msgstr "Fermer les fenêtres en mode Échelle" @@ -3260,9 +3076,18 @@ msgid "Color used for highlighting the hovered window" msgstr "Couleur utilisée pour mettre la fenêtre survolée en surbrillance." +msgid "Constrain Pull To Screen" +msgstr "Limiter l'étirement à l'écran" + msgid "Draw Window Highlight" msgstr "Dessiner la surbrillance de fenêtre" +msgid "Exit Scale On Pull" +msgstr "Sortir de l'Échelle de l'Étirement" + +msgid "Exit scale mode after a window has been pulled." +msgstr "Sortir du mode échelle après qu'une fenêtre est été étirée." + msgid "Font color of the window title" msgstr "Couleur de police du titre de fenêtre" @@ -3278,6 +3103,12 @@ msgid "Highlights the hovered window with the given color" msgstr "Mettre en surbrillance la fenêtre survolée avec la couleur donnée" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"S'assurer que les fenêtres sont entièrement visibles après le déplacement " +"dans un autre espace de travail" + msgid "No display" msgstr "Pas d'affichage" @@ -3287,6 +3118,13 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organique - EXPÉRIMENTAL" +msgid "Pull Window" +msgstr "Déplacer la fenêtre" + +msgid "Pull window to current viewport while in scale mode" +msgstr "" +"Déplacer la fenêtre de l'espace de travail actuel pendant le mode Échelle" + msgid "Scale Addons" msgstr "Échelle (outils de mise à l'échelle)" @@ -3311,6 +3149,9 @@ msgid "Window Layout Mode" msgstr "Mode de superposition des fenêtres" +msgid "Window Pull" +msgstr "Déplacement de fenêtre" + msgid "Window Title" msgstr "Titre de fenêtre" @@ -3320,11 +3161,11 @@ msgid "Window title display in scale mode" msgstr "Affichage du titre de la fenêtre en mode Échelle" -msgid "Zoom Windows In Scale" -msgstr "Zoomer les fenêtres en mode Échelle" +msgid "Zoom Window" +msgstr "Zoomer la fenêtre" -msgid "Zoom windows while in scale mode" -msgstr "Zoomer les fenêtres en mode Échelle" +msgid "Zoom window while in scale mode" +msgstr "Zoomer la fenêtre en mode Échelle" msgid "Filter Case Insensitive" msgstr "Insensible à la casse" @@ -3589,18 +3430,30 @@ msgid "Direction of window movement" msgstr "Sens du mouvement des fenêtres" +msgid "Down" +msgstr "Bas" + +msgid "Left" +msgstr "Gauche" + msgid "Left/Right" msgstr "Gauche/Droite" msgid "Movement Direction" msgstr "Sens du mouvement" +msgid "Right" +msgstr "Droite" + msgid "Show desktop" msgstr "Afficher le bureau" msgid "To Corners" msgstr "Aux coins" +msgid "Up" +msgstr "Haut" + msgid "Up/Down" msgstr "Haut/Bas" @@ -3931,6 +3784,226 @@ msgid "Start Splash." msgstr "Afficher l'écran d'accueil" +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Taux d'opacité (en pourcentage) pour les fenêtres du sélecteur qui ne sont " +"pas sélectionnées" + +msgid "Behavior" +msgstr "Comportement" + +msgid "Darken background when showing the stack" +msgstr "Assombrissement de l'arrière-plan durant l'affichage du sélecteur" + +msgid "On Thumbnail" +msgstr "Sur la Miniature" + +msgid "Rotate inactive windows" +msgstr "Rotation des fenêtres inactives" + +# Traduction difficile. +msgid "Should not selected windows be rotated" +msgstr "Pour tourner, les fenêtres ne doivent pas être sélectionnées." + +msgid "Stack Window Switcher" +msgstr "Sélecteur de fenêtre en Anneau" + +msgid "Tilt angle of the background." +msgstr "Angle d'inclinaison de l'arrière-plan." + +msgid "Windows" +msgstr "Fenêtres" + +msgid "Windows that should be shown in the switcher" +msgstr "Fenêtres devant être affichées dans le sélecteur" + +msgid "Alignment for rows that are not fully filled" +msgstr "Alignement des rangées incomplètes." + +msgid "Amount of brightness in percent" +msgstr "Taux de luminosité en pourcentage" + +msgid "Amount of opacity in percent" +msgstr "Taux d'opacité en pourcentage" + +msgid "Amount of saturation in percent" +msgstr "Taux de saturation en pourcentage" + +msgid "Auto Change Viewport" +msgstr "Changement Automatique de fenêtre" + +msgid "Bring Selected To Front" +msgstr "Placer la sélection au premier plan." + +msgid "Centered" +msgstr "Centrer" + +msgid "Change to the viewport of the selected window while switching" +msgstr "Changer la vue de la fenêtre sélectionnée lors d'un \"switch\"" + +msgid "Color of highlight rectangle" +msgstr "Couleur de surbrillance pour le rectangle de sélection" + +msgid "Color of highlight rectangle border" +msgstr "Couleur de la surbrillance de la bordure du rectangle" + +# l'incrustation étant incorrecte, j'ai choisie la profondeur. +# Pour un cadre c'est plus juste. +msgid "Color of inlay in highlight rectangle border" +msgstr "Couleur de la profondeur de la bordure du rectangle en surbrillance" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" +"Générer des mipmaps quand cela est possible pour une meilleure qualité de " +"mise à l'échelle." + +msgid "Highlight Border Color" +msgstr "Couleur de surbrillance de la bordure" + +msgid "Highlight Border Inlay Color" +msgstr "Couleur de surbrillance de la profondeur de la bordure" + +msgid "Highlight Mode" +msgstr "Mode de surbrillance" + +msgid "Icon" +msgstr "Icône" + +msgid "Minimized Window Highlight Rectangle" +msgstr "Rectangle de surbrillance d'une fenêtre minimisée" + +msgid "Mipmap" +msgstr "Mipmap" + +msgid "Mode for highlighting the currently selected window" +msgstr "Mode de surbrillance pour la fenêtre courante sélectionnée" + +msgid "Next Panel" +msgstr "Panneau suivant" + +msgid "Next window" +msgstr "Fenêtre suivante" + +msgid "Next window (All windows)" +msgstr "Fenêtre suivante (tous les bureaux)" + +msgid "Next window (Group)" +msgstr "Fenêtre suivante (groupe)" + +msgid "Next window (No popup)" +msgstr "Fenêtre suivante (sans popup)" + +msgid "Original Window Position" +msgstr "Position originale de la fenêtre" + +# on suppose que c'est le délai d'apparition. +msgid "Popup Window Delay" +msgstr "Délai d'une fenêtre popup" + +msgid "Popup switcher if not visible and select next window" +msgstr "" +"Afficher le sélecteur s'il n'est pas visible et sélectionner la fenêtre " +"suivante." + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Afficher le sélecteur s'il n'est pas visible et sélectionner la fenêtre " +"suivante de l'application courante." + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Afficher le sélecteur s'il n'est pas visible et sélectionner la fenêtre " +"suivante, de tous les bureaux." + +msgid "Popup switcher if not visible and select previous window" +msgstr "" +"Afficher le sélecteur s'il n'est pas visible et sélectionner la fenêtre " +"précédente." + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Afficher le sélecteur s'il n'est pas visible et sélectionner la fenêtre " +"précédente de l'application courante." + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Afficher le sélecteur s'il n'est pas visible et sélectionner la fenêtre " +"précédente de tous les bureaux." + +msgid "Prev Panel" +msgstr "Panneau Précédent" + +msgid "Prev window" +msgstr "Fenêtre précédente" + +msgid "Prev window (All windows)" +msgstr "Fenêtre précédente (tous les bureaux)" + +msgid "Prev window (Group)" +msgstr "Fenêtre précédente (groupe)" + +msgid "Prev window (No popup)" +msgstr "Fenêtre précédente (sans popup)" + +# rangées ou lignes? +msgid "Row Alignment" +msgstr "Alignement des rangées" + +msgid "Select next panel type window." +msgstr "Sélectionner la fenêtre du type de panneau suivante." + +msgid "Select next window without showing the popup window." +msgstr "Sélectionner la fenêtre suivante sans afficher la popup." + +msgid "Select previous panel type window." +msgstr "Sélectionner la fenêtre du type de panneau précédente." + +msgid "Select previous window without showing the popup window." +msgstr "Sélectionner la fenêtre précédente sans afficher la popup." + +msgid "Selected Window Highlight" +msgstr "Surbrillance de fenêtre sélectionnée" + +msgid "Show Rectangle" +msgstr "Afficher le Rectangle" + +msgid "Show icon next to thumbnail" +msgstr "Afficher l'icône suivante dans la miniature" + +msgid "Show minimized windows" +msgstr "Afficher les fenêtres minimisées" + +msgid "Static Application Switcher" +msgstr "Sélecteur d'application statique" + +msgid "Switcher speed" +msgstr "Vitesse du sélecteur" + +msgid "Switcher timestep" +msgstr "Intervalle de temps du sélecteur" + +msgid "Switcher windows" +msgstr "Sélecteur de fenêtre" + +msgid "Taskbar Entry" +msgstr "Entrée de Barre de tâches" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "Temps (en s) que la popup pourrait être retardée avant apparition" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "Où dessiner le rectangle en surbrillance pour les fenêtres minimisées" + +msgid "Windows that should be shown in switcher" +msgstr "Fenêtres devant être affichées dans le sélecteur" + msgid "Render text to texture" msgstr "Rendre le texte sous forme de texture" @@ -4561,7 +4634,7 @@ msgstr "Couleur du bord extérieur de la fenêtre du sélecteur." msgid "Preview Scale" -msgstr "" +msgstr "Aperçu d'Échelle" msgid "Radius of the rounded edge" msgstr "Le rayon des bords arrondis" @@ -4601,7 +4674,7 @@ #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Taille de l'aperçu en %" msgid "Switch Target Preview Visibility Time" msgstr "Changer le temps de visibilité de la prévisualisation de la cible" @@ -4629,82 +4702,65 @@ msgstr "Durée de glissement du chemin" msgid "Width of the border between the previews" -msgstr "" +msgstr "Largeur de la bordure entre les aperçus" -#, fuzzy msgid "Background fill type." -msgstr "Image de fond" +msgstr "Type de fond" msgid "Backgrounds" msgstr "Arrière-plan" msgid "Center Tiled" -msgstr "" - -#, fuzzy -msgid "Centered" -msgstr "Placer au Centre" +msgstr "Centre carrelé" -#, fuzzy msgid "Color 1" -msgstr "Couleurs" +msgstr "Couleur 1" -#, fuzzy msgid "Color 2" -msgstr "Couleurs" +msgstr "Couleur 2" msgid "Draw the desktop wallpaper" msgstr "Dessiner l'arrière-plan du bureau" -#, fuzzy +# Traduction très approximative. msgid "Fill or first gradient color." -msgstr "Couleur des particules de feu." +msgstr "Remplir ou première couleur ambulante" -#, fuzzy msgid "Fill type" -msgstr "Contour plein" +msgstr "Type de remplissage" -#, fuzzy msgid "Horizontal gradient" -msgstr "Plis Horizontaux" +msgstr "Avancement Horizontal" -#, fuzzy msgid "Image" -msgstr "Images" +msgstr "Image" -#, fuzzy msgid "Image file." -msgstr "Fichiers image du dessus" +msgstr "Fichier de l'image" -#, fuzzy msgid "Image position." -msgstr "Position horizontale" +msgstr "Position de l'image" -#, fuzzy msgid "Position" -msgstr "Position horizontale" +msgstr "Position" -#, fuzzy msgid "Scale and Crop" -msgstr "Échelle (outils de mise à l'échelle)" +msgstr "Échelle et Coupe" -#, fuzzy msgid "Scaled" -msgstr "Échelle (outils de mise à l'échelle)" +msgstr "Échelonné" -#, fuzzy msgid "Second gradient color." -msgstr "Couleur de Gradient 1" +msgstr "Seconde Couleur de Gradient" msgid "Solid fill" -msgstr "" +msgstr "Remplissage solide" -#, fuzzy msgid "Tiled" msgstr "Mosaïque" msgid "Vertical gradient" -msgstr "" +msgstr "Avancement vertical" msgid "Wallpaper" msgstr "Fond d'écran" @@ -4727,12 +4783,11 @@ msgid "End widget mode when a non-widget window is clicked." msgstr "Terminer le mode widget quand une fenêtre non-widget est cliquée." -#, fuzzy msgid "Focus Widget Layer" -msgstr "Couche Widget" +msgstr "Focus de la Couche Widget" msgid "Focus a window in the widget layer when activating the layer" -msgstr "" +msgstr "Activé une fenêtre dans la couche de Widget quand la couche est activé" msgid "Saturation of non-widget windows in widget modes." msgstr "Saturation des fenêtres non-widget en mode Widget." @@ -4785,6 +4840,12 @@ msgid "Matches" msgstr "Concordances" +msgid "Maximized" +msgstr "Maximisé" + +msgid "Maximized windows" +msgstr "Fenêtres maximisées" + msgid "No ARGB visuals" msgstr "Pas de visuels ARGB" @@ -4863,6 +4924,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Corriger le paramètre Fragment de AIGLX" +msgid "Convert Urgency to Demands Attention" +msgstr "Convertir les Urgences en Demandes d'attention" + msgid "Firefox Menu Fix" msgstr "Corriger les menus de Firefox et Thunderbird" @@ -4910,6 +4974,9 @@ "Viewport = 1 Bureau, mais pas pour Compiz... Ce problème devrait être " "corrigé dans une prochaine version)" +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "Rendre \"urgente\", les fenêtres \"Demande d'attention\"." + msgid "Make Wine and legacy applications fullscreen properly." msgstr "Rendre correctement les applications Wine et natives en plein écran." @@ -4934,6 +5001,321 @@ msgid "Workarounds" msgstr "Solutions" +#~ msgid "Airplane" +#~ msgstr "Avion" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Longueur du chemin de l'avion" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Délai d'animation pour les effets intenses" + +#~ msgid "Automatic" +#~ msgstr "Automatique" + +#~ msgid "Beam" +#~ msgstr "Rayon" + +#~ msgid "Beam Color" +#~ msgstr "Couleur du Rayon" + +#~ msgid "Beam Life" +#~ msgstr "Durée de vie du Rayon" + +#~ msgid "Beam Slowdown" +#~ msgstr "Ralentissement du Rayon" + +#~ msgid "Beam Spacing" +#~ msgstr "Espacement du Rayon" + +#~ msgid "Beam Up" +#~ msgstr "Rayonnement" + +#~ msgid "Beam Width" +#~ msgstr "Largeur du Rayon" + +#~ msgid "Beam color." +#~ msgstr "Couleur du Rayon" + +#~ msgid "Beam life." +#~ msgstr "Durée de vie du Rayon" + +#~ msgid "Beam slowdown." +#~ msgstr "Ralentissement du Rayon" + +#~ msgid "Beam width." +#~ msgstr "Largeur du Rayon" + +#~ msgid "Burn" +#~ msgstr "Brûler" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Direction de chute des pièces de domino" + +#~ msgid "Explode" +#~ msgstr "Explosion" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Direction de chute des pièces de domino" + +#~ msgid "Fire" +#~ msgstr "Feu" + +#~ msgid "Fire Smoke" +#~ msgstr "Fumée" + +#~ msgid "Fire constant speed" +#~ msgstr "Vitesse de feu constante" + +#~ msgid "Fire direction" +#~ msgstr "Direction du feu" + +#~ msgid "Fire direction." +#~ msgstr "Direction du feu" + +#~ msgid "Fire smoke." +#~ msgstr "Fumée" + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Voler vers la barre de tâches à la Minimisation" + +#~ msgid "Fold" +#~ msgstr "Pliage" + +#~ msgid "Fold Direction" +#~ msgstr "Direction de pliage" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Direction d'ouverture du pli pour les pièces dans l'effet Razr" + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "Entrée" + +#~ msgid "In-out" +#~ msgstr "Entrée-Sortie" + +#~ msgid "Leaf Spread" +#~ msgstr "Envergure de la feuille" + +#~ msgid "Left-right" +#~ msgstr "Gauche-Droite" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Longueur de l'itinéraire de vol de l'avion" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "" +#~ "Rendre la durée de l'effet de feu dépendante de la hauteur de la fenêtre." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Direction du mouvement des morceaux de fenêtre" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Nombre de particules de feu" + +#~ msgid "Number of fire particles." +#~ msgstr "Nombre de particules de feu" + +#~ msgid "Out" +#~ msgstr "Sortie" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Direction d'ouverture du pli Razr" + +#~ msgid "Rectangular" +#~ msgstr "Rectangulaire" + +#~ msgid "Rotation Angle" +#~ msgstr "Angle de rotation" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Angle de rotation des morceaux de fenêtre animés (en degrés)." + +#~ msgid "Skewer" +#~ msgstr "Cisaillement" + +#~ msgid "Skewer Direction" +#~ msgstr "Direction de Cisaillement" + +#~ msgid "Spacing between beams." +#~ msgstr "Espace entre les bandes." + +#~ msgid "Tessellation Type" +#~ msgstr "Type de Pavage (Tesselation)" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Type de pavage pour exploser les morceaux de fenêtres." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Type de pavage pour les morceaux de fenêtres." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Durée en millisecondes entre chaque rendu des animations intenses (Ex.: " +#~ "Brûler, Rayon). Plus ce nombre est grand, plus les mouvements seront " +#~ "saccadés." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "La fenêtre animée sera découpée en pièces selon une grille. Spécifie le " +#~ "nombre de cellules de la grille dans la hauteur de la fenêtre." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "La fenêtre animée sera découpée en pièces selon une grille. Spécifie le " +#~ "nombre de cellules de la grille dans la largeur de la fenêtre." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "La fenêtre explosant sera découpée en morceaux selon une grille. Spécifie " +#~ "le nombre de cellules de la grille dans la hauteur de la fenêtre." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "La fenêtre explosant sera découpée en morceaux selon une grille. Spécifie " +#~ "le nombre de cellules de la grille dans la largeur de la fenêtre." + +#~ msgid "Thickness" +#~ msgstr "Épaisseur" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Épaisseur des Polygones Animés" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Épaisseur des Polygones Explosant" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Épaisseur des morceaux de fenêtre animés (en pixels)" + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Épaisseur des morceaux de fenêtre explosant (en pixels)" + +#~ msgid "Up-down" +#~ msgstr "Haut-Bas" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "La fenêtre vole vers la barre de tâche quand elle est minimisée avec " +#~ "l'effet Avion." + +#~ msgid "Window Grid Height" +#~ msgstr "Hauteur de la grille de la fenêtre" + +#~ msgid "Window Grid Width" +#~ msgstr "Largeur de la grille de la fenêtre" + +#~ msgid "Window folding direction." +#~ msgstr "Direction de pliage de la fenêtre" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Épaisseur de la fenêtre en pixels. Une valeur plus grande que 0 " +#~ "désactivera l'ombre, le flou, et la réflexion pendant l'animation." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (taille des vagues dans le pli) des Plis Horizontaux relative à " +#~ "la largeur de la fenêtre. les valeurs négatives plient vers l'extérieur." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (taille des vagues dans le pli) des pli courbés relative à la " +#~ "largeur de la fenêtre. les valeurs négatives plient vers l'extérieur." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "" +#~ "L'amplitude de la vague (taille des vagues) relativement à la hauteur de " +#~ "la fenêtre" + +#~ msgid "Brightness Decrease" +#~ msgstr "Diminution de la Luminosité" + +#~ msgid "Brightness Increase" +#~ msgstr "Augmentation de la Luminosité" + +#~ msgid "Brightness Step" +#~ msgstr "Intervale de luminosité" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Luminosité et Saturation" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Ajustements de la luminosité et de la saturation" + +#~ msgid "Brightness settings" +#~ msgstr "Réglages de la luminosité" + +#~ msgid "Brightness values for windows" +#~ msgstr "Valeurs de luminosité pour les fenêtres" + +#~ msgid "Brightness window values" +#~ msgstr "Valeurs de luminosité pour la fenêtre" + +#~ msgid "Brightness windows" +#~ msgstr "Luminosité des fenêtres" + +#~ msgid "Saturation Decrease" +#~ msgstr "Diminution de la Saturation" + +#~ msgid "Saturation Increase" +#~ msgstr "Augmentation de la saturation" + +#~ msgid "Saturation Step" +#~ msgstr "Intervale de saturation" + +#~ msgid "Saturation settings" +#~ msgstr "Réglages de la saturation" + +#~ msgid "Saturation values for windows" +#~ msgstr "Valeurs de saturation pour les fenêtres" + +#~ msgid "Saturation window values" +#~ msgstr "Valeurs de la saturation pour la fenêtre" + +#~ msgid "Saturation windows" +#~ msgstr "Saturation des fenêtres" + +#~ msgid "Window specific" +#~ msgstr "Spécifique à la fenêtre" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Fenêtres devant avoir une luminosité différente par défaut" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Fenêtres devant avoir une saturation différente par défaut" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Fermer les fenêtres en mode Échelle" + #~ msgid "Animation Speed" #~ msgstr "Vitesse d'animation" @@ -4970,8 +5352,5 @@ #~ msgid "Misc. options" #~ msgstr "Divers" -#~ msgid "Show minimized windows" -#~ msgstr "Afficher les fenêtres minimisées" - #~ msgid "Tile or Stretch" #~ msgstr "Carreler ou étirer" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/gl.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/gl.po --- compiz-fusion-plugins-unsupported-0.7.6/po/gl.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/gl.po 2008-09-17 14:29:33.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: i18n\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" "PO-Revision-Date: 2008-03-25 02:51+0100\n" "Last-Translator: Fran Diéguez (GLUG) \n" "Language-Team: \n" @@ -121,6 +121,12 @@ msgid "Brightness of faded windows" msgstr "Brillo das fiestras desvanecidas" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -153,12 +159,6 @@ msgid "Window types that should be Opacified." msgstr "Tipos de fiestras cuxas propiedades deben ser afectadas polo plugin." -msgid "Airplane" -msgstr "Avión" - -msgid "Airplane Flying Path Length" -msgstr "Complemento do traxecto de voo do avión" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -167,20 +167,6 @@ "seleccionado. Se nengún estivera seleccionado para un evento, ese evento non " "será animado." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -" Amplitude (tamaño das ondas das dobras) das Dobras Horizontais " -"relativamente á largura da fiestra. Valores negativos dobran para fora." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -" Amplitude (tamaño das ondas das dobras) das dobras curvadas relativamente " -"á largura da fiestra. Valores negativos dobran para fora." - msgid "Angle of window at the end of the animation." msgstr "Angulo da fiestra no fin da animación" @@ -190,9 +176,6 @@ msgid "Animation Time Step" msgstr "Salto de Tempo das Animacións" -msgid "Animation Time Step For Intense Effects" -msgstr "Espazo de tempo de animación para Efectos Intensos" - msgid "Animation duration in milliseconds for close effect." msgstr "Duración en milisegundos da animación para o efecto de pechar." @@ -211,51 +194,12 @@ msgid "Animations" msgstr "Animacións" -msgid "Automatic" -msgstr "Automático" - msgid "Away Angle" msgstr "Ángulo ao Lonxe" msgid "Away Position" msgstr "Posición ao Lonxe" -msgid "Beam" -msgstr "Feixe" - -msgid "Beam Color" -msgstr "Cor Feixe" - -msgid "Beam Life" -msgstr "Vida do Feixe" - -msgid "Beam Slowdown" -msgstr "Abrandamento do Feixe" - -msgid "Beam Spacing" -msgstr "Espazo do Feixe" - -msgid "Beam Up" -msgstr "Feixe para arriba" - -msgid "Beam Width" -msgstr "Ancho Feixe" - -msgid "Beam color." -msgstr "Cor do feixe" - -msgid "Beam life." -msgstr "Vida do feixe." - -msgid "Beam slowdown." -msgstr "Abrandamento do feixe." - -msgid "Beam width." -msgstr "Ancho do feixe." - -msgid "Burn" -msgstr "Queimar" - msgid "Close Animation" msgstr "Animación de pecho" @@ -280,7 +224,8 @@ msgid "Curved Fold" msgstr "Dobras Curvadas" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Amplitude das dobras curvadas" msgid "Dodge" @@ -289,15 +234,6 @@ msgid "Dodge Gap Ratio" msgstr "Radio do espazo do Desvío" -msgid "Domino" -msgstr "Dominó" - -msgid "Domino Piece Falling Direction" -msgstr "Dirección de caída das pezas do Dominó" - -msgid "Down" -msgstr "Para abaixo" - msgid "Dream" msgstr "Soño" @@ -307,77 +243,22 @@ msgid "Effect Settings" msgstr "Configuracións de Efectos" -msgid "Explode" -msgstr "Explosión" - msgid "Fade" msgstr "Desvanecemento" -msgid "Falling direction for Domino pieces." -msgstr "Dirección na cal cairán as pezas de Dominó." - -msgid "Fire" -msgstr "Lume" - -msgid "Fire Particle Color" -msgstr "Cor das partículas" - -msgid "Fire Particle Life" -msgstr "Vida das partículas" - -msgid "Fire Particle Size" -msgstr "Tamaño das partículas" - -msgid "Fire Particle Slowdown" -msgstr "Abrandamento das partículas" - -msgid "Fire Smoke" -msgstr "Fume" - -msgid "Fire constant speed" -msgstr "Velocidade constante do lume" - -msgid "Fire direction" -msgstr "Dirección do lume" - -msgid "Fire direction." -msgstr "Dirección do lume." - -msgid "Fire particle color." -msgstr "Cor das partículas." - -msgid "Fire particle life." -msgstr "Vida das partículas." - -msgid "Fire particle size." -msgstr "Tamaño das partículas de lume." - -msgid "Fire particle slowdown." -msgstr "Desaparicion das partículas de lume." - -msgid "Fire smoke." -msgstr "Fume do lume." - msgid "Fixed window interior during the Rollup animation." msgstr "Interior da fiestra fixo durante a animación de EnrolarParaCima." -msgid "Fly to TaskBar on Minimize" -msgstr "Voar cara a barra de tarefas cando se minimiza" - msgid "Focus Animation" msgstr "Animación de enfocar" msgid "Focus Effect" msgstr "Efecto de enfocar" -msgid "Fold" -msgstr "Dobrar" - -msgid "Fold Direction" -msgstr "Dirección da dobra" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Dirección de abertura das dobras para as pezas no efecto Razr" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "Deslizar 1" @@ -385,18 +266,11 @@ msgid "Glide 2" msgstr "Deslizar 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Cores aleatorias para o efecto de lume. Opción tamén coñecida como Lume " -"Místico." - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Dobras horizontais" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Amplitude Dobras horizontais" msgid "How spring-like the Sidekick animation should be." @@ -405,24 +279,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Canto debe ser parecida a animación Zoom cunha mola " -msgid "In" -msgstr "Aproximar" - -msgid "In-out" -msgstr "In-out" - -msgid "Leaf Spread" -msgstr "Espallamento das follas" - -msgid "Left" -msgstr "Para a esquerda" - -msgid "Left-right" -msgstr "Esquerda-Dereita" - -msgid "Length of airplane's flying path." -msgstr "Compremento do traxecto de vóo do avión." - msgid "Magic Lamp" msgstr "Lámpada Máxica" @@ -444,9 +300,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Fin dinámico Abrir/pechar da Lámpada Máxica" -msgid "Make fire effect duration be dependent on window height." -msgstr "Tornar duración do efecto de lume dependente da altura da fiestra." - msgid "Minimize Animation" msgstr "Animación da minimización" @@ -456,21 +309,12 @@ msgid "Minimize/Unminimize Only" msgstr "Minimizar/Restaurar só" -msgid "Movement direction(s) for window pieces." -msgstr "Dirección(s) de movemento para as pezas da fiestra." - msgid "None" msgstr "Ningunha" -msgid "Number Of Fire Particles" -msgstr "Número de partículas de lume" - msgid "Number of Horizontal Folds" msgstr "Número de dobras horizontais" -msgid "Number of fire particles." -msgstr "Número de partículas de lume." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -504,15 +348,13 @@ msgid "Options" msgstr "Opcións" -msgid "Out" -msgstr "Afastar" - msgid "Pool" msgstr "Piscina" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Piscina dos efectos a ser escollidos no caso de o efecto Aleatorio estar " "seleccionado. Presione restaurar para restaurar a lista completa." @@ -526,37 +368,16 @@ msgid "Random Effects" msgstr "Efectos aleatorios" -msgid "Randomly Colored Fire" -msgstr "Lume con cores aleatorias" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" "Radio de espazos entre os tempos de inicio do desvío e a duración do foco." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Dirección de abertura da dobra Razr" - -msgid "Rectangular" -msgstr "Rectangular" - -msgid "Right" -msgstr "Para a dereita" - msgid "Roll Up" msgstr "Enrolar cara arriba" msgid "Rollup Fixed Interior" msgstr "Enrolar con Interior Fixo" -msgid "Rotation Angle" -msgstr "Ángulo de Rotación" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Ángulo de rotación das pezas das fiestras (en graos) ." - msgid "Shade Animation" msgstr "Animación Sombreamento" @@ -572,15 +393,6 @@ msgid "Sidekick Springiness" msgstr "Elasticidade do Puntapé para o lado" -msgid "Skewer" -msgstr "Grella" - -msgid "Skewer Direction" -msgstr "Dirección da grella" - -msgid "Spacing between beams." -msgstr "Espazo entre feixes." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -594,18 +406,6 @@ "Ancho inicial do efecto abrir e largura final do efecto pechar para o " "Baleiro." -msgid "Tessellation Type" -msgstr "Tipo de Mosaico" - -msgid "Tessellation type for exploding window pieces." -msgstr "" -"Tipo de mosaico que se empregará para \" construir\" as pezas resultantes da " -"explosión dunha fiestra." - -msgid "Tessellation type for window pieces." -msgstr "" -"Tipo de mosaico que se empregará para \" construir\" as pezas dunha fiestra." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -613,28 +413,6 @@ "Tempo en milisegundos entre cada renderizado da animación. Canto máis alto o " "número, o movemento tórnase con máis saltos." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Tempo en milisegundos entre cada renderizado da animación intensa (Ex. " -"Arder, Feixe). Canto máis alto o número, o movemento tórnase con máis saltos." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"A fiestra animada será separada en pezas ao longo dunha grella. Especifique " -"o número de celas da grella ao longo da altura da fiestra." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"A fiestra animada será separada en pezas ao longo dunha grella. Especifique " -"o número de celas da grella ao longo da largura da fiestra." - msgid "The animation effect shown when closing a window." msgstr "O efecto de animación a mostrar cando se pecha unha fiestra." @@ -650,20 +428,6 @@ msgid "The animation effect shown when shading a window." msgstr "O efecto de animación a mostrar cando se sombrea unha fiestra." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"A fiestra estourada será separada en pezas ao longo dunha grella. " -"Especifique o número de celas da grella ao longo da altura da fiestra." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"A fiestra estourada será separada en pezas ao longo dunha grella. " -"Especifique o número de celas da grella ao longo da largura da fiestra." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "Amplitude máxima (tamaño das ondas) que o efecto Lámpada Máxica terá." @@ -678,37 +442,12 @@ msgstr "" "Número de dobras horizontais que acontecerán na animación Dobra Horizontal." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" -"Amplitude das ondas (tamaño das ondas) relativamente á altura da fiestra." - msgid "The width of the wave relative to the window height." msgstr "Ancho da onda relativamente á altura da fiestra." msgid "The windows that will be animated." msgstr "Fiestras que serán animadas." -msgid "Thickness" -msgstr "Espesura" - -msgid "Thickness of Animated Polygons" -msgstr "Espesura dos polígonos animados" - -msgid "Thickness of Exploding Polygons" -msgstr "Espesura dos polígonos estourados" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Espesura das pezas da fiestra animada (en pixeis) ." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Espesura das pezas da fiestra explodida (en pixeis) ." - -msgid "Up" -msgstr "Cara arriba" - -msgid "Up-down" -msgstr "Arrib-Abaixo" - msgid "Use various animations as window effects" msgstr "" "Empregar varias animacións como efectos das fiestra (pechar, abrir, " @@ -749,17 +488,17 @@ msgid "Wave" msgstr "Onda" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Amplitude Onda" msgid "Wave Width" msgstr "Ancho Onda" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Se a fiestra debe voar para a barra de tarefas cando sexa minimizada " -"empregando o efecto Avión." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -793,28 +532,12 @@ "Se a fiestra debe ser diminuida para a barra de tarefas cando sexa " "minimizada empregando o efecto Dobras Horizontais." -msgid "Window Grid Height" -msgstr "Altura da grella da fiestra" - -msgid "Window Grid Width" -msgstr "Ancho da grella da fiestra" - -msgid "Window folding direction." -msgstr "Dirección de dobra das fiestras" - msgid "Window that should animate with this effect when focused." msgstr "Fiestras que deben ser animadas con este efecto cando son enfocadas." msgid "Window that should animate with this effect when shaded." msgstr "Fiestras que deben ser animadas con este efecto cando son sombreadas." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Espesura da fiestra en pixeis. Definir este valor maior que 0 desactivará " -"as sombras, difusións e reflexos durante a animación." - msgid "Zoom" msgstr "Zoom" @@ -925,65 +648,12 @@ msgid "Y position" msgstr "Posición no eixo vertical (Y)" -msgid "Brightness Decrease" -msgstr "Reducir Brillo" - -msgid "Brightness Increase" -msgstr "Aumentar Brillo" - -msgid "Brightness Step" -msgstr "Salto do Brillo" - -msgid "Brightness and Saturation" -msgstr "Brillo e saturación" - -msgid "Brightness and Saturation adjustments" -msgstr "Axustes de brillo e saturación" - -msgid "Brightness settings" -msgstr "Preferenzas de brillo" - -msgid "Brightness values for windows" -msgstr "Valores de brillo para as fiestras" - -msgid "Brightness window values" -msgstr "Valores de brillo das fiestras" - -msgid "Brightness windows" -msgstr "Brillo das fiestras" - -msgid "General" -msgstr "Xeral" - -msgid "Saturation Decrease" -msgstr "Reducir Saturación" - -msgid "Saturation Increase" -msgstr "Aumentar Saturación" - -msgid "Saturation Step" -msgstr "Salto da Saturación" - -msgid "Saturation settings" -msgstr "Preferenzas de saturación" - -msgid "Saturation values for windows" -msgstr "Valores de saturación das fiestras" - -msgid "Saturation window values" -msgstr "Valores de saturación da fiestra" - -msgid "Saturation windows" -msgstr "Saturación das fiestras" - -msgid "Window specific" -msgstr "Especifico da fiestra" - -msgid "Windows that should have a different brightness by default" -msgstr "Fiestras que deben ter un brillo diferente por omisión" +#, fuzzy +msgid "Bicubic filter" +msgstr "Trocar de filtro" -msgid "Windows that should have a different saturation by default" -msgstr "Fiestras que debenter unha saturación por omisión" +msgid "Bicubic texture filtering" +msgstr "" msgid "Color filter" msgstr "Filtro de Cor" @@ -1078,6 +748,9 @@ msgstr "" "Comando do xestor de fiestras alternativo. NON INTRODUZA COMPIZ AQUÍ!!!" +msgid "Above" +msgstr "Arriba" + msgid "Adjust bottom face image to rotation" msgstr "Axustar imaxe da cara inferior ó efectuar a rotación" @@ -1099,6 +772,19 @@ msgid "Appearance" msgstr "Aparencia" +#, fuzzy +msgid "Aspect ratio" +msgstr "Proporción de Aspecto" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Zoom automático" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zoom automático só con rotación através do rato" + msgid "Behaviour" msgstr "Comportamento" @@ -1134,18 +820,62 @@ msgid "Color of bottom face of the cube" msgstr "Cor da cara inferior do cubo" +msgid "Color of the ground (far)." +msgstr "Cor do chán (lonxe)" + +msgid "Color of the ground (near)." +msgstr "Cor do chán (perto)" + msgid "Color of top face of the cube" msgstr "Cor da cara superior do cubo" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Crear un reflexo do cubo" + msgid "Cube Bottom Color" msgstr "Cor da cara inferior do cubo" -msgid "Cube Caps" -msgstr "Caras do cubo" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Reflexo de Decoracións" msgid "Cube Top Color" msgstr "Cor da cara superior do cubo" +#, fuzzy +msgid "Cube caps" +msgstr "Caras do cubo" + +#, fuzzy +msgid "Cylinder" +msgstr "Limpar" + +#, fuzzy +msgid "Deform caps" +msgstr "Deformación" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Zoom automático só con rotación através do rato" + +msgid "Deformation" +msgstr "Deformación" + +#, fuzzy +msgid "Deformation in unfold cube mode." +msgstr "Forza da deformación do modo curva" + +#, fuzzy +msgid "Deformation mode." +msgstr "Deformación" + +msgid "Distance" +msgstr "Distancia" + msgid "Draw bottom face" msgstr "Debuxar a cara inferior" @@ -1158,12 +888,38 @@ msgid "Draw top face of the cube" msgstr "Debuxar a cara superior do cubo" +#, fuzzy +msgid "Enabled" +msgstr "Activar" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Crear un reflexo do cubo" + msgid "Go back to previous image for bottom face of the cube" msgstr "Retroceder para a imaxe anterior na cara de abaixo do cubo." msgid "Go back to previous image for top face of the cube" msgstr "Retroceder para a imaxe anterior na cara de cima do cubo." +msgid "Ground color(far)" +msgstr "Cor do chán (lonxe)" + +msgid "Ground color(near)" +msgstr "Cor do chán (perto)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensidade" + +msgid "Jumpy" +msgstr "Saltante (O cubo acompaña ó reflexo) " + +msgid "Jumpy reflection" +msgstr "Reflexo saltante (A reflexo acompaña o cubo) " + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1175,6 +931,22 @@ "Lista de arquivos PNG e SVG que deben ser renderizados na cara superior do " "cubo" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Proporción de aspecto do modo expo" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Axustar imaxe da cara inferior ó efectuar a rotación" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Proporción de aspecto do modo expo" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Axustar imaxe da cara superior ó efectuar a rotación" + msgid "Next bottom image" msgstr "Imaxe inferior seguinte" @@ -1187,8 +959,23 @@ msgid "Prev top image" msgstr "Imaxe superior anterior" -msgid "Render images on top and bottom of the cube" -msgstr "Mostrar imaxes nas caras de cima e de abaixo do cubo" +msgid "Reflection" +msgstr "Reflexo" + +msgid "Reflection ground size" +msgstr "Tamaño do reflexo no chán" + +msgid "Reflection ground size." +msgstr "Tamaño da superficie de reflexo." + +msgid "Reflection intensity" +msgstr "Intensidade da reflexo" + +msgid "Reflection mode" +msgstr "Modo de reflexo" + +msgid "Reflection mode." +msgstr "Modo de reflexo." msgid "Scale bottom image" msgstr "Escalar imaxe inferior" @@ -1202,69 +989,36 @@ msgid "Scale top image" msgstr "Escalar imaxe superior" +#, fuzzy +msgid "Sphere" +msgstr "Velocidade" + msgid "Top image files" msgstr "Ficheiros coas imaxes para cara superior" -msgid "Above" -msgstr "Arriba" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Zoom automático" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Retroceder o zoom automaticamente só coa rotación do rato." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zoom automático só con rotación através do rato" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Diminuír o zoom automaticamente para que o cubo caiba na pantalla ." -msgid "Color of the ground (far)." -msgstr "Cor do chán (lonxe)" +#, fuzzy +msgid "Cube Caps" +msgstr "Caras do cubo" -msgid "Color of the ground (near)." -msgstr "Cor do chán (perto)" +msgid "Render images on top and bottom of the cube" +msgstr "Mostrar imaxes nas caras de cima e de abaixo do cubo" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Crear un reflexo do cubo" +msgstr "Reflexo do cubo" msgid "Cube Reflection" msgstr "Reflexo do cubo" -msgid "Distance" -msgstr "Distancia" - -msgid "Ground color(far)" -msgstr "Cor do chán (lonxe)" - -msgid "Ground color(near)" -msgstr "Cor do chán (perto)" - -msgid "Intensity" -msgstr "Intensidade" - -msgid "Jumpy" -msgstr "Saltante (O cubo acompaña ó reflexo) " - -msgid "Jumpy reflection" -msgstr "Reflexo saltante (A reflexo acompaña o cubo) " - -msgid "Reflection ground size" -msgstr "Tamaño do reflexo no chán" - -msgid "Reflection ground size." -msgstr "Tamaño da superficie de reflexo." - -msgid "Reflection intensity" -msgstr "Intensidade da reflexo" - -msgid "Reflection mode" -msgstr "Modo de reflexo" - -msgid "Reflection mode." -msgstr "Modo de reflexo." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Retroceder o zoom automaticamente só coa rotación do rato." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Diminuír o zoom automaticamente para que o cubo caiba na pantalla ." - msgid "Animation used when switching to expo mode" msgstr "Animación empregada cando se troca para o modo expo " @@ -1286,9 +1040,6 @@ msgid "Curve strength" msgstr "Ancho da curva" -msgid "Deformation" -msgstr "Deformación" - msgid "Deformation of the expo wall" msgstr "Deformación do muro expo" @@ -1379,9 +1130,6 @@ msgid "Previous viewport" msgstr "Viewport anterior" -msgid "Reflection" -msgstr "Reflexo" - msgid "Reflection Scale" msgstr "Escala Reflexo" @@ -1490,6 +1238,10 @@ msgid "Center the mouse" msgstr "Centrar o rato" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Escalar o punteiro do rato" + msgid "Enable focus tracking" msgstr "Activar seguimento de foco" @@ -1558,19 +1310,13 @@ "Esconde o cursor orixinal do rato cando ten magnificación activa e escala do " "rato" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Cantas veces verificar a posición do rato, en milisegundos. Diminúa este " -"valor para reducir comportamento \" aos saltos\" ." +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Factor de Escalamento Mínimo" msgid "Mouse Behaviour" msgstr "Comportamento do Rato" -msgid "Mouse Poll Interval" -msgstr "Refrescamento Punteiro Rato" - msgid "Mouse Restrain Margin" msgstr "Marxe Restrinxemento Rato" @@ -1659,12 +1405,21 @@ msgid "Speed" msgstr "Velocidade" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Escalar o punteiro do rato" + msgid "Sync Mouse" msgstr "Sincronizar Rato" msgid "Target Focused Window on Specific level" msgstr "Mostrar a fiestra Focada nun Nivel Específico" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" "Tamaño da marxe a Engadir cando se tentar restrinxir o movemento do rato." @@ -1683,9 +1438,23 @@ msgid "Use linear filter when zoomed in" msgstr "Empregar filtro linear cando magnificar." +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Movemento da Área de Zoom" +#, fuzzy +msgid "Zoom Box" +msgstr "Zoom" + msgid "Zoom In" msgstr "Aumentar o zoom" @@ -1713,6 +1482,9 @@ msgid "Zoom factor" msgstr "Factor de zoom" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Zoom in/out por este factor. Valor máis altos significan magnificacións máis " @@ -1771,6 +1543,13 @@ msgid "Toggle window fake ARGB." msgstr "Alternar ARGB falsos da fiestra." +#, fuzzy +msgid "Add Particle" +msgstr "Vida das partículas" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Brillo do fondo" @@ -1780,11 +1559,40 @@ msgid "Clear" msgstr "Limpar" -msgid "Clear (button)" -msgstr "Limpar (botón)" +msgid "Clear (button)" +msgstr "Limpar (botón)" + +msgid "Clear (key)" +msgstr "Limpar (tecla)" + +msgid "Fire Particle Color" +msgstr "Cor das partículas" + +msgid "Fire Particle Life" +msgstr "Vida das partículas" + +msgid "Fire Particle Size" +msgstr "Tamaño das partículas" + +msgid "Fire Particle Slowdown" +msgstr "Abrandamento das partículas" + +msgid "Fire particle color." +msgstr "Cor das partículas." + +msgid "Fire particle life." +msgstr "Vida das partículas." + +msgid "Fire particle size." +msgstr "Tamaño das partículas de lume." -msgid "Clear (key)" -msgstr "Limpar (tecla)" +msgid "Fire particle slowdown." +msgstr "Desaparicion das partículas de lume." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Cores aleatorias para o efecto de lume. Opción tamén coñecida como Lume " +"Místico." msgid "Initiate (button)" msgstr "Iniciar (botón)" @@ -1807,6 +1615,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Cría partículas de lume na pantalla " +msgid "Randomly Colored Fire" +msgstr "Lume con cores aleatorias" + msgid "Cube Gears" msgstr "Engranaxe no Cubo" @@ -1905,6 +1716,9 @@ msgid "Font Size" msgstr "Tamaño da fonte" +msgid "General" +msgstr "Xeral" + msgid "Glass" msgstr "Vidro" @@ -2511,9 +2325,19 @@ msgid "Start gesture" msgstr "Comezar xesto" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Cantas veces verificar a posición do rato, en milisegundos. Diminúa este " +"valor para reducir comportamento \" aos saltos\" ." + msgid "Misc" msgstr "Varios" +msgid "Mouse Poll Interval" +msgstr "Refrescamento Punteiro Rato" + msgid "Mouse position polling" msgstr "Enquisa da posición do rato" @@ -3259,8 +3083,13 @@ msgid "Background color of the window title" msgstr "Cor de fondo do título da fiestra" -msgid "Close Windows In Scale" -msgstr "pechar Fiestras en Scale" +#, fuzzy +msgid "Close Window" +msgstr "Crear Mosaico das Fiestras" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "pechar fiestras mentres en modo Scale" msgid "Close windows while in scale mode" msgstr "pechar fiestras mentres en modo Scale" @@ -3268,9 +3097,18 @@ msgid "Color used for highlighting the hovered window" msgstr "Cor usada para evidenciar a fiestra sobre a cal paira o cursor do rato" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Debuxar realce da fiestra" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Cor do título da fiestra" @@ -3287,6 +3125,11 @@ msgstr "" "Evidencía a fiestra sobre a cal paira o cursor do rato coa cor escollida" +#, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "Torna as fiestras visibles parando co cursor sobre elas" + msgid "No display" msgstr "Ningunha pantalla" @@ -3296,6 +3139,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Orgánico - EXPERIMENTAL" +#, fuzzy +msgid "Pull Window" +msgstr "Colocar fiestra" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "pechar fiestras mentres en modo Scale" + msgid "Scale Addons" msgstr "Adicións ao Scale" @@ -3320,6 +3171,10 @@ msgid "Window Layout Mode" msgstr "Modo Exibición Fiestras" +#, fuzzy +msgid "Window Pull" +msgstr "Regras para Fiestras" + msgid "Window Title" msgstr "Título fiestra" @@ -3329,10 +3184,12 @@ msgid "Window title display in scale mode" msgstr "Mostrar título da fiestra no modo escalado" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "Magnificar Fiestras En Scale" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "Magnificar fiestras mentres en modo scale" msgid "Filter Case Insensitive" @@ -3600,18 +3457,30 @@ msgid "Direction of window movement" msgstr "Dirección do movemento das fiestras" +msgid "Down" +msgstr "Para abaixo" + +msgid "Left" +msgstr "Para a esquerda" + msgid "Left/Right" msgstr "Esquerda/Dereita" msgid "Movement Direction" msgstr "Dirección do Movemento" +msgid "Right" +msgstr "Para a dereita" + msgid "Show desktop" msgstr "Mostrar escritorio" msgid "To Corners" msgstr "Para os Cantos" +msgid "Up" +msgstr "Cara arriba" + msgid "Up/Down" msgstr "Cima/Baixo" @@ -3845,98 +3714,356 @@ msgid "Settings" msgstr "Configuracións" -msgid "Size Of Snowflakes" -msgstr "Tamaño das Folerpas de Neve" +msgid "Size Of Snowflakes" +msgstr "Tamaño das Folerpas de Neve" + +msgid "Size of snowflakes" +msgstr "Tamaño dos flocos de neve" + +msgid "Snow" +msgstr "Neve" + +msgid "Snow Direction" +msgstr "Dirección da Neve" + +msgid "Snow Over Windows" +msgstr "Neve por arriba das Fiestras" + +msgid "Snow Speed" +msgstr "Velocidade da Neve" + +msgid "Snow Textures" +msgstr "Texturas da Neve" + +msgid "Snow Toggle" +msgstr "Trocar Neve" + +msgid "Snow for Compiz" +msgstr "Snow para Compiz" + +msgid "Snow is drawn above windows" +msgstr "A Neve é mostrada por cima das fiestras" + +msgid "Snow textures" +msgstr "Texturas da neve" + +msgid "Snow toggle key" +msgstr "Tecla de alternar activación da Neve" + +msgid "Speed of falling snow" +msgstr "Velocidade da queda de neve" + +msgid "Textures" +msgstr "Texturas" + +msgid "Top to Bottom" +msgstr "Cima para Baixo" + +msgid "Update Delay" +msgstr "Atraso de actualización" + +msgid "A simple splash plugin" +msgstr "Plugin para mostrar un pantalla de logótipo" + +msgid "Background File" +msgstr "Ficheiro coa Imaxe de Fondo" + +msgid "Background brightness." +msgstr "Brillo da imaxe de fondo." + +msgid "Background image File." +msgstr "Ficheiro coa Imaxe de Fondo." + +msgid "Background saturation." +msgstr "Saturación da imaxe de fondo." + +msgid "Display In/Out Time." +msgstr "Duración do (Des) Aparecemento da pantalla de logotipo." + +msgid "Display Time" +msgstr "Duración da pantalla de logotipo." + +msgid "Images" +msgstr "Imaxes" + +msgid "Initiate Splash" +msgstr "Iniciar pantalla de logótipo" + +msgid "Logo File" +msgstr "Ficheiro co logotipo" + +msgid "Logo image File." +msgstr "Ficheiro de imaxe co logótipo." + +msgid "Show on first start" +msgstr "Mostrar no arranque inicial" + +msgid "Show splash on first start." +msgstr "Mostrar pantalla de logótipo no arranque inicial." + +msgid "Splash" +msgstr "Pantalla de Logotipo" + +msgid "Start Splash." +msgstr "Iniciar pantalla de logotipo." + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Nivel de opacidade (en percentaxe) para fiestras no anel que non están " +"seleccionadas" + +#, fuzzy +msgid "Behavior" +msgstr "Comportamento" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Escurecer fondo cando se estivera a mostrar o anel" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Ancho Miniatura" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Activar unha fiestra especificada" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Deberá o título da fiestra ser mostra a negrito" + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Alternador de Aplicacións en Anel" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Cor 1 do gradiente de fondo." + +#, fuzzy +msgid "Windows" +msgstr "Fiestras 3D" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Fiestras que se deben mostrar no shift switcher" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Luminosidade do fondo durante o deseño" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Non mostrar aplicación no paxer." + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Colocar noescritorio" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "Colocar no Centro" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Cor con que se rechea o rectángulo de selección" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Xerar imaxes cando sexa posíbel para escalas de mellor calidade." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Cor Realce" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Cor Realce" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Cor Realce" + +#, fuzzy +msgid "Icon" +msgstr "Aproximar" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Realzar fiestra" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Cor usada para evidenciar a fiestra sobre a cal paira o cursor do rato" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Próxima fiestra" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Próxima fiestra (Todos os Ambientes de Traballo)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Próxima fiestra (Grupo)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Próxima fiestra (Grupo)" -msgid "Size of snowflakes" -msgstr "Tamaño dos flocos de neve" +msgid "Original Window Position" +msgstr "" -msgid "Snow" -msgstr "Neve" +#, fuzzy +msgid "Popup Window Delay" +msgstr "Tipos de fiestras a agrupar" -msgid "Snow Direction" -msgstr "Dirección da Neve" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Mostrar anel se non estivera visíbel e seleccionar a próxima fiestra." -msgid "Snow Over Windows" -msgstr "Neve por arriba das Fiestras" +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Mostar anel se non visíbel e seleccionar a próxima fiestra da aplicación " +"actual." -msgid "Snow Speed" -msgstr "Velocidade da Neve" +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Mostrar anel, se non estivera visíbel, e selecionar próxima fiestra de todas " +"as fiestras." -msgid "Snow Textures" -msgstr "Texturas da Neve" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Mostrar anel se non estivera visíbel e seleccionar a fiestra anterior." -msgid "Snow Toggle" -msgstr "Trocar Neve" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Mostar anel se non visíbel e seleccionar a fiestra anterior da aplicación " +"actual." -msgid "Snow for Compiz" -msgstr "Snow para Compiz" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Mostrar anel, se non estivera visíbel, e selecionar fiestra anterior de " +"todas as fiestras" -msgid "Snow is drawn above windows" -msgstr "A Neve é mostrada por cima das fiestras" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Texturas da neve" +#, fuzzy +msgid "Prev window" +msgstr "fiestra Anterior" -msgid "Snow toggle key" -msgstr "Tecla de alternar activación da Neve" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "fiestra Anterior (Todos os Ambientes de Traballo)" -msgid "Speed of falling snow" -msgstr "Velocidade da queda de neve" +#, fuzzy +msgid "Prev window (Group)" +msgstr "fiestra Anterior (Grupo)" -msgid "Textures" -msgstr "Texturas" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "fiestra Anterior (Grupo)" -msgid "Top to Bottom" -msgstr "Cima para Baixo" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Atraso de actualización" +#, fuzzy +msgid "Select next panel type window." +msgstr "Selecciona onde posicionar o título da fiestra." -msgid "A simple splash plugin" -msgstr "Plugin para mostrar un pantalla de logótipo" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Ficheiro coa Imaxe de Fondo" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Selecciona onde posicionar o título da fiestra." -msgid "Background brightness." -msgstr "Brillo da imaxe de fondo." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Ficheiro coa Imaxe de Fondo." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Realzar fiestra" -msgid "Background saturation." -msgstr "Saturación da imaxe de fondo." +#, fuzzy +msgid "Show Rectangle" +msgstr "Rectangular" -msgid "Display In/Out Time." -msgstr "Duración do (Des) Aparecemento da pantalla de logotipo." +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Mostrar Título da fiestra na Miniatura." -msgid "Display Time" -msgstr "Duración da pantalla de logotipo." +#, fuzzy +msgid "Show minimized windows" +msgstr "Fiestras non minimizábeis" -msgid "Images" -msgstr "Imaxes" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Iniciar pantalla de logótipo" +#, fuzzy +msgid "Switcher speed" +msgstr "Modo do alternador" -msgid "Logo File" -msgstr "Ficheiro co logotipo" +#, fuzzy +msgid "Switcher timestep" +msgstr "Espazo de tempo do Shift" -msgid "Logo image File." -msgstr "Ficheiro de imaxe co logótipo." +#, fuzzy +msgid "Switcher windows" +msgstr "Fiestras filtradas" -msgid "Show on first start" -msgstr "Mostrar no arranque inicial" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Barra de tarefas" -msgid "Show splash on first start." -msgstr "Mostrar pantalla de logótipo no arranque inicial." +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Pantalla de Logotipo" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Iniciar pantalla de logotipo." +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Fiestras que se deben mostrar no shift switcher" msgid "Render text to texture" msgstr "Renderizar texto en texturas" @@ -4649,10 +4776,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "Colocar no Centro" - -#, fuzzy msgid "Color 1" msgstr "Cores" @@ -4792,6 +4915,14 @@ msgid "Matches" msgstr "Coincidencias" +#, fuzzy +msgid "Maximized" +msgstr "Maximizado" + +#, fuzzy +msgid "Maximized windows" +msgstr "Fiestras non maximizábeis" + msgid "No ARGB visuals" msgstr "Sen visualización ARGB" @@ -4870,6 +5001,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Parámetro de arranxo de fragmentos AIGLX" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Corrección para o Menú do Firefox" @@ -4914,6 +5048,9 @@ "Tornar fiestras coa opción \"en tódolos escritorios\" fixas. As fiestras " "fixas serán visibles en tódolos escritorios." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "Facer que as aplicacións máis antigas e Wine funcionen como é esperado en " @@ -4942,6 +5079,323 @@ msgid "Workarounds" msgstr "Correccións" +#~ msgid "Airplane" +#~ msgstr "Avión" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Complemento do traxecto de voo do avión" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Espazo de tempo de animación para Efectos Intensos" + +#~ msgid "Automatic" +#~ msgstr "Automático" + +#~ msgid "Beam" +#~ msgstr "Feixe" + +#~ msgid "Beam Color" +#~ msgstr "Cor Feixe" + +#~ msgid "Beam Life" +#~ msgstr "Vida do Feixe" + +#~ msgid "Beam Slowdown" +#~ msgstr "Abrandamento do Feixe" + +#~ msgid "Beam Spacing" +#~ msgstr "Espazo do Feixe" + +#~ msgid "Beam Up" +#~ msgstr "Feixe para arriba" + +#~ msgid "Beam Width" +#~ msgstr "Ancho Feixe" + +#~ msgid "Beam color." +#~ msgstr "Cor do feixe" + +#~ msgid "Beam life." +#~ msgstr "Vida do feixe." + +#~ msgid "Beam slowdown." +#~ msgstr "Abrandamento do feixe." + +#~ msgid "Beam width." +#~ msgstr "Ancho do feixe." + +#~ msgid "Burn" +#~ msgstr "Queimar" + +#~ msgid "Domino" +#~ msgstr "Dominó" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Dirección de caída das pezas do Dominó" + +#~ msgid "Explode" +#~ msgstr "Explosión" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Dirección na cal cairán as pezas de Dominó." + +#~ msgid "Fire" +#~ msgstr "Lume" + +#~ msgid "Fire Smoke" +#~ msgstr "Fume" + +#~ msgid "Fire constant speed" +#~ msgstr "Velocidade constante do lume" + +#~ msgid "Fire direction" +#~ msgstr "Dirección do lume" + +#~ msgid "Fire direction." +#~ msgstr "Dirección do lume." + +#~ msgid "Fire smoke." +#~ msgstr "Fume do lume." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Voar cara a barra de tarefas cando se minimiza" + +#~ msgid "Fold" +#~ msgstr "Dobrar" + +#~ msgid "Fold Direction" +#~ msgstr "Dirección da dobra" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Dirección de abertura das dobras para as pezas no efecto Razr" + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "Aproximar" + +#~ msgid "In-out" +#~ msgstr "In-out" + +#~ msgid "Leaf Spread" +#~ msgstr "Espallamento das follas" + +#~ msgid "Left-right" +#~ msgstr "Esquerda-Dereita" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Compremento do traxecto de vóo do avión." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Tornar duración do efecto de lume dependente da altura da fiestra." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Dirección(s) de movemento para as pezas da fiestra." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Número de partículas de lume" + +#~ msgid "Number of fire particles." +#~ msgstr "Número de partículas de lume." + +#~ msgid "Out" +#~ msgstr "Afastar" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Dirección de abertura da dobra Razr" + +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#~ msgid "Rotation Angle" +#~ msgstr "Ángulo de Rotación" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Ángulo de rotación das pezas das fiestras (en graos) ." + +#~ msgid "Skewer" +#~ msgstr "Grella" + +#~ msgid "Skewer Direction" +#~ msgstr "Dirección da grella" + +#~ msgid "Spacing between beams." +#~ msgstr "Espazo entre feixes." + +#~ msgid "Tessellation Type" +#~ msgstr "Tipo de Mosaico" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "" +#~ "Tipo de mosaico que se empregará para \" construir\" as pezas resultantes " +#~ "da explosión dunha fiestra." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "" +#~ "Tipo de mosaico que se empregará para \" construir\" as pezas dunha " +#~ "fiestra." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Tempo en milisegundos entre cada renderizado da animación intensa (Ex. " +#~ "Arder, Feixe). Canto máis alto o número, o movemento tórnase con máis " +#~ "saltos." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "A fiestra animada será separada en pezas ao longo dunha grella. " +#~ "Especifique o número de celas da grella ao longo da altura da fiestra." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "A fiestra animada será separada en pezas ao longo dunha grella. " +#~ "Especifique o número de celas da grella ao longo da largura da fiestra." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "A fiestra estourada será separada en pezas ao longo dunha grella. " +#~ "Especifique o número de celas da grella ao longo da altura da fiestra." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "A fiestra estourada será separada en pezas ao longo dunha grella. " +#~ "Especifique o número de celas da grella ao longo da largura da fiestra." + +#~ msgid "Thickness" +#~ msgstr "Espesura" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Espesura dos polígonos animados" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Espesura dos polígonos estourados" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Espesura das pezas da fiestra animada (en pixeis) ." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Espesura das pezas da fiestra explodida (en pixeis) ." + +#~ msgid "Up-down" +#~ msgstr "Arrib-Abaixo" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Se a fiestra debe voar para a barra de tarefas cando sexa minimizada " +#~ "empregando o efecto Avión." + +#~ msgid "Window Grid Height" +#~ msgstr "Altura da grella da fiestra" + +#~ msgid "Window Grid Width" +#~ msgstr "Ancho da grella da fiestra" + +#~ msgid "Window folding direction." +#~ msgstr "Dirección de dobra das fiestras" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Espesura da fiestra en pixeis. Definir este valor maior que 0 " +#~ "desactivará as sombras, difusións e reflexos durante a animación." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ " Amplitude (tamaño das ondas das dobras) das Dobras Horizontais " +#~ "relativamente á largura da fiestra. Valores negativos dobran para fora." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ " Amplitude (tamaño das ondas das dobras) das dobras curvadas " +#~ "relativamente á largura da fiestra. Valores negativos dobran para fora." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "" +#~ "Amplitude das ondas (tamaño das ondas) relativamente á altura da fiestra." + +#~ msgid "Brightness Decrease" +#~ msgstr "Reducir Brillo" + +#~ msgid "Brightness Increase" +#~ msgstr "Aumentar Brillo" + +#~ msgid "Brightness Step" +#~ msgstr "Salto do Brillo" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Brillo e saturación" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Axustes de brillo e saturación" + +#~ msgid "Brightness settings" +#~ msgstr "Preferenzas de brillo" + +#~ msgid "Brightness values for windows" +#~ msgstr "Valores de brillo para as fiestras" + +#~ msgid "Brightness window values" +#~ msgstr "Valores de brillo das fiestras" + +#~ msgid "Brightness windows" +#~ msgstr "Brillo das fiestras" + +#~ msgid "Saturation Decrease" +#~ msgstr "Reducir Saturación" + +#~ msgid "Saturation Increase" +#~ msgstr "Aumentar Saturación" + +#~ msgid "Saturation Step" +#~ msgstr "Salto da Saturación" + +#~ msgid "Saturation settings" +#~ msgstr "Preferenzas de saturación" + +#~ msgid "Saturation values for windows" +#~ msgstr "Valores de saturación das fiestras" + +#~ msgid "Saturation window values" +#~ msgstr "Valores de saturación da fiestra" + +#~ msgid "Saturation windows" +#~ msgstr "Saturación das fiestras" + +#~ msgid "Window specific" +#~ msgstr "Especifico da fiestra" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Fiestras que deben ter un brillo diferente por omisión" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Fiestras que debenter unha saturación por omisión" + +#~ msgid "Close Windows In Scale" +#~ msgstr "pechar Fiestras en Scale" + #~ msgid "Animation Speed" #~ msgstr "Velocidade da animación" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/gu.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/gu.po --- compiz-fusion-plugins-unsupported-0.7.6/po/gu.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/gu.po 2008-09-17 14:29:33.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" "PO-Revision-Date: 2007-12-17 12:25+0530\n" "Last-Translator: \n" "Language-Team: gist Gujarati team \n" @@ -119,6 +119,12 @@ msgid "Brightness of faded windows" msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -149,12 +155,6 @@ msgid "Window types that should be Opacified." msgstr "વિન્ડો પ્રકારો કે જેઓ અપારદર્શક બનાવવામાં આવવા જોઈએ." -msgid "Airplane" -msgstr "હવાઈજહાજ" - -msgid "Airplane Flying Path Length" -msgstr "હવાઈજહાજ ઉડાન પાથ લંબાઈ" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -162,20 +162,6 @@ "બધી અસરો રેન્ડમ રીતે પસંદ થયેલ છે, પસંદિત અસરને અવગણીને. જો ઘટના માટે કંઈપણ પસંદ થયેલ નહિં " "હોય, કે જે ઘટના એનીમેટ થશે નહિં." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"વિન્ડોની પહોળાઈને સંબંધિત આડા ફોલ્ડનો જથ્થો (ફોલ્ડમાંના તરંગોનું માપ). ઋણ કિંમતો બહારની " -"દિશામાં ફોલ્ડ કરવામાં આવે છે." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"વિન્ડોની પહોળાઈને સંબંધિત વળાંકવાળા ફોલ્ડનો જથ્થો (ફોલ્ડમાંના તરંગોનું માપ). ઋણ કિંમતો " -"બહારની દિશામાં ફોલ્ડ કરવામાં આવે છે." - msgid "Angle of window at the end of the animation." msgstr "એનીમેશનના અંતે વિન્ડોનો કોણ." @@ -185,9 +171,6 @@ msgid "Animation Time Step" msgstr "એનીમેશન સમય પગલું" -msgid "Animation Time Step For Intense Effects" -msgstr "હેતુસરની અસરો માટે એનીમેશન સમય ઝડપ" - msgid "Animation duration in milliseconds for close effect." msgstr "બંધ કરો અસર માટે એનીમેશન ગાળો મિલિસેકન્ડોમાં." @@ -206,51 +189,12 @@ msgid "Animations" msgstr "એનીમેશનો" -msgid "Automatic" -msgstr "આપમેળે" - msgid "Away Angle" msgstr "દૂર કોણ" msgid "Away Position" msgstr "દૂર સ્થાન" -msgid "Beam" -msgstr "બીમ" - -msgid "Beam Color" -msgstr "બીમ રંગ" - -msgid "Beam Life" -msgstr "બીમ જીવન" - -msgid "Beam Slowdown" -msgstr "બીમ ધીમું" - -msgid "Beam Spacing" -msgstr "બીમ જગ્યા" - -msgid "Beam Up" -msgstr "બીમ ઉપર" - -msgid "Beam Width" -msgstr "બીમ પહોળાઈ" - -msgid "Beam color." -msgstr "બીમ રંગ." - -msgid "Beam life." -msgstr "બીમ જીવન." - -msgid "Beam slowdown." -msgstr "બીમ ધીમું." - -msgid "Beam width." -msgstr "બીમ પહોળાઈ." - -msgid "Burn" -msgstr "બાળો" - msgid "Close Animation" msgstr "એનીમેશન બંધ કરો" @@ -273,7 +217,8 @@ msgid "Curved Fold" msgstr "વણાંકવાળું ફોલ્ડ" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "વળાંકવાળો ફોલ્ડ જથ્થો" msgid "Dodge" @@ -282,15 +227,6 @@ msgid "Dodge Gap Ratio" msgstr "ઓચિંતી શરૂઆત જગ્યા દર" -msgid "Domino" -msgstr "માસ્ક" - -msgid "Domino Piece Falling Direction" -msgstr "માસ્ક ટુકડા પડતી દિશા" - -msgid "Down" -msgstr "નીચે" - msgid "Dream" msgstr "સ્વપ્ન" @@ -300,77 +236,22 @@ msgid "Effect Settings" msgstr "અસર સુયોજનો" -msgid "Explode" -msgstr "ફેલાવો" - msgid "Fade" msgstr "ધૂંધ" -msgid "Falling direction for Domino pieces." -msgstr "માસ્ક ટુકડાઓ માટે પડવાની દિશા." - -msgid "Fire" -msgstr "આગ" - -msgid "Fire Particle Color" -msgstr "આગ કણ રંગ" - -msgid "Fire Particle Life" -msgstr "આગ કણ જીવન" - -msgid "Fire Particle Size" -msgstr "આગ કણ માપ" - -msgid "Fire Particle Slowdown" -msgstr "આગ કણ ધીમું" - -msgid "Fire Smoke" -msgstr "આગ ધુમાડો" - -msgid "Fire constant speed" -msgstr "આગ અચળ ઝડપ" - -msgid "Fire direction" -msgstr "આગ દિશા" - -msgid "Fire direction." -msgstr "આગ દિશા." - -msgid "Fire particle color." -msgstr "આગ કણ રંગ." - -msgid "Fire particle life." -msgstr "આગ કણ જીવન." - -msgid "Fire particle size." -msgstr "આગ કણ માપ." - -msgid "Fire particle slowdown." -msgstr "આગ કણ ધીમું." - -msgid "Fire smoke." -msgstr "આગ ધુમાડો." - msgid "Fixed window interior during the Rollup animation." msgstr "એનીમેશન લપેટવા દરમ્યાન ચોક્કસ વિન્ડો અંદરનું." -msgid "Fly to TaskBar on Minimize" -msgstr "ન્યૂનતમ કરવા પર ક્રિયાપટ્ટી પર ઉડો" - msgid "Focus Animation" msgstr "ફોકસ એનીમેશન" msgid "Focus Effect" msgstr "ફોકસ અસર" -msgid "Fold" -msgstr "વાળો" - -msgid "Fold Direction" -msgstr "વાળવાની દિશા" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Razr અસરમાં ટુકડાઓ માટે ખલતી દિશા ફોલ્ડ કરો." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "સરક ૧" @@ -378,16 +259,11 @@ msgid "Glide 2" msgstr "સરક ૨" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "આગ અસર માટે પાસે રેન્ડમ રંગો હોય, તે Mystical Fire તરીકે પણ ઓળખાય છે." - -msgid "Hexagonal" -msgstr "ષષ્ટકોણીય" - msgid "Horizontal Folds" msgstr "આડા ફોલ્ડ" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "આડા ફોલ્ડનો જથ્થો" msgid "How spring-like the Sidekick animation should be." @@ -396,24 +272,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "વસંત-જેવું નાનામોટાપણાનું એનીમેશન કેવું હોવું જોઈએ." -msgid "In" -msgstr "અંદર" - -msgid "In-out" -msgstr "અદર-બહાર" - -msgid "Leaf Spread" -msgstr "પાંદડા વિસ્તરણ" - -msgid "Left" -msgstr "ડાબું" - -msgid "Left-right" -msgstr "ડાબે-જમણે" - -msgid "Length of airplane's flying path." -msgstr "હવાઈજહાજના ઉડાન પાથની લંબાઈ." - msgid "Magic Lamp" msgstr "જાદુઈ દીવો" @@ -435,9 +293,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "જાદુઈ દીવો ખસેડવાનો અંત ખોલો/બંધ કરો" -msgid "Make fire effect duration be dependent on window height." -msgstr "આગ અસર ગાળાને વિન્ડો ઊંચાઈ પર આધારભૂત બનાવો." - msgid "Minimize Animation" msgstr "એનીમેશન ન્યૂનતમ કરો" @@ -447,21 +302,12 @@ msgid "Minimize/Unminimize Only" msgstr "માત્ર ન્યૂનતમ કરો/ન્યૂનતમમાંથી પાછા લાવો" -msgid "Movement direction(s) for window pieces." -msgstr "વિન્ડો ટુકડાઓ માટે ચાલ દિશા(ઓ)." - msgid "None" msgstr "કંઈ નહિં" -msgid "Number Of Fire Particles" -msgstr "આગ કણોની સંખ્યા" - msgid "Number of Horizontal Folds" msgstr "આડા ફોલ્ડની સંખ્યા" -msgid "Number of fire particles." -msgstr "આગ કણોની સંખ્યા." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "બાજુલાત માટે ફેરવવાની સંખ્યા (રેન્ડમપણા માટે વત્તા અથવા ઓછા 10%)." @@ -490,15 +336,13 @@ msgid "Options" msgstr "વિકલ્પો" -msgid "Out" -msgstr "બહાર" - msgid "Pool" msgstr "પુલ" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "જો રેન્ડમ અસર પસંદ થયેલ હોય તો પસંદ કરવાની અસરોની પુલ. સંપૂર્ણ યાદી પુનઃસંગ્રહવા માટે " "પુનઃસુયોજન ક્લિક કરો." @@ -512,36 +356,15 @@ msgid "Random Effects" msgstr "રેન્ડમ અસરો" -msgid "Randomly Colored Fire" -msgstr "રેન્ડમ રીતે રંગાયેલ આગલ" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "ગાળા પર ફોકસ કરવા માટે ઓચિતી શરૂઆત સમયો વચ્ચેની જગ્યાનો દર." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Razr ફોલ્ડ ખોલવાની દિશા" - -msgid "Rectangular" -msgstr "લંબચોરસ" - -msgid "Right" -msgstr "જમણું" - msgid "Roll Up" msgstr "ઉપર લો" msgid "Rollup Fixed Interior" msgstr "ચોક્કસ અંદરનું ઉપર લો" -msgid "Rotation Angle" -msgstr "ફેરવવાનો કોણ" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "એનીમેટ થયેલ વિન્ડો ટુકડાઓને ફેરવવાનો કોણ (ડિગ્રીઓમાં)." - msgid "Shade Animation" msgstr "પડછાયા એનીમેશન" @@ -557,15 +380,6 @@ msgid "Sidekick Springiness" msgstr "બાજુલાત વસંતપણું" -msgid "Skewer" -msgstr "નમાવનાર" - -msgid "Skewer Direction" -msgstr "નમાવનાર દિશા" - -msgid "Spacing between beams." -msgstr "બીમો વચ્ચેની જગ્યા." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -575,43 +389,12 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "શૂન્યાવકાશ માટે ખોલો અસરની શરૂઆતી પહોળાઈ અને બંધ કરો અસરની અંતિમ પહોળાઈ." -msgid "Tessellation Type" -msgstr "ચોકઠાં પાડવાનો પ્રકાર" - -msgid "Tessellation type for exploding window pieces." -msgstr "વિન્ડો ટુકડાઓના ફેલાવા માટે ચોકઠાં પાડવાનો પ્રકાર." - -msgid "Tessellation type for window pieces." -msgstr "વિન્ડો ટુકડાઓ માટે ચોકઠાં પાડવાનો પ્રકાર." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" "એનીમેશનના દરેક ઘાટ વચ્ચેના સમયનો જથ્થો મિલિસેકન્ડોમાં. જેટલી સંખ્યા ઊંચી, તેટલી ચાલ તૂટશે." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"હેતુસરના એનીમેશનના (દાત. બાળો, બીમ) દરેક ઘાટ વચ્ચેના સમયનો જથ્થો મિલિસેકન્ડોમાં. જેટલી " -"સંખ્યા ઊંચી, તેટલી ચાલ તૂટશે." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"એનીમેટ થયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થશે. વિન્ડોની ઊંચાઈ સાથે જાળી ખાનાંઓની " -"સંખ્યા સ્પષ્ટ કરો." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"એનીમેટ થયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થશે. વિન્ડોની પહોંચાઈ સાથે જાળી ખાનાંઓની " -"સંખ્યા સ્પષ્ટ કરો." - msgid "The animation effect shown when closing a window." msgstr "જ્યારે વિન્ડો બંધ કરી રહ્યા હોય ત્યારે બતાવાયેલ એનીમેશન અસર." @@ -627,20 +410,6 @@ msgid "The animation effect shown when shading a window." msgstr "જ્યારે વિન્ડો છાયાંકિત કરી રહ્યા હોય ત્યારે બતાવાયેલ એનીમેશન અસર." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"ફેલાયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થઈ જશે. વિન્ડોની ઊંચાઈ સાથે જાળી ખાનાંઓની " -"સંખ્યા સ્પષ્ટ કરો." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"ફેલાયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થઈ જશે. વિન્ડોની પહોળાઈ સાથે જાળી ખાનાંઓની " -"સંખ્યા સ્પષ્ટ કરો." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "જાદુઈ દીવા પાસે જેટલું મહત્તમ જથ્થો (તરંગોનું માપ) હશે." @@ -654,36 +423,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "આડા ફોલ્ડની સંખ્યા કે જે આડા ફોલ્ડ એનીમેશનમાં હશે." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "વિન્ડો ઊંચાઈને અનુલક્ષીને તરંગનો જથ્થો (તરંગોનું માપ)." - msgid "The width of the wave relative to the window height." msgstr "વિન્ડોની ઊંચાઈને સંબંધિત તરંગની પહોળાઈ." msgid "The windows that will be animated." msgstr "વિન્ડો કે જે એનીમેટ થશે." -msgid "Thickness" -msgstr "જાડાઈ" - -msgid "Thickness of Animated Polygons" -msgstr "એનીમેટ થયેલ પોલીગોનની જાડાઈ" - -msgid "Thickness of Exploding Polygons" -msgstr "ફેલાયેલ પોલીગોનની જાડાઈ" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "એનીમેટ થયેલ વિન્ડો ટુકડાઓની જાડાઈ (પિક્સેલોમાં)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "ફેલાયેલ વિન્ડો ટુકડાઓની જાડાઈ (પિક્સેલોમાં)." - -msgid "Up" -msgstr "ઉપર" - -msgid "Up-down" -msgstr "ઉપર-નીચે" - msgid "Use various animations as window effects" msgstr "વિન્ડો અસરો તરીકે વિવિધ એનીમેશનો વાપરો" @@ -720,15 +465,17 @@ msgid "Wave" msgstr "તરંગ" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "તરંગ જથ્થો" msgid "Wave Width" msgstr "તરંગ પહોળાઈ" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." -msgstr "શું વિન્ડો ક્રિયાપટ્ટી પર તરવી જોઈએ જ્યારે હવાઈજહાજ અસર સાથે ન્યૂનતમ બનાવેલ હોય." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -752,28 +499,12 @@ "Folds effect." msgstr "શું વિન્ડો ક્રિયાપટ્ટી પર તરવી જોઈએ જ્યારે આડા ફોલ્ડ અસર સાથે ન્યૂનતમ બનાવેલ હોય." -msgid "Window Grid Height" -msgstr "વિન્ડો જાળી ઊંચાઈ" - -msgid "Window Grid Width" -msgstr "વિન્ડો જાળી પહોળાઈ" - -msgid "Window folding direction." -msgstr "વિન્ડો ફોલ્ડ કરવાની દિશા." - msgid "Window that should animate with this effect when focused." msgstr "વિન્ડો કે જે આ અસર સાથે એનીમેટ થવી જોઈએ જ્યારે ફોકસ થયેલ હોય." msgid "Window that should animate with this effect when shaded." msgstr "વિન્ડો કે જે આ અસર સાથે એનીમેટ થવી જોઈએ જ્યારે છાયાંકિત થયેલ હોય." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"વિન્ડો જાડાઈ પિક્સેલોમાં. આને ૦ કરતાં મોટામાં સુયોજીત કરવાનું પડછાયા, ઝાંખાપણું, અને " -"પરાવર્તનને એનીમેશન દરમ્યાન નિષ્ક્રિય કરી નાંખશે." - msgid "Zoom" msgstr "નાનું-મોટુ કરો" @@ -889,83 +620,12 @@ msgstr "Y સ્થાન" #, fuzzy -msgid "Brightness Decrease" -msgstr "તેજસ્વીતા" - -#, fuzzy -msgid "Brightness Increase" -msgstr "તેજસ્વીતા" - -#, fuzzy -msgid "Brightness Step" -msgstr "તેજસ્વીતા" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" +msgid "Bicubic filter" +msgstr "ગાળક બદલો" -msgid "Brightness and Saturation adjustments" +msgid "Bicubic texture filtering" msgstr "" -#, fuzzy -msgid "Brightness settings" -msgstr "પસંદિત વિન્ડોની તેજસ્વીતા" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" - -#, fuzzy -msgid "Brightness window values" -msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" - -#, fuzzy -msgid "Brightness windows" -msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" - -msgid "General" -msgstr "સામાન્ય" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "સંતુલન" - -#, fuzzy -msgid "Saturation Increase" -msgstr "સંતુલન" - -#, fuzzy -msgid "Saturation Step" -msgstr "સંતુલન" - -#, fuzzy -msgid "Saturation settings" -msgstr "પસંદિત વિન્ડોનું સંતુલન" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "ધૂંધળી વિન્ડોનું સંતુલન" - -#, fuzzy -msgid "Saturation window values" -msgstr "ધૂંધળી વિન્ડોનું સંતુલન" - -#, fuzzy -msgid "Saturation windows" -msgstr "ધૂંધળી વિન્ડોનું સંતુલન" - -#, fuzzy -msgid "Window specific" -msgstr "વિન્ડો અપારદર્શકતા" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "વિન્ડો કે જેનું માપ મૂળભૂત રીતે બદલી શકાવું જોઈએ" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "વિન્ડો કે જેનું માપ મૂળભૂત રીતે બદલી શકાવું જોઈએ" - msgid "Color filter" msgstr "રંગ ગાળક" @@ -1058,6 +718,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "વિન્ડો વ્યવસ્થાપક આદેશ વાક્ય. DO NOT ENTER COMPIZ HERE!!!" +msgid "Above" +msgstr "ઉપર" + msgid "Adjust bottom face image to rotation" msgstr "તળિયેના ચહેરાના ચિત્રને ફેરવવામાં સંતુલિત કરો" @@ -1079,6 +742,19 @@ msgid "Appearance" msgstr "દેખાવ" +#, fuzzy +msgid "Aspect ratio" +msgstr "એસ્પેક્ટ રેશિયો" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "આપોઆપ નાનુંમોટું કરો" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "માત્ર માઉસ ફેરવવા પર જ આપોઆપ નાનુંમોટું કરો" + msgid "Behaviour" msgstr "વર્તણૂક" @@ -1112,18 +788,62 @@ msgid "Color of bottom face of the cube" msgstr "ઘનના તળિયેના ચહેરાનો રંગ" +msgid "Color of the ground (far)." +msgstr "મેદાનનો રંગ (દૂર)." + +msgid "Color of the ground (near)." +msgstr "મેદાનનો રંગ (નજીક)." + msgid "Color of top face of the cube" msgstr "ઘનના ટોચના ચહેરાનો રંગ" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Compiz ઘન પરાવર્તન" + msgid "Cube Bottom Color" msgstr "ઘન તળિયેનો રંગ" -msgid "Cube Caps" -msgstr "ઘન કેપ્સ" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "શણગારો માટે પરાવર્તન" msgid "Cube Top Color" msgstr "ઘન ટોચ રંગ" +#, fuzzy +msgid "Cube caps" +msgstr "ઘન કેપ્સ" + +#, fuzzy +msgid "Cylinder" +msgstr "સાફ કરો" + +#, fuzzy +msgid "Deform caps" +msgstr "સમયગાળો" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "માત્ર માઉસ ફેરવવા પર જ આપોઆપ નાનુંમોટું કરો" + +#, fuzzy +msgid "Deformation" +msgstr "સમયગાળો" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "સમયગાળો" + +msgid "Distance" +msgstr "અંતર" + msgid "Draw bottom face" msgstr "તળિયેનો ચહેરો દોરો" @@ -1136,12 +856,38 @@ msgid "Draw top face of the cube" msgstr "ઘનનો ટોચનો ચહેરો દોરો" +#, fuzzy +msgid "Enabled" +msgstr "સક્રિય" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Compiz ઘન પરાવર્તન" + msgid "Go back to previous image for bottom face of the cube" msgstr "ઘનના તળિયેના ચહેરા માટે પહેલાંના ચિત્ર પર પાછા જાવ" msgid "Go back to previous image for top face of the cube" msgstr "ઘનના ટોચના ચહેરા માટે પહેલાંના ચિત્ર પર પાછા જાવ" +msgid "Ground color(far)" +msgstr "મેદાનનો રંગ (દૂર)" + +msgid "Ground color(near)" +msgstr "મેદાન રંગ (નજીક)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "તીવ્રતા" + +msgid "Jumpy" +msgstr "કૂદકાવાળું" + +msgid "Jumpy reflection" +msgstr "કૂદકાવાળું પરાવર્તન" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "PNG અને SVG ફાઈલોની યાદી કે જે ઘનના તળિયેની બાજુએ રેન્ડર થવી જોઈએ" @@ -1149,6 +895,22 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "PNG અને SVG ફાઈલોની યાદી કે જે ઘનની ટોચે રેન્ડર થવી જોઈએ" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Expo સ્થિતિ એસ્પેક્ટ રેશિયો" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "તળિયેના ચહેરાના ચિત્રને ફેરવવામાં સંતુલિત કરો" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Expo સ્થિતિ એસ્પેક્ટ રેશિયો" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "ટોચના ચહેરાના ચિત્રને ફેરવવામાં સંતુલિત કરો" + msgid "Next bottom image" msgstr "આગળનું તળિયેનું ચિત્ર" @@ -1161,8 +923,23 @@ msgid "Prev top image" msgstr "પહેલાંનું ટોચનું ચિત્ર" -msgid "Render images on top and bottom of the cube" -msgstr "ઘનની ટોચ અને તળિયેના ચિત્રો ઢાળો" +msgid "Reflection" +msgstr "પરાવર્તન" + +msgid "Reflection ground size" +msgstr "મેદાન માપ પરાવર્તન" + +msgid "Reflection ground size." +msgstr "મેદાન માપ પરાવર્તન." + +msgid "Reflection intensity" +msgstr "પરાવર્તન તીવ્રતા" + +msgid "Reflection mode" +msgstr "પરાવર્તન સ્થિતિ" + +msgid "Reflection mode." +msgstr "પરાવર્તન સ્થિતિ." msgid "Scale bottom image" msgstr "તળિયેનું ચિત્ર ખેંચો" @@ -1176,69 +953,36 @@ msgid "Scale top image" msgstr "ટોચના ચિત્રને ખેંચો" +#, fuzzy +msgid "Sphere" +msgstr "ઝડપ" + msgid "Top image files" msgstr "ટોચની ચિત્ર ફાઈલો" -msgid "Above" -msgstr "ઉપર" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "આપોઆપ નાનુંમોટું કરો" +msgid "Zoom out automatically only on mouse rotate." +msgstr "માત્ર માઉસ ફેરવવા પર જ આપોઆપ નાનું કરો." -msgid "Auto zoom only on Mouse Rotate" -msgstr "માત્ર માઉસ ફેરવવા પર જ આપોઆપ નાનુંમોટું કરો" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "ઘનને સ્ક્રીનમાં બંધબેસાડવા માટે આપોઆપ નાનું કરો." -msgid "Color of the ground (far)." -msgstr "મેદાનનો રંગ (દૂર)." +#, fuzzy +msgid "Cube Caps" +msgstr "ઘન કેપ્સ" -msgid "Color of the ground (near)." -msgstr "મેદાનનો રંગ (નજીક)." +msgid "Render images on top and bottom of the cube" +msgstr "ઘનની ટોચ અને તળિયેના ચિત્રો ઢાળો" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz ઘન પરાવર્તન" +msgstr "ઘન પરાવર્તન" msgid "Cube Reflection" msgstr "ઘન પરાવર્તન" -msgid "Distance" -msgstr "અંતર" - -msgid "Ground color(far)" -msgstr "મેદાનનો રંગ (દૂર)" - -msgid "Ground color(near)" -msgstr "મેદાન રંગ (નજીક)" - -msgid "Intensity" -msgstr "તીવ્રતા" - -msgid "Jumpy" -msgstr "કૂદકાવાળું" - -msgid "Jumpy reflection" -msgstr "કૂદકાવાળું પરાવર્તન" - -msgid "Reflection ground size" -msgstr "મેદાન માપ પરાવર્તન" - -msgid "Reflection ground size." -msgstr "મેદાન માપ પરાવર્તન." - -msgid "Reflection intensity" -msgstr "પરાવર્તન તીવ્રતા" - -msgid "Reflection mode" -msgstr "પરાવર્તન સ્થિતિ" - -msgid "Reflection mode." -msgstr "પરાવર્તન સ્થિતિ." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "માત્ર માઉસ ફેરવવા પર જ આપોઆપ નાનું કરો." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "ઘનને સ્ક્રીનમાં બંધબેસાડવા માટે આપોઆપ નાનું કરો." - msgid "Animation used when switching to expo mode" msgstr "જ્યારે expo સ્થિતિમાં બદલી રહ્યા હોય ત્યારે વપરાતું એનીમેશન" @@ -1263,10 +1007,6 @@ msgstr "ગતિ ઝાંખાપણાની મજબૂતાઈ." #, fuzzy -msgid "Deformation" -msgstr "સમયગાળો" - -#, fuzzy msgid "Deformation of the expo wall" msgstr "expo દિવાલનું અંતર" @@ -1358,9 +1098,6 @@ msgid "Previous viewport" msgstr "પહેલાંનો દૃશ્યપોર્ટ" -msgid "Reflection" -msgstr "પરાવર્તન" - msgid "Reflection Scale" msgstr "પરાવર્તન માપદંડ" @@ -1470,6 +1207,10 @@ msgid "Center the mouse" msgstr "માઉસને કેન્દ્રમાં રાખો" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "માઉસ નિર્દેશક ખેંચો" + msgid "Enable focus tracking" msgstr "ફોકસ ટ્રેકિંગ સક્રિય કરો" @@ -1532,20 +1273,14 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "જ્યારે માઉસ મોટું થયેલ હોય અને ખેંચાયેલ હોય ત્યારે મૂળ માઉસ નિર્દેશકને છુપાવે છે" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"માઉસ સ્થાનને કેટલી વાર પોલ કરવો પડશે, મિલિસેકન્ડોમાં. ચોપી વર્તણૂક ઘટાડવા માટે આને " -"ઘટાડો." +#, fuzzy +msgid "Minimum zoom factor" +msgstr "ન્યૂનતમ ખેંચાણ અવયવ" #, fuzzy msgid "Mouse Behaviour" msgstr "માઉસ વર્તણૂક" -msgid "Mouse Poll Interval" -msgstr "માઉસ પોલ અંતરાલ" - msgid "Mouse Restrain Margin" msgstr "માઉસ પુનઃમેળવવાનો દર" @@ -1631,12 +1366,21 @@ msgid "Speed" msgstr "ઝડપ" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "માઉસ નિર્દેશક ખેંચો" + msgid "Sync Mouse" msgstr "માઉસ સુમેળ કરો" msgid "Target Focused Window on Specific level" msgstr "ફોકસ થયેલ વિન્ડોને ચોક્કસ સ્તર પર લક્ષ્યાંકિત કરો" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "જ્યારે માઉસ પુનઃખેંચવાનો પ્રયાસ કરી રહ્યા હોય ત્યારે ઉમેરવાના હાંસિયાનું માપ" @@ -1652,10 +1396,24 @@ msgid "Use linear filter when zoomed in" msgstr "જ્યારે મોટું થયેલ હોય ત્યારે રેખીય ગાળક વાપરો" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "નાનામોટાપણાની ચાલ" +#, fuzzy +msgid "Zoom Box" +msgstr "નાનું-મોટુ કરો" + msgid "Zoom In" msgstr "મોટુ કરો" @@ -1684,6 +1442,9 @@ msgid "Zoom factor" msgstr "નાનામોટાપણાનો અવયવ" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "આ અવયવ પ્રમાણે મોટું/નાનું કરો. ઊંચી કિંમત એટલે ઝડપી નાનામોટાપણું." @@ -1739,20 +1500,54 @@ msgid "Toggle window fake ARGB." msgstr "વિન્ડો ફેક ARGB બદલો." +#, fuzzy +msgid "Add Particle" +msgstr "આગ કણ જીવન" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "પાશ્વભાગ તેજસ્વીતા" -msgid "Background brightness during paint" -msgstr "રંગકામ દરમ્યાન પાશ્વભાગ તેજસ્વીતા" +msgid "Background brightness during paint" +msgstr "રંગકામ દરમ્યાન પાશ્વભાગ તેજસ્વીતા" + +msgid "Clear" +msgstr "સાફ કરો" + +msgid "Clear (button)" +msgstr "સાફ કરો (બટન)" + +msgid "Clear (key)" +msgstr "સાફ કરો (કી)" + +msgid "Fire Particle Color" +msgstr "આગ કણ રંગ" + +msgid "Fire Particle Life" +msgstr "આગ કણ જીવન" + +msgid "Fire Particle Size" +msgstr "આગ કણ માપ" + +msgid "Fire Particle Slowdown" +msgstr "આગ કણ ધીમું" + +msgid "Fire particle color." +msgstr "આગ કણ રંગ." + +msgid "Fire particle life." +msgstr "આગ કણ જીવન." -msgid "Clear" -msgstr "સાફ કરો" +msgid "Fire particle size." +msgstr "આગ કણ માપ." -msgid "Clear (button)" -msgstr "સાફ કરો (બટન)" +msgid "Fire particle slowdown." +msgstr "આગ કણ ધીમું." -msgid "Clear (key)" -msgstr "સાફ કરો (કી)" +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "આગ અસર માટે પાસે રેન્ડમ રંગો હોય, તે Mystical Fire તરીકે પણ ઓળખાય છે." msgid "Initiate (button)" msgstr "આરંભ કરો (બટન)" @@ -1775,6 +1570,9 @@ msgid "Paint fire or other particles on the screen" msgstr "સ્ક્રીન પર આગ અથવા અન્ય કણો રંગો" +msgid "Randomly Colored Fire" +msgstr "રેન્ડમ રીતે રંગાયેલ આગલ" + msgid "Cube Gears" msgstr "ઘન ગીયરો" @@ -1870,6 +1668,9 @@ msgid "Font Size" msgstr "ફોન્ટ માપ" +msgid "General" +msgstr "સામાન્ય" + msgid "Glass" msgstr "કાચ" @@ -2481,9 +2282,19 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"માઉસ સ્થાનને કેટલી વાર પોલ કરવો પડશે, મિલિસેકન્ડોમાં. ચોપી વર્તણૂક ઘટાડવા માટે આને " +"ઘટાડો." + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "માઉસ પોલ અંતરાલ" + #, fuzzy msgid "Mouse position polling" msgstr "માઉસ પેનીંગ" @@ -3213,8 +3024,13 @@ msgid "Background color of the window title" msgstr "વિન્ડો શીર્ષકના પાશ્વભાગનો રંગ" -msgid "Close Windows In Scale" -msgstr "ખેંચવા પર વિન્ડો બંધ કરો" +#, fuzzy +msgid "Close Window" +msgstr "વિન્ડોની તકતી કરો" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "જ્યારે ખેંચાણ સ્થિતિમાં હોય ત્યારે વિન્ડો બંધ કરો" msgid "Close windows while in scale mode" msgstr "જ્યારે ખેંચાણ સ્થિતિમાં હોય ત્યારે વિન્ડો બંધ કરો" @@ -3222,9 +3038,18 @@ msgid "Color used for highlighting the hovered window" msgstr "ઉપર આવેલ વિન્ડોના પ્રકાશન માટે વપરાતો રંગ" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "વિન્ડો પ્રકાશન દોરો" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "વિન્ડો શીર્ષકનો ફોન્ટ રંગ" @@ -3242,6 +3067,11 @@ msgstr "ઉપર આવેલ વિન્ડોને આપેલ રંગ સાથે પ્રકાશિત કરે છે" #, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "વિન્ડો પર માઉસ ફેરવીને તેમને સરળતાથી દૃશ્યમાન બનાવો" + +#, fuzzy msgid "No display" msgstr "વિન્ડો શીર્ષક ડિસ્પ્લે" @@ -3251,6 +3081,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "અવયવી - પ્રાયોગિક" +#, fuzzy +msgid "Pull Window" +msgstr "વિન્ડો મૂકો" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "જ્યારે ખેંચાણ સ્થિતિમાં હોય ત્યારે વિન્ડો બંધ કરો" + msgid "Scale Addons" msgstr "ઉમેરાઓ ખેંચો" @@ -3275,6 +3113,10 @@ msgid "Window Layout Mode" msgstr "વિન્ડો દેખાવ સ્થિતિ" +#, fuzzy +msgid "Window Pull" +msgstr "વિન્ડો નિયમો" + msgid "Window Title" msgstr "વિન્ડો શીર્ષક" @@ -3286,10 +3128,12 @@ msgid "Window title display in scale mode" msgstr "ખેંચાણ સ્થિતિમાં વિન્ડો શીર્ષક બતાવો" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "ખેંચવામાં વિન્ડો નાનીમોટી કરો" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "ખેંચાણ સ્થિતિ હોય ત્યારે વિન્ડો નાનીમોટી કરો" msgid "Filter Case Insensitive" @@ -3553,18 +3397,30 @@ msgid "Direction of window movement" msgstr "વિન્ડો ચાલની દિશા" +msgid "Down" +msgstr "નીચે" + +msgid "Left" +msgstr "ડાબું" + msgid "Left/Right" msgstr "ડાબું/જમણું" msgid "Movement Direction" msgstr "ચાલ દિશા" +msgid "Right" +msgstr "જમણું" + msgid "Show desktop" msgstr "ડેસ્કટોપ બતાવો" msgid "To Corners" msgstr "કિનારીઓ પ્રતિ" +msgid "Up" +msgstr "ઉપર" + msgid "Up/Down" msgstr "ઉપર/નીચે" @@ -3820,95 +3676,347 @@ msgid "Size Of Snowflakes" msgstr "બરફના કરાઓનું માપ" -msgid "Size of snowflakes" -msgstr "બરફના કરાઓનું માપ" +msgid "Size of snowflakes" +msgstr "બરફના કરાઓનું માપ" + +msgid "Snow" +msgstr "બરફ" + +msgid "Snow Direction" +msgstr "બરફ દિશા" + +msgid "Snow Over Windows" +msgstr "વિન્ડો પર બરફ" + +msgid "Snow Speed" +msgstr "બરફ ઝડપ" + +msgid "Snow Textures" +msgstr "બરફ લખાણો" + +msgid "Snow Toggle" +msgstr "બરફ બદલો" + +msgid "Snow for Compiz" +msgstr "Compiz માટે બરફ" + +msgid "Snow is drawn above windows" +msgstr "બરફ વિન્ડો પર દોરાયેલ છે" + +msgid "Snow textures" +msgstr "બરફ લખાણો" + +msgid "Snow toggle key" +msgstr "બરફ બદલો કી" + +msgid "Speed of falling snow" +msgstr "પડતા બરફની ઝડપ" + +msgid "Textures" +msgstr "લખાણ" + +msgid "Top to Bottom" +msgstr "ટોચથી તળિયે" + +msgid "Update Delay" +msgstr "વિલંબ સુધારો" + +msgid "A simple splash plugin" +msgstr "સાદું સ્પ્લેશ પ્લગઈન" + +msgid "Background File" +msgstr "પાશ્વભાગ ફાઈલ" + +msgid "Background brightness." +msgstr "પાશ્વભાગ તેજસ્વીતા." + +msgid "Background image File." +msgstr "પાશ્વભાગ ચિત્ર ફાઈલ." + +msgid "Background saturation." +msgstr "પાશ્વભાગ સંતુલન." + +msgid "Display In/Out Time." +msgstr "અંદર/બહાર સમય દર્શાવો." + +msgid "Display Time" +msgstr "ડિસ્પ્લે સમય" + +msgid "Images" +msgstr "ચિત્રો" + +msgid "Initiate Splash" +msgstr "ઝબકારનો આરંભ કરો" + +msgid "Logo File" +msgstr "લોગો ફાઈલ" + +msgid "Logo image File." +msgstr "લોગો ચિત્ર ફાઈલ." + +msgid "Show on first start" +msgstr "પ્રથમ શરૂઆત પર બતાવો" + +msgid "Show splash on first start." +msgstr "પ્રથમ શરૂઆત પર ઝબકાર બતાવો." + +msgid "Splash" +msgstr "ઝબકાર" + +msgid "Start Splash." +msgstr "ઝબકાર શરૂ કરો." + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "રીંગમાં વિન્ડો માટે અપારદર્શકતાનો જથ્થો (ટકામાં) કે જેઓ પસંદ થયેલ નહિં હોય" + +#, fuzzy +msgid "Behavior" +msgstr "વર્તણૂક" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "જ્યારે રીંગ બતાવી રહ્યા હોય ત્યારે પાશ્વભાગ ઘાટો કરો" + +#, fuzzy +msgid "On Thumbnail" +msgstr "થમ્બનેઈલ પહોળાઈ" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "આપેલ વિન્ડો સક્રિય કરો" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "વિન્ડો શીર્ષક ઘાટા હોવા જોઈએ." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "રીંગ બદલનાર" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "ઢાળવાળા પાશ્વભાગનો રંગ ૧." + +#, fuzzy +msgid "Windows" +msgstr "3D વિન્ડો" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "વિન્ડો કે જે બદલનાર ખસેડોમાં બતાવવામાં આવવી જોઈએ" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "રંગકામ દરમ્યાન પાશ્વભાગ તેજસ્વીતા" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "પેજરમાં કાર્યક્રમ બતાવશો નહિં" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "દૃશ્યપોર્ટ પર મૂકો" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "કેન્દ્ર મૂકો" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "પસંદિત લંબચોરસનો રંગ ભરો" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "જ્યારે ઊંચા ગુણવત્તાવાળા ખેંચાણ માટે શક્ય હોય ત્યારે મીપમેપ બનાવો." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "પ્રકાશિત રંગ" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "પ્રકાશિત રંગ" + +#, fuzzy +msgid "Highlight Mode" +msgstr "પ્રકાશિત રંગ" + +#, fuzzy +msgid "Icon" +msgstr "અંદર" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "વિન્ડો પ્રકાશન" + +#, fuzzy +msgid "Mipmap" +msgstr "મીપમેપ" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "ઉપર આવેલ વિન્ડોના પ્રકાશન માટે વપરાતો રંગ" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "આગળની વિન્ડો" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "આગળની વિન્ડો (બધા કાર્યસ્થળો)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "આગળની વિન્ડો (જૂથ)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "આગળની વિન્ડો (જૂથ)" -msgid "Snow" -msgstr "બરફ" +msgid "Original Window Position" +msgstr "" -msgid "Snow Direction" -msgstr "બરફ દિશા" +#, fuzzy +msgid "Popup Window Delay" +msgstr "વિન્ડો જોડણી જૂથ કરો" -msgid "Snow Over Windows" -msgstr "વિન્ડો પર બરફ" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "દૃશ્યમાન નહિં હોય તો બદલનાર બતાવો જો અને આગળની વિન્ડો પસંદ કરો." -msgid "Snow Speed" -msgstr "બરફ ઝડપ" +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"દૃશ્યમાન નહિં હોય તો બદલનાર બતાવો જો અને વર્તમાન કાર્યક્રમની આગળની વિન્ડો પસંદ કરો." -msgid "Snow Textures" -msgstr "બરફ લખાણો" +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"દૃશ્યમાન નહિં હોય તો બદલનાર બતાવો જો અને બધી વિન્ડોમાંથી આગળની વિન્ડો પસંદ કરો." -msgid "Snow Toggle" -msgstr "બરફ બદલો" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "દૃશ્યમાન નહિં હોય તો બદલનાર બતાવો જો અને પહેલાંની વિન્ડો પસંદ કરો." -msgid "Snow for Compiz" -msgstr "Compiz માટે બરફ" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"દૃશ્યમાન નહિં હોય તો બદલનાર બતાવો જો અને વર્તમાન કાર્યક્રમની પહેલાંની વિન્ડો પસંદ કરો." -msgid "Snow is drawn above windows" -msgstr "બરફ વિન્ડો પર દોરાયેલ છે" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"દૃશ્યમાન નહિં હોય તો બદલનાર બતાવો જો અને બધી વિન્ડોમાંની પહેલાંની વિન્ડો પસંદ કરો." -msgid "Snow textures" -msgstr "બરફ લખાણો" +msgid "Prev Panel" +msgstr "" -msgid "Snow toggle key" -msgstr "બરફ બદલો કી" +#, fuzzy +msgid "Prev window" +msgstr "પહેલાંની વિન્ડો" -msgid "Speed of falling snow" -msgstr "પડતા બરફની ઝડપ" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "પહેલાંની વિન્ડો (બધા કાર્યસ્થળો)" -msgid "Textures" -msgstr "લખાણ" +#, fuzzy +msgid "Prev window (Group)" +msgstr "પહેલાંની વિન્ડો (જૂથ)" -msgid "Top to Bottom" -msgstr "ટોચથી તળિયે" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "પહેલાંની વિન્ડો (જૂથ)" -msgid "Update Delay" -msgstr "વિલંબ સુધારો" +msgid "Row Alignment" +msgstr "" -msgid "A simple splash plugin" -msgstr "સાદું સ્પ્લેશ પ્લગઈન" +#, fuzzy +msgid "Select next panel type window." +msgstr "વિન્ડો શીર્ષકને ક્યાં મૂકવી તે પસંદ કરે છે." -msgid "Background File" -msgstr "પાશ્વભાગ ફાઈલ" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background brightness." -msgstr "પાશ્વભાગ તેજસ્વીતા." +#, fuzzy +msgid "Select previous panel type window." +msgstr "વિન્ડો શીર્ષકને ક્યાં મૂકવી તે પસંદ કરે છે." -msgid "Background image File." -msgstr "પાશ્વભાગ ચિત્ર ફાઈલ." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background saturation." -msgstr "પાશ્વભાગ સંતુલન." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "વિન્ડો પ્રકાશન" -msgid "Display In/Out Time." -msgstr "અંદર/બહાર સમય દર્શાવો." +#, fuzzy +msgid "Show Rectangle" +msgstr "લંબચોરસ" -msgid "Display Time" -msgstr "ડિસ્પ્લે સમય" +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "વિન્ડો શીર્ષક થમ્બમેઈલમાં બતાવો." -msgid "Images" -msgstr "ચિત્રો" +#, fuzzy +msgid "Show minimized windows" +msgstr "ન્યૂનતમ નહિં કરી શકાય તેવી વિન્ડો" -msgid "Initiate Splash" -msgstr "ઝબકારનો આરંભ કરો" +msgid "Static Application Switcher" +msgstr "" -msgid "Logo File" -msgstr "લોગો ફાઈલ" +#, fuzzy +msgid "Switcher speed" +msgstr "બદલનાર સ્થિતિ" -msgid "Logo image File." -msgstr "લોગો ચિત્ર ફાઈલ." +#, fuzzy +msgid "Switcher timestep" +msgstr "સમયપગલું ખસેડો" -msgid "Show on first start" -msgstr "પ્રથમ શરૂઆત પર બતાવો" +#, fuzzy +msgid "Switcher windows" +msgstr "ગળાયેલ વિન્ડો" -msgid "Show splash on first start." -msgstr "પ્રથમ શરૂઆત પર ઝબકાર બતાવો." +#, fuzzy +msgid "Taskbar Entry" +msgstr "ક્રિયાપટ્ટી" -msgid "Splash" -msgstr "ઝબકાર" +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Start Splash." -msgstr "ઝબકાર શરૂ કરો." +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" + +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "વિન્ડો કે જે બદલનાર ખસેડોમાં બતાવવામાં આવવી જોઈએ" msgid "Render text to texture" msgstr "લખાણવાળામાંથી લખાણ ઢાળો." @@ -4590,10 +4698,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "કેન્દ્ર મૂકો" - -#, fuzzy msgid "Color 1" msgstr "રંગો" @@ -4741,6 +4845,14 @@ msgid "Matches" msgstr "જોડણીઓ" +#, fuzzy +msgid "Maximized" +msgstr "ન્યૂનતમ બનાવેલ બતાવો" + +#, fuzzy +msgid "Maximized windows" +msgstr "મહત્તમ નહિં કરી શકાય તેવી વિન્ડો" + msgid "No ARGB visuals" msgstr "કોઈ ARGB દૃશ્યો નથી" @@ -4819,6 +4931,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "AIGLX અંશ પરિમાણ સુધારો" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "ફાયરફોક્સ મેનુ સુધારો" @@ -4862,6 +4977,9 @@ "\"બધી ડેસ્કટોપ પર\" વિન્ડોને સ્ટીકી બનાવો. સ્ટીકી વિન્ડો બધા દૃશ્યપોર્ટ પર દૃશ્યમાન હોય " "છે." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "Wine અને લીગસી કાર્યક્રમો પૂર્ણસ્ક્રીન યોગ્ય રીતે બનાવો." @@ -4886,6 +5004,331 @@ msgid "Workarounds" msgstr "ઉકેલો" +#~ msgid "Airplane" +#~ msgstr "હવાઈજહાજ" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "હવાઈજહાજ ઉડાન પાથ લંબાઈ" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "હેતુસરની અસરો માટે એનીમેશન સમય ઝડપ" + +#~ msgid "Automatic" +#~ msgstr "આપમેળે" + +#~ msgid "Beam" +#~ msgstr "બીમ" + +#~ msgid "Beam Color" +#~ msgstr "બીમ રંગ" + +#~ msgid "Beam Life" +#~ msgstr "બીમ જીવન" + +#~ msgid "Beam Slowdown" +#~ msgstr "બીમ ધીમું" + +#~ msgid "Beam Spacing" +#~ msgstr "બીમ જગ્યા" + +#~ msgid "Beam Up" +#~ msgstr "બીમ ઉપર" + +#~ msgid "Beam Width" +#~ msgstr "બીમ પહોળાઈ" + +#~ msgid "Beam color." +#~ msgstr "બીમ રંગ." + +#~ msgid "Beam life." +#~ msgstr "બીમ જીવન." + +#~ msgid "Beam slowdown." +#~ msgstr "બીમ ધીમું." + +#~ msgid "Beam width." +#~ msgstr "બીમ પહોળાઈ." + +#~ msgid "Burn" +#~ msgstr "બાળો" + +#~ msgid "Domino" +#~ msgstr "માસ્ક" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "માસ્ક ટુકડા પડતી દિશા" + +#~ msgid "Explode" +#~ msgstr "ફેલાવો" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "માસ્ક ટુકડાઓ માટે પડવાની દિશા." + +#~ msgid "Fire" +#~ msgstr "આગ" + +#~ msgid "Fire Smoke" +#~ msgstr "આગ ધુમાડો" + +#~ msgid "Fire constant speed" +#~ msgstr "આગ અચળ ઝડપ" + +#~ msgid "Fire direction" +#~ msgstr "આગ દિશા" + +#~ msgid "Fire direction." +#~ msgstr "આગ દિશા." + +#~ msgid "Fire smoke." +#~ msgstr "આગ ધુમાડો." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "ન્યૂનતમ કરવા પર ક્રિયાપટ્ટી પર ઉડો" + +#~ msgid "Fold" +#~ msgstr "વાળો" + +#~ msgid "Fold Direction" +#~ msgstr "વાળવાની દિશા" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Razr અસરમાં ટુકડાઓ માટે ખલતી દિશા ફોલ્ડ કરો." + +#~ msgid "Hexagonal" +#~ msgstr "ષષ્ટકોણીય" + +#~ msgid "In" +#~ msgstr "અંદર" + +#~ msgid "In-out" +#~ msgstr "અદર-બહાર" + +#~ msgid "Leaf Spread" +#~ msgstr "પાંદડા વિસ્તરણ" + +#~ msgid "Left-right" +#~ msgstr "ડાબે-જમણે" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "હવાઈજહાજના ઉડાન પાથની લંબાઈ." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "આગ અસર ગાળાને વિન્ડો ઊંચાઈ પર આધારભૂત બનાવો." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "વિન્ડો ટુકડાઓ માટે ચાલ દિશા(ઓ)." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "આગ કણોની સંખ્યા" + +#~ msgid "Number of fire particles." +#~ msgstr "આગ કણોની સંખ્યા." + +#~ msgid "Out" +#~ msgstr "બહાર" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Razr ફોલ્ડ ખોલવાની દિશા" + +#~ msgid "Rectangular" +#~ msgstr "લંબચોરસ" + +#~ msgid "Rotation Angle" +#~ msgstr "ફેરવવાનો કોણ" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "એનીમેટ થયેલ વિન્ડો ટુકડાઓને ફેરવવાનો કોણ (ડિગ્રીઓમાં)." + +#~ msgid "Skewer" +#~ msgstr "નમાવનાર" + +#~ msgid "Skewer Direction" +#~ msgstr "નમાવનાર દિશા" + +#~ msgid "Spacing between beams." +#~ msgstr "બીમો વચ્ચેની જગ્યા." + +#~ msgid "Tessellation Type" +#~ msgstr "ચોકઠાં પાડવાનો પ્રકાર" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "વિન્ડો ટુકડાઓના ફેલાવા માટે ચોકઠાં પાડવાનો પ્રકાર." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "વિન્ડો ટુકડાઓ માટે ચોકઠાં પાડવાનો પ્રકાર." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "હેતુસરના એનીમેશનના (દાત. બાળો, બીમ) દરેક ઘાટ વચ્ચેના સમયનો જથ્થો મિલિસેકન્ડોમાં. " +#~ "જેટલી સંખ્યા ઊંચી, તેટલી ચાલ તૂટશે." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "એનીમેટ થયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થશે. વિન્ડોની ઊંચાઈ સાથે જાળી " +#~ "ખાનાંઓની સંખ્યા સ્પષ્ટ કરો." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "એનીમેટ થયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થશે. વિન્ડોની પહોંચાઈ સાથે જાળી " +#~ "ખાનાંઓની સંખ્યા સ્પષ્ટ કરો." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "ફેલાયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થઈ જશે. વિન્ડોની ઊંચાઈ સાથે જાળી ખાનાંઓની " +#~ "સંખ્યા સ્પષ્ટ કરો." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "ફેલાયેલ વિન્ડો જાળી સાથે ટુકડાઓમાં વિભાજીત થઈ જશે. વિન્ડોની પહોળાઈ સાથે જાળી " +#~ "ખાનાંઓની સંખ્યા સ્પષ્ટ કરો." + +#~ msgid "Thickness" +#~ msgstr "જાડાઈ" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "એનીમેટ થયેલ પોલીગોનની જાડાઈ" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "ફેલાયેલ પોલીગોનની જાડાઈ" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "એનીમેટ થયેલ વિન્ડો ટુકડાઓની જાડાઈ (પિક્સેલોમાં)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "ફેલાયેલ વિન્ડો ટુકડાઓની જાડાઈ (પિક્સેલોમાં)." + +#~ msgid "Up-down" +#~ msgstr "ઉપર-નીચે" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "શું વિન્ડો ક્રિયાપટ્ટી પર તરવી જોઈએ જ્યારે હવાઈજહાજ અસર સાથે ન્યૂનતમ બનાવેલ હોય." + +#~ msgid "Window Grid Height" +#~ msgstr "વિન્ડો જાળી ઊંચાઈ" + +#~ msgid "Window Grid Width" +#~ msgstr "વિન્ડો જાળી પહોળાઈ" + +#~ msgid "Window folding direction." +#~ msgstr "વિન્ડો ફોલ્ડ કરવાની દિશા." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "વિન્ડો જાડાઈ પિક્સેલોમાં. આને ૦ કરતાં મોટામાં સુયોજીત કરવાનું પડછાયા, ઝાંખાપણું, અને " +#~ "પરાવર્તનને એનીમેશન દરમ્યાન નિષ્ક્રિય કરી નાંખશે." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "વિન્ડોની પહોળાઈને સંબંધિત આડા ફોલ્ડનો જથ્થો (ફોલ્ડમાંના તરંગોનું માપ). ઋણ કિંમતો " +#~ "બહારની દિશામાં ફોલ્ડ કરવામાં આવે છે." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "વિન્ડોની પહોળાઈને સંબંધિત વળાંકવાળા ફોલ્ડનો જથ્થો (ફોલ્ડમાંના તરંગોનું માપ). ઋણ કિંમતો " +#~ "બહારની દિશામાં ફોલ્ડ કરવામાં આવે છે." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "વિન્ડો ઊંચાઈને અનુલક્ષીને તરંગનો જથ્થો (તરંગોનું માપ)." + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "તેજસ્વીતા" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "તેજસ્વીતા" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "તેજસ્વીતા" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "પસંદિત વિન્ડોની તેજસ્વીતા" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "ધૂંધળી વિન્ડોની તેજસ્વીતા" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "સંતુલન" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "સંતુલન" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "સંતુલન" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "પસંદિત વિન્ડોનું સંતુલન" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "ધૂંધળી વિન્ડોનું સંતુલન" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "ધૂંધળી વિન્ડોનું સંતુલન" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "ધૂંધળી વિન્ડોનું સંતુલન" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "વિન્ડો અપારદર્શકતા" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "વિન્ડો કે જેનું માપ મૂળભૂત રીતે બદલી શકાવું જોઈએ" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "વિન્ડો કે જેનું માપ મૂળભૂત રીતે બદલી શકાવું જોઈએ" + +#~ msgid "Close Windows In Scale" +#~ msgstr "ખેંચવા પર વિન્ડો બંધ કરો" + #~ msgid "Animation Speed" #~ msgstr "એનીમેશન ઝડપ" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/he.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/he.po --- compiz-fusion-plugins-unsupported-0.7.6/po/he.po 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/he.po 2008-09-17 14:29:33.000000000 +0100 @@ -0,0 +1,5101 @@ +# compiz-fusion plugins translation +# Copyright (C) 2008 compiz-fusion.org +# This file is distributed under the same license as the compiz-fusion plugins package. +# Yotam Benshalom +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7.7\n" +"Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" +"PO-Revision-Date: 2008-09-07 05:46+0200\n" +"Last-Translator: Yotam Benshalom \n" +"Language-Team: Yotam Benshalom \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +msgid "3D Only On Mouse Rotate" +msgstr "3D רק בעת סיבוב עם העכבר" + +msgid "3D Windows" +msgstr "חלונות 3D" + +msgid "Bevel Bottom Left" +msgstr "החלקה שמאלית תחתונה" + +msgid "Bevel Bottom Right" +msgstr "החלקה ימנית תחתונה" + +msgid "Bevel Corners" +msgstr "החלקת פינות" + +msgid "Bevel Top Left" +msgstr "החלקה שמאלית עליונה" + +msgid "Bevel Top Right" +msgstr "החלקה ימנית עליונה" + +msgid "Bevel bottom left corner" +msgstr "החלקת הפינה השמאלית התחתונה" + +msgid "Bevel bottom right corner" +msgstr "החלקת הפינה הימנית התחתונה" + +msgid "Bevel top left corner" +msgstr "החלקת הפינה השמאלית העליונה" + +msgid "Bevel top right corner" +msgstr "החלקת הפינה הימנית העליונה" + +msgid "" +"Change the amount of space between the windows (in percent of the cube size)." +msgstr "שנה את מימדי החלל שבין החלונות (באחוזים מגודל הקוביה)." + +msgid "Color of an inactive window's depth" +msgstr "צבע עומק של חלון לא פעיל" + +msgid "Color of the active window's depth" +msgstr "צבע עומק של החלון הפעיל" + +msgid "Elevates windows while rotating the cube" +msgstr "הרם חלונות בעת סיבוב הקוביה" + +msgid "" +"Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " +"cube via the mouse)" +msgstr "תצוגת 3D תופעל רק אם הסיבוב בוצע באמצעות העכבר." + +msgid "Minimum Cube Size" +msgstr "גודל קוביה מזערי" + +msgid "Minimum cube size (in percent)." +msgstr "גודל קוביה מזערי (באחוזים)" + +msgid "Misc. Options" +msgstr "אפשרויות נוספות" + +msgid "Roundoff corners for consistency with rounded decorations" +msgstr "עגל פינות כדי להתאים למסגרות מעוגלות" + +msgid "Window Color (Active)" +msgstr "צבע חלון (פעיל)" + +msgid "Window Color (Inactive)" +msgstr "צבע חלון (לא פעיל)" + +msgid "Window Depth" +msgstr "עומק חלון" + +msgid "Window Match" +msgstr "חלונות תואמים" + +msgid "Window Space" +msgstr "שטח חלון" + +msgid "Window depth" +msgstr "עומק חלון" + +msgid "Windows that should be handled by 3D" +msgstr "חלונות המטופלים ע\"י 3D" + +msgid "ADD Helper" +msgstr "סייען ADD" + +msgid "Bindings" +msgstr "צימודים" + +msgid "Brightness" +msgstr "בהירות" + +msgid "Brightness of faded windows" +msgstr "בהירות חלונות מעומעמים" + +msgid "Enable ADD Helper on start" +msgstr "הפעל את סייען ADD עם הפעלת קומפיז" + +msgid "Enables ADD helper when it is first loaded." +msgstr "הפעל את סייען ADD עם טעינתו הראשונה." + +msgid "" +"Make it slightly easier to concentrate by dimming all but the active window." +msgstr "הקל מעט על הריכוז בעזרת עמעום כל החלונות פרט לחלון הפעיל." + +msgid "Opacity" +msgstr "אטימות" + +msgid "Opacity of faded windows" +msgstr "אטימות חלונות מעומעמים" + +msgid "Saturation" +msgstr "רוויה" + +msgid "Saturation of faded windows" +msgstr "רווית חלונות מעומעמים" + +msgid "Toggle AddHelper" +msgstr "הפעל\\הפסק את סייען ADD" + +msgid "Use this to enable/disable AddHelper on the fly." +msgstr "השתמש בצימוד זה כדי להפעיל ולהפסיק את סייען ADD תוך כדי עבודה." + +msgid "Window Types" +msgstr "סוגי חלונות" + +msgid "Window types that should be Opacified." +msgstr "סוגי חלונות שיש להחיל עליהם את הכללים." + +msgid "" +"All effects are chosen randomly, ignoring the selected effect. If None is " +"selected for an event, that event won't be animated." +msgstr "" +"כל האפקטים נבחרים באקראי, בלי להתחשב באפקט שנבחר. אם שום אפקט לא נבחר עבור " +"האירוע, לא תוצג עבורו אנימציה." + +msgid "Angle of window at the end of the animation." +msgstr "זווית החלון בסוף האנימציה." + +msgid "Animation Selection" +msgstr "בחירת אנימציה" + +msgid "Animation Time Step" +msgstr "יחידת זמן עבור אנימציה" + +msgid "Animation duration in milliseconds for close effect." +msgstr "משך אנימציה במילישניות עבור אפקט סגירה." + +msgid "Animation duration in milliseconds for focus effect." +msgstr "משך אנימציה במילישניות עבור אפקט קבלת מוקד." + +msgid "Animation duration in milliseconds for minimize effect." +msgstr "משך אנימציה במילישניות עבור אפקט מזעור." + +msgid "Animation duration in milliseconds for open effect." +msgstr "משך אנימציה במילישניות עבור אפקט פתיחה." + +msgid "Animation duration in milliseconds for shade effect." +msgstr "משך אנימציה במילישניות עבור אפקט גלילה." + +msgid "Animations" +msgstr "אנימציות" + +msgid "Away Angle" +msgstr "זווית במצב מרוחק" + +msgid "Away Position" +msgstr "מיקום במצב מרוחק" + +msgid "Close Animation" +msgstr "אנימצית סגירה" + +msgid "Close Effect" +msgstr "אפקט סגירה" + +msgid "" +"Closeness of window to camera at the end of the animation (1.0: Close to " +"camera, -2.0: Away from camera)." +msgstr "" +"קירבת החלון למצלמה בסוף האנימציה (1.0: קרוב למצלמה. 2.0 - : רחוק מהמצלמה)." + +msgid "" +"Comma separated list of option value assignments to override effect " +"settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1" +msgstr "" +"רשימה מופרדת בפסיקים של ערכים האמורים לעקוף את הגדרות האפקטים. למשל: " +"fire_color=#0080ffff, fire_particles=700, fire_smoke=1" + +msgid "Curved Fold" +msgstr "קפל מעוקל" + +msgid "Curved Fold Amplitude Multiplier" +msgstr "מכפיל משרעת קפל מעוקל" + +msgid "Dodge" +msgstr "פלס דרך" + +msgid "Dodge Gap Ratio" +msgstr "יחס פערים לפילוס דרך" + +msgid "Dream" +msgstr "חלום" + +msgid "Duration" +msgstr "משך" + +msgid "Effect Settings" +msgstr "הגדרות אפקט" + +msgid "Fade" +msgstr "פייד" + +msgid "Fixed window interior during the Rollup animation." +msgstr "תוכן חלון מקובע בעת אנימצית גלילה כלפי מעלה." + +msgid "Focus Animation" +msgstr "אנימצית קבלת מיקוד" + +msgid "Focus Effect" +msgstr "אפקט קבלת מיקוד" + +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "משרעת (גודל) הקפל מוכפל במספר זה. ערכים שליליים ייצרו קיפול כפי חוץ." + +msgid "Glide 1" +msgstr "גלישה 1" + +msgid "Glide 2" +msgstr "גלישה 2" + +msgid "Horizontal Folds" +msgstr "קפלים אופקיים" + +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "מכפיל משרעת קפלים אופקיים" + +msgid "How spring-like the Sidekick animation should be." +msgstr "מידת הקפיציות של אנימצית הגלגלון." + +msgid "How spring-like the Zoom animation should be." +msgstr "מידת הקפיציות של אנימצית התקריב." + +msgid "Magic Lamp" +msgstr "מנורת קסמים" + +msgid "Magic Lamp Grid Y Resolution" +msgstr "אבחנת רשת בציר Y" + +msgid "Magic Lamp Max Wave Amplitude" +msgstr "משרעת גל מירבית" + +msgid "Magic Lamp Max Waves" +msgstr "מספר גלים מירבי" + +msgid "Magic Lamp Min Wave Amplitude" +msgstr "מספר גלים מזערי" + +msgid "Magic Lamp Open Start Width" +msgstr "רוחב התחלתי בעת פתיחה" + +msgid "Magic Lamp Open/Close Moving End" +msgstr "פיית מנורה מתנייעת עבור פתיחה וסגירה" + +msgid "Minimize Animation" +msgstr "אנימצית מזעור" + +msgid "Minimize Effect" +msgstr "אפקט מזעור" + +msgid "Minimize/Unminimize Only" +msgstr "מזעור\\שחזור בלבד" + +msgid "None" +msgstr "ללא" + +msgid "Number of Horizontal Folds" +msgstr "מספר קפלים אופקיים" + +#, no-c-format +msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." +msgstr "מספר סיבובים עבור הגלגלון (עם סטייה אקראית של 10%)" + +msgid "Off" +msgstr "לא פועל" + +msgid "On" +msgstr "פועל" + +msgid "On open/close, move magic lamp ending point with the mouse pointer." +msgstr "בעת פתיחה וסגירה, הזז את פיית המנורה עם סמן העכבר." + +msgid "On open/close, move vacuum ending point with the mouse pointer." +msgstr "בעת פתיחה\\סגירה, הזז את פיית הואקום עם סמן העכבר." + +msgid "Open Animation" +msgstr "אנימצית פתיחה" + +msgid "Open Effect" +msgstr "אפקט פתיחה" + +msgid "Open/Close Only" +msgstr "פתיחה\\סגירה בלבד" + +msgid "Options" +msgstr "אפשרויות" + +msgid "Pool" +msgstr "מאגר" + +msgid "" +"Pool of effects to be chosen from if Random effect is selected. Click reset " +"to use all effects." +msgstr "" +"מאגר אפקטים לבחירה אם נבחר אפקט \"אקראי\". כדי לשחזר את הרשימה המלאה יש " +"להקליק על \"נקה\"." + +msgid "Random" +msgstr "אקראי" + +msgid "Random Animations For All Events" +msgstr "אנימציות אקראיות לכל האירועים" + +msgid "Random Effects" +msgstr "אפקטים אקראיים" + +msgid "Ratio of gaps between dodge start times to focus duration." +msgstr "יחס הפערים בין משך תחילת פילוס הדרך ובין משך קבלת המוקד." + +msgid "Roll Up" +msgstr "גלול מעלה" + +msgid "Rollup Fixed Interior" +msgstr "תוכן מקובע בעת גלילה מעלה" + +msgid "Shade Animation" +msgstr "אנימצית גלילה" + +msgid "Shade Effect" +msgstr "פקט גלילה" + +msgid "Sidekick" +msgstr "גלגלון" + +msgid "Sidekick Number of Rotations" +msgstr "מספר סיבובי גלגלון" + +msgid "Sidekick Springiness" +msgstr "קפיציות גלגלון" + +msgid "" +"Starting width of open effect and ending width of close effect for Magic " +"Lamp." +msgstr "רוחב התחלתי של אפקט פתיחה ורוחב סופי של אפקט סגירה עבור מנורת הקסמים." + +msgid "" +"Starting width of open effect and ending width of close effect for Vacuum." +msgstr "רוחב התחלתי של אפקט פתיחה ורוחב סופי של אפקט סגירה עבור ואקום." + +msgid "" +"The amount of time in milliseconds between each render of the animation. The " +"higher the number, the jerkier the movements become." +msgstr "" +"משך הזמן במילישניות בין כל רענון של האנימציה. ככל שהמספר גבוה יותר התנועה " +"מקוטעת יותר." + +msgid "The animation effect shown when closing a window." +msgstr "אפקט האנימציה המוצג בעת סגירת חלון." + +msgid "The animation effect shown when creating a window." +msgstr "אפקט האנימציה המוצג בעת יצירת חלון." + +msgid "The animation effect shown when focusing a window." +msgstr "אפקט האנימציה המוצג בעת קבלת מוקד." + +msgid "The animation effect shown when minimizing a window." +msgstr "אפקט האנימציה המוצג בעת מזעור חלון." + +msgid "The animation effect shown when shading a window." +msgstr "אפקט האנימציה המוצג בעת גלילת חלון." + +msgid "The maximum amplitude (size of the waves) Magic Lamp will have." +msgstr "המשרעת (גובה הגלים) המירבית של מנורת הקסמים." + +msgid "The maximum number of waves for Magic Lamp." +msgstr "מספר הגלים המירבי עבור מנורת הקסמים." + +msgid "The minimum amplitude (size of the waves) Magic Lamp will have." +msgstr "המשרעת (גובה הגלים) המזערית של מנורת הקסמים." + +msgid "" +"The number of horizontal folds that occur in the Horizontal Fold animation." +msgstr "מספר הקפלים האופקיים המוצגים באנימציית קפל אופקי." + +msgid "The width of the wave relative to the window height." +msgstr "רוחב הגל בהתאם לגובה החלון." + +msgid "The windows that will be animated." +msgstr "החלון שיונפש." + +msgid "Use various animations as window effects" +msgstr "הצג אפקטים שונים של אנימציות חלון" + +msgid "Vacuum" +msgstr "ואקום" + +msgid "Vacuum Grid Y Resolution" +msgstr "רזולוצית רשת Y של ואקום" + +msgid "Vacuum Open Start Width" +msgstr "רוחב התחלי בפתיחה של ואקום" + +msgid "Vacuum Open/Close Moving End" +msgstr "קצה נע עבור פתיחה\\סגירה של ואקום" + +msgid "" +"Vertex grid resolution for Magic Lamp (Y dimension only). This is the number " +"of points used to define the curves. The higher the number, the smoother the " +"curves. However there will be a loss of performance (CPU usage increases)." +msgstr "" +"אבחנת רשת וורטקס עבור מנורת הקסמים (ציר Y בלבד). זהו מספר הנקודות המגדירות " +"את העיקולים. ככל שהמספר גבוה יותר יהיו העיקולים חלקים יותר. עם זאת, הדבר " +"יביא לירידה בביצועים ויעמיס על המעבד המרכזי." + +msgid "" +"Vertex grid resolution for Vacuum (Y dimension only). This is the number of " +"points used to define the curves. The higher the number, the smoother the " +"curves. However there will be a loss of performance (CPU usage increases)." +msgstr "" +"אבחנת רשת וורטקס עבור וואקום (ציר Y בלבד). זהו מספר הנקודות המגדירות את " +"העיקולים. ככל שהמספר גבוה יותר יהיו העיקולים חלקים יותר. עם זאת, הדבר יביא " +"לירידה בביצועים ויעמיס על המעבד המרכזי." + +msgid "Wave" +msgstr "גל" + +msgid "Wave Amplitude Multiplier" +msgstr "מכפיל משרעת גל" + +msgid "Wave Width" +msgstr "רוחב גל" + +msgid "" +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "משרעת (גודל) הגל מוכפלת במספר זה. ערכים שליליים ייצרו קיפול כלפי חוץ." + +msgid "" +"Whether the window should zoom to taskbar when minimized with Curved Fold " +"effect." +msgstr "קובע אם החלון יתמזער אל שורת המשימות בעזרת אפקט קיפול מעוקל." + +msgid "" +"Whether the window should zoom to taskbar when minimized with Dream effect." +msgstr "קובע אם החלון יתמזער אל שורת המשימות בעזרת אפקט חלום." + +msgid "" +"Whether the window should zoom to taskbar when minimized with Glide 1 effect." +msgstr "קובע אם החלון יתמזער אל שורת המשימות בעזרת אפקט גלישה 1." + +msgid "" +"Whether the window should zoom to taskbar when minimized with Glide 2 effect." +msgstr "קובע אם החלון יתמזער אל שורת המשימות בעזרת אפקט גלישה 2." + +msgid "" +"Whether the window should zoom to taskbar when minimized with Horizontal " +"Folds effect." +msgstr "קובע אם החלון יתמזער אל שורת המשימות בעזרת אפקט קפלים אופקיים." + +msgid "Window that should animate with this effect when focused." +msgstr "חלון שעליו יש להפעיל אפקט אנימציה זה בעת קבלת מוקד." + +msgid "Window that should animate with this effect when shaded." +msgstr "חלון שעליו יש להפעיל אפקט אנימציה זה בעת גלילה." + +msgid "Zoom" +msgstr "תקריב" + +msgid "Zoom Springiness" +msgstr "קפיציות תקריב" + +msgid "Zoom from Center" +msgstr "תקריב מן המרכז" + +msgid "Zoom from center when playing the Sidekick animation." +msgstr "תקריב מן המרכז בעת הצגת אנימצית הגלגלון." + +msgid "Zoom from center when playing the Zoom animation." +msgstr "תקריב מן המרכז בעת הצגת אנימצית תקריב." + +msgid "Zoom to TaskBar on Minimize" +msgstr "תקריב לשורת המשימות בעת מזעור" + +msgid "Colors" +msgstr "צבעים" + +msgid "Cube Atlantis" +msgstr "קוביית אטלנטיס" + +msgid "Dolphin size" +msgstr "גודל דולפין" + +msgid "Dolphin size." +msgstr "גודל דולפין." + +msgid "Enable colors" +msgstr "אפשר צבעים" + +msgid "Fish size" +msgstr "גודל דג" + +msgid "Number of fish" +msgstr "מספר דגים" + +msgid "Number of fish inside the cube" +msgstr "מספר הדגים בתוך הקוביה" + +msgid "Render some fish inside of the transparent cube" +msgstr "צייר מספר דגים בתוך הקוביה השקופה" + +msgid "Shark size" +msgstr "גודל כריש" + +msgid "Whale size" +msgstr "גודל לווייתן" + +msgid "Whale size." +msgstr "גודל לווייתן." + +msgid "A simple benchmark plugin" +msgstr "התקן פשוט למדידת ביצועים" + +msgid "Benchmark" +msgstr "מד ביצועים" + +msgid "Console Output" +msgstr "פלט לטרמינל" + +msgid "Console output update time" +msgstr "זמן עדכון פלט לטרמינל" + +msgid "Disable Compiz integrated FPS limiter" +msgstr "נטרל את מגביל ה-FPS המובנה של קומפיז" + +msgid "Disable limiter" +msgstr "נטרל מגביל" + +msgid "Display FPS on screen" +msgstr "הצג FPS על המסך" + +msgid "Enable" +msgstr "אפשר" + +msgid "Initiate" +msgstr "הפעל" + +msgid "Main" +msgstr "ראשי" + +msgid "Print FPS to console" +msgstr "הדפס FPS בטרמינל" + +msgid "Screen Output" +msgstr "פלט למסך" + +msgid "Start benchmark" +msgstr "התחל מדידת ביצועים" + +msgid "Update time" +msgstr "זמן עדכון" + +msgid "X Position of benchmark window" +msgstr "מיקום X של חלון מד הביצועים" + +msgid "X position" +msgstr "מיקום X" + +msgid "Y Position of benchmark window" +msgstr "מיקום Y של חלון מד הביצועים" + +msgid "Y position" +msgstr "מיקום Y" + +msgid "Bicubic filter" +msgstr "מסנן דו-קובייתי" + +msgid "Bicubic texture filtering" +msgstr "מסנן טקסטורות דו-קובייתי" + +msgid "Color filter" +msgstr "מסנן צבע" + +msgid "Exclude windows" +msgstr "חלונות יוצאים מן הכלל" + +msgid "Filter colors for accessibility purposes" +msgstr "סנן צבעים מטעמי נגישות" + +msgid "Filter window decorations" +msgstr "סנן מסגרות חלון" + +msgid "Filtered windows" +msgstr "חלונות מסוננים" + +msgid "Filters files" +msgstr "קבצי מסננים" + +msgid "" +"List of plain text filter files that should be applied when filtering " +"windows or screen." +msgstr "" +"רשימת קבצי טקסט של הגדרות מסנן, שאותן יש להפעיל בעת סינון חלונות או מסך." + +msgid "" +"Select filter to use from filters list : either apply all filters or only " +"one specific filter (triggering this action switches filters one by one and " +"eventually comes back to the \"all filters\" mode)." +msgstr "" +"בחירת מסנן מתוך הרשימה: ניתן להפעיל את כל המסננים או רק אחד מהם (ביצוע פעולה " +"זו עובר בין כל המסננים אחד אחד, ולבסוף שב למצב \"כל המסננים\")." + +msgid "Switch filter" +msgstr "עבור מסנן" + +msgid "Toggle filtering for currently focused window." +msgstr "הפעל\\נטל סינון עבור החלון הפעיל." + +msgid "Toggle filtering for every window on the screen." +msgstr "הפעל\\נטרל סינון עבור כל החלונות על המסך." + +msgid "Toggle screen filtering" +msgstr "הפעל\\נטרל סינון מסך" + +msgid "Toggle window filtering" +msgstr "הפעל\\נטרל סינון חלון" + +msgid "" +"Window decorations (borders and titlebar) will be filtered as well as window " +"contents if enabled." +msgstr "" +"אם מאופשר, מסגרת החלון (גבולות ושורת כותרת) תסונן גם היא לצד תוכן החלון." + +msgid "Windows to be filtered by default." +msgstr "חלונות לסינון כברירת מחדל." + +msgid "Windows to exclude from filtering." +msgstr "חלונות שאין לסנן." + +msgid "Activate Crash Handler." +msgstr "הפעל מגן התרסקות" + +msgid "Compiz crash handler plugin" +msgstr "התקן מגן ההתרסקות של קומפיז" + +msgid "Crash Dump Directory" +msgstr "תיקייה להטלת פלט התרסקות" + +msgid "Crash handler" +msgstr "מגן התרסקות" + +msgid "Directory to dump the crash logs to." +msgstr "תיקייה שבה יישמרו לוגים של התרסקות." + +msgid "Enable Crash Handler" +msgstr "אפשר מגן התרסקות" + +msgid "Start Other Window Manager" +msgstr "הפעל מנהל חלונות אחר" + +msgid "Start other window manager on Crash." +msgstr "בעת התרסקות, הפעל מנהל חלונות אחר." + +msgid "Window Manager Command Line" +msgstr "שורת פקודה של מנהל חלונות" + +msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" +msgstr "שורת פקודה של מנהל חלונות. אין להזין כאן compiz!!!" + +msgid "Above" +msgstr "מעל" + +msgid "Adjust bottom face image to rotation" +msgstr "התאם התמונה בפאה התחתונה לסיבוב" + +msgid "Adjust bottom image" +msgstr "התאם תמונה תחתונה" + +msgid "Adjust top face image to rotation" +msgstr "התאם התמונה בפאה העליונה לסיבוב" + +msgid "Adjust top image" +msgstr "התאם תמונה עליונה" + +msgid "Advance to next image for bottom face of the cube" +msgstr "עבור לתמונה הבאה בפאה התחתונה של הקוביה" + +msgid "Advance to next image for top face of the cube" +msgstr "עבור לתמונה הבאה בפאה העליונה של הקוביה" + +msgid "Appearance" +msgstr "מראה" + +msgid "Aspect ratio" +msgstr "יחס אורך ורוחב" + +msgid "Aspect ratio of the deformed cube" +msgstr "יחס האורך והרוחב של הקובייה המעוותת" + +msgid "Auto zoom" +msgstr "תקריב אוטומטי" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "תקריב אוטומטי רק בעת סיבוב עם העכבר" + +msgid "Behaviour" +msgstr "התנהגות" + +msgid "Bottom image files" +msgstr "קבצי תמונה תחתונה" + +msgid "Clamp bottom face image to border" +msgstr "הצמד תמונה בפאה תחתונה לגבול" + +msgid "" +"Clamp bottom face image to border. This is often the best if your image " +"doesn't fit the size of the cube or if it's transparent. It can lead to some " +"ugly dotted lines when enabled (especially with large enough images) though." +msgstr "" +"הצמד את התמונה בפאה התחתונה לגבול. הדבר נחוץ בעיקר אם גודל התמונה אינו מתאים " +"לקוביה, או אם היא שקופה. הגדרה זו עלולה להביא להופעת קווים מנוקדים ולא " +"אסתטיים, בייחוד במקרה של תמונות גדולות." + +msgid "Clamp top face image to border" +msgstr "הצמד תמונה בפאה עליונה לגבול" + +msgid "" +"Clamp top face image to border. This is often the best if your image doesn't " +"fit the size of the cube or if it's transparent. It can lead to some ugly " +"dotted lines when enabled (especially with large enough images) though." +msgstr "" +"הצמד את התמונה בפאה העליונה לגבול. הדבר נחוץ בעיקר אם גודל התמונה אינו מתאים " +"לקוביה, או אם היא שקופה. הגדרה זו עלולה להביא להופעת קווים מנוקדים ולא " +"אסתטיים, בייחוד במקרה של תמונות גדולות." + +msgid "Color of bottom face of the cube" +msgstr "צבע פאת קוביה תחתונה" + +msgid "Color of the ground (far)." +msgstr "צבע הקרקע (רחוקה)." + +msgid "Color of the ground (near)." +msgstr "צבע הקרקע (קרובה)." + +msgid "Color of top face of the cube" +msgstr "צבע פאת קוביה עליונה" + +msgid "Compiz cube reflection and deformation" +msgstr "השתקפות ועיוות קוביית קומפיז" + +msgid "Cube Bottom Color" +msgstr "צבע קוביה תחתון" + +msgid "Cube Reflection and Deformation" +msgstr "השתקפות ועיוות קוביה" + +msgid "Cube Top Color" +msgstr "צבע קוביה עליון" + +msgid "Cube caps" +msgstr "מכסי קוביה" + +msgid "Cylinder" +msgstr "גליל" + +msgid "Deform caps" +msgstr "עוות מכסים" + +msgid "Deform cube caps." +msgstr "עוות מכסי קוביה." + +msgid "Deform only on mouse rotate" +msgstr "עוות רק בעת סיבוב עם העכבר" + +msgid "Deformation" +msgstr "עיוות" + +msgid "Deformation in unfold cube mode." +msgstr "עיוות במצב פרישת קוביה." + +msgid "Deformation mode." +msgstr "מצב עיוות." + +msgid "Distance" +msgstr "מרחק" + +msgid "Draw bottom face" +msgstr "צייר פאה תחתונה" + +msgid "Draw bottom face of the cube" +msgstr "צייר את פאת הקוביה התחתונה" + +msgid "Draw top face" +msgstr "צייר פאה עליונה" + +msgid "Draw top face of the cube" +msgstr "צייר את פאת הקוביה העליונה" + +msgid "Enabled" +msgstr "פועל" + +msgid "Give cube a reflective ground." +msgstr "הצב את הקוביה על משטח משקף." + +msgid "Go back to previous image for bottom face of the cube" +msgstr "חזור לתמונה הקודמת על גבי פאת הקוביה התחתונה" + +msgid "Go back to previous image for top face of the cube" +msgstr "חזור לתמונה הקודמת על גבי פאת הקוביה העליונה" + +msgid "Ground color(far)" +msgstr "צבע קרקע (רחוקה)" + +msgid "Ground color(near)" +msgstr "צבע קרקע (קרובה)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "הפעל עיוות גלילי של הקוביה רק אם הסיבוב נעשה באמצעות העכבר." + +msgid "Intensity" +msgstr "עוצמה" + +msgid "Jumpy" +msgstr "קופצני" + +msgid "Jumpy reflection" +msgstr "השתקפות קופצנית" + +msgid "" +"List of PNG and SVG files that should be rendered on bottom face of cube" +msgstr "רשימת קבצי PNG ו-SVG לציור על פאת הקוביה התחתונה" + +msgid "List of PNG and SVG files that should be rendered on top face of cube" +msgstr "רשימת קבצי PNG ו-SVG לציור על פאת הקוביה העליונה" + +msgid "Maintain bottom aspect ratio" +msgstr "שמר יחס אורך ורוחב במכסה התחתון" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "שמר יחס אורך ורוחב בתמונת המכסה התחתון." + +msgid "Maintain top aspect ratio" +msgstr "שמר יחס אורך ורוחב במכסה העליון" + +msgid "Maintain top cap image aspect ratio." +msgstr "שמר יחס אורך ורוחב בתמונת המכסה העליון." + +msgid "Next bottom image" +msgstr "התמונה התחתונה הבאה" + +msgid "Next top image" +msgstr "תמונה העליונה הבאה" + +msgid "Prev bottom image" +msgstr "התמונה התחתונה הקודמת" + +msgid "Prev top image" +msgstr "התמונה העליונה הקודמת" + +msgid "Reflection" +msgstr "השתקפות" + +msgid "Reflection ground size" +msgstr "גודל הקרקע" + +msgid "Reflection ground size." +msgstr "גודל הקרקע עבור השתקפות." + +msgid "Reflection intensity" +msgstr "עוצמת השתקפות" + +msgid "Reflection mode" +msgstr "אופן השתקפות" + +msgid "Reflection mode." +msgstr "אופן השתקפות." + +msgid "Scale bottom image" +msgstr "התאם גודל תמונה תחתונה" + +msgid "Scale image to cover bottom face of cube" +msgstr "התאם את גודל התמונה כדי לכסות את פאת הקוביה התחתונה" + +msgid "Scale image to cover top face of cube" +msgstr "התאם את גודל התמונה כדי לכסות את פאת הקוביה העליונה" + +msgid "Scale top image" +msgstr "התאם גודל תמונה עליונה" + +msgid "Sphere" +msgstr "כדור" + +msgid "Top image files" +msgstr "קבצי תמונה עליונה" + +msgid "Unfold cube deformation" +msgstr "עיוות פרישה של הקוביה" + +msgid "Zoom out automatically only on mouse rotate." +msgstr "תקריב אוטומטי החוצה רק בעת סיבוב עם העכבר." + +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "תקריב אוטומטי החוצה על מנת להתאים את גודל הקוביה למסך." + +msgid "Cube Caps" +msgstr "מכסי קוביה" + +msgid "Render images on top and bottom of the cube" +msgstr "צייר תמונות על גבי פאת הקוביה התחתונה" + +msgid "Compiz cube reflection" +msgstr "השתקפות קוביה בקומפיז" + +msgid "Cube Reflection" +msgstr "השתקפות קוביה" + +msgid "Animation used when switching to expo mode" +msgstr "אנימציה בעת מעבר למצב אקספו" + +msgid "Aspect Ratio" +msgstr "יחס אורך ורוחב" + +msgid "Button binding for drag & drop of windows" +msgstr "כפתור לגרירה והשלכה של חלונות" + +msgid "Button binding to exit expo" +msgstr "כפתור ליציאה מאקספו" + +msgid "Button binding to switch to next viewport in expo" +msgstr "כפתור למעבר למשטח העבודה הבא באקספו" + +msgid "Curve" +msgstr "עיקול" + +msgid "Curve strength" +msgstr "חדות עיקול" + +msgid "Deformation of the expo wall" +msgstr "עיוות של קיר האקספו" + +msgid "Distance between viewports" +msgstr "מרחק בין משטחי עבודה" + +msgid "Distance of the expo wall" +msgstr "מרחק קיר האקספו" + +msgid "Double click time" +msgstr "משך הקלקה כפולה" + +msgid "Drag&drop" +msgstr "גרירה והשלכה" + +msgid "Duration of the zoomout animation" +msgstr "משך אנימציה של תקריב החוצה" + +msgid "Engage wall expo mode button binding" +msgstr "כפתור להפעלת מצב קיר אקספו" + +msgid "Engage wall expo mode edge binding" +msgstr "קצה מסך להפעלת מצב קיר אקספו" + +msgid "Engage wall expo mode key binding" +msgstr "מקש להפעלת מצב קיר אקספו" + +msgid "Exit expo" +msgstr "צא מאקספו" + +msgid "Expo" +msgstr "אקספו" + +msgid "Expo Animation" +msgstr "אנימצית אקספו" + +msgid "Expo Plugin" +msgstr "התקן אקספו" + +msgid "Expo button" +msgstr "כפתור אקספו" + +msgid "Expo edge" +msgstr "קצה מסך לאקספו" + +msgid "Expo key" +msgstr "מקש אקספו" + +msgid "Expo mode aspect ratio" +msgstr "יחס אורך ורוחב במצב אקספו" + +msgid "Fade + Zoom" +msgstr "דהיה + תקריב" + +msgid "Generate mipmaps in expo mode" +msgstr "ייצר mipmap במצב אקספו" + +msgid "Hide panels/docks in expo" +msgstr "הסתר פאנלים\\מעגנים במצב אקספו" + +msgid "Hide panels/docks in expo." +msgstr "הסתר פאנלים\\מעגנים במצב אקספו." + +msgid "Immediate moves" +msgstr "תזוזות מיידיות" + +msgid "Inactive viewport brightness." +msgstr "בהירות משטח עבודה לא פעיל." + +msgid "Inactive viewport saturation." +msgstr "רווית משטח עבודה לא פעיל." + +msgid "Mipmaps" +msgstr "Mipmaps" + +msgid "Multi Output Mode" +msgstr "מצב פלט מרובה" + +msgid "Next viewport" +msgstr "משטח העבודה הבא" + +msgid "One big wall" +msgstr "קיר גדול יחיד" + +msgid "One wall per output" +msgstr "קיר לכל פלט" + +msgid "Previous viewport" +msgstr "משטח העבודה הקודם" + +msgid "Reflection Scale" +msgstr "גודל השתקפות" + +msgid "Scale factor of the expo wall reflection" +msgstr "מקדם הגודל של השתקפות הקיר באקספו" + +msgid "" +"Selects how the expo wall is displayed if multiple output devices are used." +msgstr "קובע כיצד יוצג קיר האקספו כאשר נעשה שימוש במספר התקני פלט." + +msgid "" +"Selects if windows movements in expo mode should be immediate - this among " +"other things disables wobbliness" +msgstr "" +"קובע אם תנועות חלון באקספו צריכות להיות מיידיות - בין השאר, מבטל את אפקט " +"הנדנוד" + +msgid "Show a reflection of the viewports on the ground" +msgstr "הצג השתקפות של משטחי העבודה על הקרקע" + +msgid "Strength of the deformation in curve mode" +msgstr "עוצמת העיוות במצב עיקול" + +msgid "Tilt" +msgstr "שיפוע" + +msgid "Timeframe to execute a double click" +msgstr "משך זמן לביצוע הקלקה כפולה" + +msgid "Viewport distance" +msgstr "מרחק משטח עבודה" + +msgid "Vortex" +msgstr "מערבולת" + +msgid "Zoom time" +msgstr "משך תקריב" + +msgid "Activate Demanding Attention Window" +msgstr "הפעל חלון הדורש תשומת לב" + +msgid "Activate Window" +msgstr "הפעל חלון" + +msgid "Activate a given window" +msgstr "הפעל חלון נתון" + +msgid "Activate next window which has the \"demands attention\" flag set." +msgstr "הפעל את החלון הבא שעבורו נקבע הדגל \"דורש תשומת לב\"." + +msgid "Extra WM Actions" +msgstr "פעולות חלון נוספות" + +msgid "Provides less commonly used WM actions" +msgstr "מספק פעולות ניהול חלונות שאינן נפוצות" + +msgid "Toggle Always-On-Top" +msgstr "הפעל\\נטרל תמיד למעלה" + +msgid "Toggle Fullscreen" +msgstr "הפעל\\נטרל מסך מלא" + +msgid "Toggle Redirect" +msgstr "הפעל\\נטרל נתב מחדש" + +msgid "Toggle Sticky" +msgstr "הפעל\\נטרל דביק" + +msgid "Toggle always on top for the active window" +msgstr "הפעל\\נטרל תמיד למעלה עבור החלון הפעיל" + +msgid "Toggle window fullscreen" +msgstr "הפעל\\נטרל חלון במסך מלא" + +msgid "Toggle window redirect" +msgstr "הפעל\\נטרל נתב מחדש את החלון" + +msgid "Toggle window stickyness" +msgstr "הפעל\\נטרל דביקות חלון" + +msgid "Always fit to window on focus track" +msgstr "התאם תמיד לחלון בעת מעקב אחרי המוקד" + +msgid "" +"Always keep the zoomed area in sync with where the mouse is, and vice versa. " +"Use this if you don't intend to draw a scaled pointer or hide the original " +"pointer. The zoomed area will move as you move your mouse." +msgstr "" +"סנכרן תמיד את איזור התקריב עם מקום סמן העכבר. יש להשתמש באפשרות זו אם אין " +"כוונה לצייר סמן בגודל מותאם או להסתיר את הסמן המקורי. איזור התקריב יזוז עם " +"סמן העכבר." + +msgid "Animation" +msgstr "אנימציה" + +msgid "" +"Attempt to keep the zoomed mouse visible by warping it when it is moved " +"outside the zoom area." +msgstr "" +"נסה לדאוג לכך שסמן העכבר תמיד ייראה לעין בזמן תקריב על ידי הקפצתו חזרה במידה " +"שהוא מוסט אל מחוץ לאיזור התקריב." + +msgid "Center the mouse" +msgstr "מרכז את העכבר" + +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "התאם את גודל סמן העכבר" + +msgid "Enable focus tracking" +msgstr "אפשר מעקב אחר מוקד" + +msgid "Enable this to get a gradually larger mouse pointer as you zoom in" +msgstr "מאפשר הצגת סמן עכבר גדול יותר ויותר בעת תקריב פנימה." + +msgid "" +"Enable this to target the focused window when jumping to a specific zoom " +"level. Disable to target mouse." +msgstr "" +"מאפשר נעילה על החלון הפעיל בעת קפיצה לרמת תקריב ספציפית. ביטול אפשרות זו " +"יביא לנעילה על סמן העכבר." + +msgid "Enhanced Zoom Desktop" +msgstr "תקריב משופר" + +msgid "Enhanced zoom functions for the visually impaired and other users" +msgstr "פונקציות תקריב מתקדמות עבור משתמשים כבדי ראייה ואחרים" + +msgid "Filter Linear" +msgstr "מסנן לינארי" + +msgid "Fit the window to the zoom level" +msgstr "התאם החלון לרמת התקריב" + +msgid "" +"Fit the zoomed area to the window when the zoomed area moves as a result of " +"focus tracking." +msgstr "התאם את איזור התקריב לחלון כאשר איזור התקריב מוזז בשל מעקב אחרי מוקד." + +msgid "" +"Fit the zoomed area to the window when the zoomed area moves as a result of " +"focus tracking. Even when not initially zoomed in." +msgstr "" +"התאם את איזור התקריב לחלון כאשר איזור התקריב מוזז בשל מעקב אחרי מוקד, אפילו " +"אם לא התבצע תקריב מלכתחילה." + +msgid "Fit zoom level to window on focus change" +msgstr "התאם את רמת התקריב לחלון בעת העברת מוקד" + +msgid "Fit zoomed area to window" +msgstr "התאם את איזור התקריב לחלון" + +msgid "Fitting" +msgstr "התאמה" + +msgid "Focus Tracking" +msgstr "מעקב אחר המוקד" + +msgid "Follow Focus Delay" +msgstr "השהייה לפני מעקב אחר המוקד" + +msgid "Hide original mouse pointer" +msgstr "הסתר את סמן העכבר המקורי" + +msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" +msgstr "מסתיר את סמן העכבר המקורי בעת תקריב פנימה והתאמת גודל הסמן" + +msgid "Minimum zoom factor" +msgstr "מקדם תקריב מזערי" + +msgid "Mouse Behaviour" +msgstr "התנהגות עכבר" + +msgid "Mouse Restrain Margin" +msgstr "שוליים תוחמי עכבר" + +msgid "Mouse panning" +msgstr "פנייה באמצעות העכבר" + +msgid "Move the zoom area when focus changes." +msgstr "הזז את איזור התקריב בעת מעבר מוקד." + +msgid "" +"Move the zoomed area this much whenever you pan the zoomed area with keys." +msgstr "הזז את איזור התקריב במידה זו בעת הסטת איזר התקריב בעזרת מקשי המקלדת." + +msgid "" +"Only attempt to center newly focused windows if the mouse hasn't moved in " +"this amount of seconds. Use this to avoid jumping when using sloppy focus." +msgstr "" +"נסה להתמרכז על חלונות חדשים רק אם העכבר לא זז במשך מספר זה של שניות. אפשרות " +"זו מונעת קפיצות בעת שימוש במיקוד רשלני (העברת המוקד באמצעות הזזת סמן העכבר " +"מעל החלון ללא הקלקה)." + +msgid "Pan (move) the zoom area down" +msgstr "הפנה (הזז) את איזור התקריב מטה" + +msgid "Pan (move) the zoom area left" +msgstr "הפנה (הזז) את איזור התקריב שמאלה" + +msgid "Pan (move) the zoom area right" +msgstr "הפנה (הזז) את איזור התקריב ימינה" + +msgid "Pan (move) the zoom area up" +msgstr "הפנה (הזז) את איזור התקריב מעלה" + +msgid "Pan Factor" +msgstr "מקדם הפנייה" + +msgid "Pan Zoom Down" +msgstr "הפנה תקריב מטה" + +msgid "Pan Zoom Left" +msgstr "הפנה תקריב שמאלה" + +msgid "Pan Zoom Right" +msgstr "הפנה תקריב ימינה" + +msgid "Pan Zoom Up" +msgstr "הפנה תקריב מעלה" + +msgid "Pan the zoom area when the mouse cursor moves outside the visible area." +msgstr "הפנה את איזור התקריב כאשר סמן העכבר יוצא מן התחום הנראה" + +msgid "Panning" +msgstr "הפנייה" + +msgid "Puts the mouse in the middle of the screen (Regardless of zoom level)" +msgstr "ממקם את סמן העכבר במרכז המסך (בלי להתחשב ברמת התקריב)" + +msgid "Resize the window so it matches the current zoom level." +msgstr "שנה את גודל החלון כך שיתאים לרמת התקריב הנוכחית." + +msgid "Restrain the mouse to the zoom area" +msgstr "הגבל עכבר לאיזור התקריב" + +msgid "Scale the mouse pointer" +msgstr "התאם את גודל סמן העכבר" + +msgid "Specific Zoom" +msgstr "תקריב ספציפי" + +msgid "Specific zoom factor 1" +msgstr "מקדם תקריב 1" + +msgid "Specific zoom factor 2" +msgstr "מקדם תקריב 2" + +msgid "Specific zoom factor 3" +msgstr "מקדם תקריב 3" + +msgid "Speed" +msgstr "מהירות" + +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "התאם את גודל סמן העכבר" + +msgid "Sync Mouse" +msgstr "סנכרון עכבר" + +msgid "Target Focused Window on Specific level" +msgstr "הינעל על החלון הפעיל ברמה ספציפית" + +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" +"מקדם התקריב המזערי. ערך של 0.5 פירושו תקריב של פי 2, ערך של 0.25 פירושו " +"תקריב של פי 4." + +msgid "The size of the margin to add when attempting to restrain the mouse." +msgstr "גודל השוליים להוספה בעת נסיון להגביל את העכבר." + +msgid "Timestep" +msgstr "יחידת זמן" + +msgid "Toggle zoom area lock" +msgstr "הפעל\\נטרל נעילת איזור תקריב" + +msgid "Toggles a lock on the zoom area so it doesn't change on various events" +msgstr "מפעיל או מנטרל את נעילת איזור התקריב, כך שלא יושפע מאירועים שונים" + +msgid "Use linear filter when zoomed in" +msgstr "השתמש בפילטר לינארי בעת תקריב פנימה" + +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + +msgid "Zoom Area Movement" +msgstr "תזוזת איזור תקריב" + +msgid "Zoom Box" +msgstr "תיבת תקריב" + +msgid "Zoom In" +msgstr "תקריב פנימה" + +msgid "Zoom In/Out" +msgstr "תקריב פנימה\\החוצה" + +msgid "Zoom Out" +msgstr "תקריב החוצה" + +msgid "Zoom Specific Level 1" +msgstr "רמת תקריב ספציפית 1" + +msgid "Zoom Specific Level 2" +msgstr "רמת תקריב ספציפית 2" + +msgid "Zoom Specific Level 3" +msgstr "רמת תקריב ספציפית 3" + +msgid "Zoom Speed" +msgstr "מהירות תקריב" + +msgid "Zoom Timestep" +msgstr "יחידת זמן תקריב" + +msgid "Zoom factor" +msgstr "מקדם תקריב" + +msgid "Zoom in on a boxed area" +msgstr "תקריב פנימה מתוחם בתיבה" + +msgid "Zoom in/out by this factor. Higher value means quicker zooming." +msgstr "מקדם לתקריב פנימה\\החוצה. ערך גבוה יותר יביא לתקריב מהיר יותר." + +msgid "Zoom level to go to when triggering hotkey 1" +msgstr "רמת התקריב שיש לעבור אליה בעת הפעלת מקש חם 1" + +msgid "Zoom level to go to when triggering hotkey 2" +msgstr "רמת התקריב שיש לעבור אליה בעת הפעלת מקש חם 2" + +msgid "Zoom level to go to when triggering hotkey 3" +msgstr "רמת התקריב שיש לעבור אליה בעת הפעלת מקש חם 3" + +msgid "Zoom to the specific zoom level 1" +msgstr "תקריב לרמת תקריב ספציפית 1" + +msgid "Zoom to the specific zoom level 2" +msgstr "תקריב לרמת תקריב ספציפית 2" + +msgid "Zoom to the specific zoom level 3" +msgstr "תקריב לרמת תקריב ספציפית 3" + +msgid "" +"Zooms in/out so the focused window is zoomed to the maximum while still " +"being fully visible." +msgstr "מבצע תקריב פנימה\\החוצה כך שהחלון מוצג בתקריב מירבי אך עדיין נראה לעין" + +msgid "Easily access your desktop" +msgstr "גישה קלה לשולחן העבודה" + +msgid "Fade Time" +msgstr "זמן דהייה" + +msgid "Fade time (in ms)" +msgstr "זמן דהייה (במילישניות)" + +msgid "Fade to Desktop" +msgstr "דהייה אל שולחן העבודה" + +msgid "Windows that should be faded to desktop" +msgstr "חלונות האמורים לדהות אל שולחן העבודה" + +msgid "Alter window opacity based on color." +msgstr "שנה אטימות חלון בהתבסס על הצבע." + +msgid "Color Opacity" +msgstr "אטימות צבע" + +msgid "Toggle Window Fake ARGB" +msgstr "הפעל\\נטרל ARGB מזויף לחלון" + +msgid "Toggle window fake ARGB." +msgstr "הפעל\\נטרל ARGB מזויף לחלון." + +msgid "Add Particle" +msgstr "הוסף חלקיק" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "מוסיף חלקיק אש במיקום (x, y), כאשר x ו-y הם מספרי נקודה צפה." + +msgid "Background brightness" +msgstr "בהירות רקע" + +msgid "Background brightness during paint" +msgstr "בהירות רקע במהלך צביעה" + +msgid "Clear" +msgstr "נקה" + +msgid "Clear (button)" +msgstr "נקה (כפתור)" + +msgid "Clear (key)" +msgstr "נקה (מקש)" + +msgid "Fire Particle Color" +msgstr "צבע חלקיקי אש" + +msgid "Fire Particle Life" +msgstr "אורך חיי חלקיקי אש" + +msgid "Fire Particle Size" +msgstr "גודל חלקיקי אש" + +msgid "Fire Particle Slowdown" +msgstr "האטת חלקיקי אש" + +msgid "Fire particle color." +msgstr "צבע חלקיקי אש." + +msgid "Fire particle life." +msgstr "אורך חיי חלקיקי אש." + +msgid "Fire particle size." +msgstr "גודל חלקיקי אש." + +msgid "Fire particle slowdown." +msgstr "האטת חלקיקי אש." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "צבעים אקראיים עבור אפקט האש; אש פיות." + +msgid "Initiate (button)" +msgstr "הפעל (כפתור)" + +msgid "Initiate (key)" +msgstr "הפעל (מקש)" + +msgid "Initiate fire drawing" +msgstr "התחל לצייר אש" + +msgid "Maximum number of active particles" +msgstr "מספר חלקיקים פעילים מירבי" + +msgid "Number of particles" +msgstr "מספר חלקיקים" + +msgid "Paint fire on the screen" +msgstr "צייר אש על המסך" + +msgid "Paint fire or other particles on the screen" +msgstr "צייר אש או חלקיקים אחרים על המסך" + +msgid "Randomly Colored Fire" +msgstr "אש בצבעים אקראיים" + +msgid "Cube Gears" +msgstr "קוביית גלגלי שיניים" + +msgid "Render gears inside of the transparent cube" +msgstr "צייר גלגלי שיניים בתוך הקוביה השקופה" + +msgid "Animation Options" +msgstr "אפשרויות אנימציה" + +msgid "Autotab windows on creation" +msgstr "אגד חלונות בתווית אוטומטית עם יצירתם" + +msgid "Autotab windows with themselves on window creation" +msgstr "אגד חלונות בתווית עם עצמם אוטומטית בעת יצירת חלון" + +msgid "Border Radius" +msgstr "רדיוס גבול" + +msgid "Border Width" +msgstr "רוחב גבול" + +msgid "Border color of the tab bar" +msgstr "צבע גבול שורת התוויות" + +msgid "Brightness of selected windows" +msgstr "בהירות החלונות שנבחרו" + +msgid "Change Tab Left" +msgstr "עבור לתווית משמאל" + +msgid "Change Tab Right" +msgstr "עבור לתווית מימין" + +msgid "Change tab animation duration" +msgstr "משך אנימצית מעבר תווית" + +msgid "Close Group" +msgstr "סגור קבוצה" + +msgid "Create mipmaps for thumbnails" +msgstr "צור mipmap עבור תמונות מוקטנות" + +msgid "Create mipmaps for thumbnails in the tab bar" +msgstr "צור mipmap עבור תמונות מוקטנות בשורת התוויות" + +msgid "" +"Distance (in pixels) between the tab bar and the dragged slot for applying " +"the spring model. If the distance is larger than that value, the model isn't " +"applied." +msgstr "" +"מרחק (בפיקסלים) בין שורת התוויות ובין התווית שנגררה על מנת להפעיל את מודל " +"הקפיצים. אם המרחק עולה על ערך זה, המודל לא יופעל." + +msgid "Duration (in s) of the animation that happens when changing tabs" +msgstr "משך האנימציה (בשניות) המתרחשת בעת מעבר תווית." + +msgid "Duration (in s) of the tab bar fading animation when showing/hiding it" +msgstr "משך אנימצית דהיית שורת התוויות (בשניות) בעת הצגתה\\הסתרתה." + +msgid "Duration (in s) of the tab bar pulse animation" +msgstr "משך אנימצית הבהוב בשורת התוויות (בשניות)." + +msgid "Duration (in s) of the tab bar reflex animation" +msgstr "משך אנימצית השתקפות בשורת התוויות (בשניות)." + +msgid "Duration (in s) of the text fading animation when showing/hiding it" +msgstr "משך אנימצית דהיית הטקסט (בשניות) בעת הצגתו\\הסתרתו." + +msgid "Enable Glow" +msgstr "אפשר הילה" + +msgid "Enable grouped window glowing" +msgstr "אפשר הילה של חלונות מקובצים" + +msgid "Fade time for tab bar animations" +msgstr "משך דהיה עבור אנימציות שורת התוויות" + +msgid "Fade time for text animations" +msgstr "משך דהייה עבור אנימציות טקסט" + +msgid "Fill color of the selection rectangle" +msgstr "צבע מילוי מלבן הבחירה" + +msgid "Fill color of the tab bar" +msgstr "צבע מילוי שורת התוויות" + +msgid "Font Color" +msgstr "צבע גופן" + +msgid "Font Size" +msgstr "גודל גופן" + +msgid "General" +msgstr "כללי" + +msgid "Glass" +msgstr "זכוכית" + +msgid "Glow" +msgstr "הילה" + +msgid "Glow Color Change" +msgstr "שינוי צבע הילה" + +msgid "Glow Size" +msgstr "גודל הילה" + +msgid "Glow Type" +msgstr "סוג הילה" + +msgid "Glow ring" +msgstr "הילת טבעת" + +msgid "Gradient" +msgstr "הדרגתי" + +msgid "Group Window Match" +msgstr "חלונות מתאימים לקיבוץ" + +msgid "Group Windows" +msgstr "קיבוץ חלונות" + +msgid "Group and Tab Windows" +msgstr "קיבוץ ואיגוד חלונות" + +msgid "Group the windows after selection" +msgstr "קבץ חלונות לאחר בחירה" + +msgid "Grouping" +msgstr "קיבוץ" + +msgid "Hover time for slot dragging" +msgstr "זמן ריחוף לשם גרירת תווית" + +msgid "" +"If one window in the group is (un)maximized, all other group windows are (un)" +"maximized as well." +msgstr "" +"אם אחד החלונות בקבוצה מוגדל אל \\ משוחזר מן הגודל המירבי, תחול הפעולה על כל " +"יתר החלונות בקבוצה." + +msgid "" +"If one window in the group is (un)minimized, all other group windows are (un)" +"minimized as well." +msgstr "" +"אם אחד החלונות בקבוצה ממוזער אל \\ משוחזר משורת המשימות, תחול הפעולה על כל " +"יתר החלונות בקבוצה." + +msgid "" +"If one window in the group is (un)shaded, all other group windows are (un)" +"shaded as well." +msgstr "" +"אם אחד החלונות בקבוצה נגלל \\ נפרש, תחול הפעולה על כל יתר החלונות בקבוצה." + +msgid "" +"If one window in the group is activated, all other group windows are raised " +"as well." +msgstr "" +"אם אחד החלונות בקבוצה הופך לפעיל, תחול הפעולה על כל יתר החלונות בקבוצה." + +msgid "" +"If one window in the group is moved, all other group windows are moved as " +"well." +msgstr "אם אחד החלונות בקבוצה מוזז, תחול הפעולה על כל יתר החלונות בקבוצה." + +msgid "" +"If one window in the group is resized, all other group windows are resized " +"as well." +msgstr "" +"אם משנים את גודל אחד החלונות בקבוצה, תחול הפעולה על כל יתר החלונות בקבוצה." + +msgid "If there is only 1 window left in the group, it will be ungrouped." +msgstr "אם נותר רק חלון אחד בקבוצה, היא תפורק." + +msgid "" +"If you don't like the current glow color, you can change it with this key." +msgstr "אם צבע ההילה הנוכחי אינו לטעמך, ניתן להחליפו בעזרת מקש זה." + +msgid "" +"If you have selected some windows, this automatically groups them (Doesn't " +"work with selection mode 'Normal')." +msgstr "" +"אם בחרת מספר חלונות, אפשרות זו מקבצת אותם אוטומטית (לא עובד במצב בחירה " +"'רגיל')." + +msgid "Ignore Group" +msgstr "התעלם מקבוצה" + +msgid "Key bindings" +msgstr "צירופי מקשים" + +msgid "Line Color" +msgstr "צבע קו" + +msgid "Line color of the selection rectangle" +msgstr "צבע הקו של מלבן הבחירה" + +msgid "Maximize/unmaximize with group" +msgstr "הגדל אל \\ שחר מן הגודל המירבי עם הקבוצה" + +msgid "Metal" +msgstr "מתכת" + +msgid "Minimize with group" +msgstr "מזער עם הקבוצה" + +msgid "" +"Mouse pointer movement speed limit (in pixels/second) for the spring model" +msgstr "מגבלת מהירות של סמן העכבר (בפיקסלים לשניה) עבור מודל הקפיצים" + +msgid "Move every window in the group" +msgstr "הזז את כל החלונות בקבוצה" + +msgid "Murrina" +msgstr "מורינה" + +msgid "Opacity of selected windows" +msgstr "אטימות החלונות הנבחרים" + +msgid "Play animations on the tab bar e.g. on fade in." +msgstr "הצג אנימציות בשורת התוויות, למשל בעת דהייה." + +msgid "Precision" +msgstr "דיוק" + +msgid "" +"Precision of the selection (percentage of the visible window area which must " +"be selected for the selection to be recognized)." +msgstr "דיוק הבחירה (אחוז שטח החלון הנראה שיש לבחור כדי שהבחירה תוכר ככזו)" + +msgid "Raise every window in the group" +msgstr "העלה כל חלון בקבוצה" + +msgid "Rectangular glow" +msgstr "הילה מלבנית" + +msgid "Remove Group Window" +msgstr "הסר חלון מקבוצה" + +msgid "Remove window from group after dropping it outside a tab bar" +msgstr "הסר את החלון מן הקבוצה לאחר השלכתו מחוץ לשורת התוויות" + +msgid "Resize every window in the group" +msgstr "שנה גודל כל חלון בקבוצה" + +msgid "Saturation of selected windows" +msgstr "רווית חלונות נבחרים" + +msgid "Select" +msgstr "בחירה" + +msgid "Select Single Window" +msgstr "בחירת חלון בודד" + +msgid "Selection" +msgstr "בחירה" + +msgid "Selection Color" +msgstr "צבע בחירה" + +msgid "Shade with group" +msgstr "גלול עם הקבוצה" + +msgid "Simple" +msgstr "פשוט" + +msgid "Slot Drag Spring K" +msgstr "קבוע קפיץ לגרירת תווית" + +msgid "Slot Dragging" +msgstr "גרירת תווית" + +msgid "Slot drag friction" +msgstr "חיכוך לגרירת תווית" + +msgid "Space" +msgstr "רווח" + +msgid "Speed limit for spring model" +msgstr "מגבלת מהירות עבור מודל קפיצים" + +msgid "Spring Konstant used for slot dragging" +msgstr "קבוע קפיץ עבור גרירת תווית" + +msgid "Spring friction for slot dragging" +msgstr "חיכוך קפיץ עבור גרירת תווית" + +msgid "Tab Bar Show Delay" +msgstr "השהייה לפני הצגת שורת תוויות" + +msgid "Tab Base Color" +msgstr "צבע תווית בסיסי" + +msgid "Tab Border Color" +msgstr "צבע גבול בסיסי" + +msgid "Tab Group" +msgstr "אגד קבוצה" + +msgid "Tab Highlight Color" +msgstr "צבע להבלטת תווית" + +msgid "Tab Style" +msgstr "סגנון תווית" + +msgid "Tab bar visibility time after tab change" +msgstr "משך הצגת שורת התוויות לאחר מעבר תווית" + +msgid "Tabbing" +msgstr "תוויות" + +msgid "Tabbing Speed" +msgstr "מהירות מעבר תוויות" + +msgid "Tabbing Timestep" +msgstr "יחידת זמן עבור מעבר תוויות" + +msgid "Tabbing speed" +msgstr "מהירות מעבר תוויות" + +msgid "Tabbing timestep" +msgstr "יחידת זמן עבור מעבר תוויות" + +msgid "The color of the window title in the tab bar" +msgstr "צבע כותרת החלון בשורת התוויות" + +msgid "The key for closing all windows in the group." +msgstr "מקש לסגירת כל החלונות בקבוצה." + +msgid "The key for grouping windows." +msgstr "מקש לקיבוץ חלונות." + +msgid "" +"The key for ignoring the group. If this key is pressed, you can do actions " +"for a single window in the group only." +msgstr "" +"מקש להתעלמות מקבוצה. לאחר לחיצה עליו, ניתן לבצע פעולות רק עבור חלון בודד " +"בקבוצה." + +msgid "The key for removing the selected window from its group." +msgstr "מקש להסרת החלון הנבחר מקבוצתו." + +msgid "The key for selecting the current window." +msgstr "מקש לבחירת החלון הנוכחי." + +msgid "The key for starting selecting windows." +msgstr "מקש להתחלת בחירת חלונות." + +msgid "The key for switching to the tab left of the current one." +msgstr "מקש למעבר לתווית שמשמאל לזו הנוכחית." + +msgid "The key for switching to the tab right of the current one." +msgstr "מקש למעבר לתווית שמימין לזו הנוכחית." + +msgid "The key for toggling the tab mode for the current group." +msgstr "מקש להחלפת מצב התוויות עבור הקבוצה הנוכחית." + +msgid "The key for ungrouping the current group." +msgstr "מקש לפירוק הקבוצה הנוכחית." + +msgid "The radius for the tab bar edges" +msgstr "רדיוס שולי שורת התוויות." + +msgid "The size of the grouped window glow" +msgstr "גודל הילת החלון המקובץ" + +msgid "The size of the window thumbs in the task bar" +msgstr "גודל החלונות הממוזערים בשורת התוויות" + +msgid "The size of the window title font in the tab bar" +msgstr "גודל גופן כותרת החלון בשורת התוויות" + +msgid "The space between the thumbs" +msgstr "הרווח בין החלונות הממוזערים" + +msgid "The style of the tab bar" +msgstr "סגנון שורת התוויות" + +msgid "The type of the glow" +msgstr "סגנון ההילה" + +msgid "The width of the tab bar outline" +msgstr "רוחב קר המתאר של שורת התוויות" + +msgid "Thumb Size" +msgstr "גודל חלונות ממוזערים" + +msgid "Time (in s) before the tab bar is shown after hovering the title bar" +msgstr "" +"משך זמן (בשניות) לפני ששורת התוויות מוצגת לאחר ריחוף על שורת הכותרת עם העכבר" + +msgid "Time (in s) the tab bar is visibly after a tab change" +msgstr "משך זמן (בשניות) שבו שורת התוויות נראית לעין לאחר מעבר תווית" + +msgid "Time for tab bar pulse animation" +msgstr "זמן אנימצית הבהוב בשורת התוויות" + +msgid "Time for tab bar reflex animation" +msgstr "מן אנימצית השתקפות בשורת התוויות" + +msgid "" +"Timespan (in s) after which a grouped window is activated if a window of " +"another group is dragged over it" +msgstr "" +"משך הזמן (בשניות) שלאחריו יופעל חלון מקובץ, במידה שחלון השייך לקבוצה אחרת " +"ייגרר מעליו" + +msgid "Ungroup Windows" +msgstr "פרק קבוצת חלונות" + +msgid "Ungroup the windows if only one window is left" +msgstr "פרק את קבוצת החלונות אם רק חלון אחד נשאר" + +msgid "Untab the group when closing the top tab window instead of changing tab" +msgstr "שחרר את איגוד התוויות של הקבוצה לאחר סגירת חלון התווית העליונה" + +msgid "Untab when closing top tab" +msgstr "שחרר איגוד תוויות לאחר סגירת תווית עליונה" + +msgid "Use tab bar animations" +msgstr "הצג אנימציות בשורת התוויות" + +msgid "Window Title Font" +msgstr "גופן כותרת חלון" + +msgid "Windows that should be allowed to be grouped" +msgstr "חלונות שמותר לצרפם לקבוצות" + +msgid "With this plugin you can group and tab windows" +msgstr "בעזרת התקן זה ניתן לקבץ ולאגד חלונות" + +msgid "Y distance for spring model" +msgstr "מרחק Y עבור מודל קפיצים" + +msgid "Compression Quality" +msgstr "איכות דחיסה" + +msgid "JPEG" +msgstr "JPEG" + +msgid "JPEG image format plugin" +msgstr "התקן תסדיר תמונה JPEG" + +msgid "Quality of compression when saving JPEG images" +msgstr "איכות הדחיסה בעת שמירת תמונות JPEG" + +msgid "Background/Window brightness." +msgstr "בהירות רקע \\ חלון." + +msgid "Background/Window saturation." +msgstr "רווית רקע \\ חלון." + +msgid "Fade In/Out Time" +msgstr "משך דהייה פנימה\\החוצה" + +msgid "Fade In/Out Time." +msgstr "משך דהייה פנימה\\החוצה." + +msgid "Login" +msgstr "התחברות" + +msgid "Login Window Match" +msgstr "תבנית חלון התחברות" + +msgid "Login Window match" +msgstr "תבנית חלון התחברות" + +msgid "Login/Logout" +msgstr "התחברות\\התנתקות" + +msgid "Login/Logout effect" +msgstr "אפקט התחברות\\התנתקות" + +msgid "Logout" +msgstr "התנתקות" + +msgid "Logout Window Match" +msgstr "תבנית חלון התנתקות" + +msgid "Logout Window match" +msgstr "תבנית חלון התנתקות" + +msgid "Window opacity." +msgstr "אטימות חלון." + +msgid "Border color" +msgstr "צבע גבול" + +msgid "Border width" +msgstr "רוחב גבול" + +msgid "Border widtht." +msgstr "רוחב הגבול." + +msgid "Box height." +msgstr "גובה קופסה." + +msgid "Box width." +msgstr "רוחב קופסה." + +msgid "Clip mask" +msgstr "מסיכת גזירה" + +msgid "Clip mask." +msgstr "מסיכת גזירה." + +msgid "Fisheye" +msgstr "עין דג" + +msgid "Height" +msgstr "גובה" + +msgid "Image overlay" +msgstr "תמונת כיסוי" + +msgid "Keep fully on screen" +msgstr "שמור את הכל על המסך" + +msgid "Keep fully on screen." +msgstr "שמור את הכל על המסך." + +msgid "Magnifier" +msgstr "זכוכית מגדלת" + +msgid "Magnifier box" +msgstr "תיבת זכוכית מגדלת" + +msgid "Magnifier image" +msgstr "תמונת זכוכית מגדלת" + +msgid "Magnifier image." +msgstr "תמונת זכוכית מגדלת." + +msgid "Mode" +msgstr "מצב" + +msgid "Mode." +msgstr "מצב." + +msgid "Radius" +msgstr "רדיוס" + +msgid "Radius of the magnification area." +msgstr "רדיוס השטח המוגדל." + +msgid "Width" +msgstr "רוחב" + +msgid "X offset of the cursor" +msgstr "הסטת X של הסמן" + +msgid "X offset of the cursor." +msgstr "הסטת X של הסמן." + +msgid "Y offset of the cursor" +msgstr "הסטת Y של הסמן" + +msgid "Y offset of the cursor." +msgstr "הסטת Y של הסמן." + +msgid "Zoom factor for keyboard initiated magnifier." +msgstr "מקדם תקריב עבור זכוכית מגדלת המופעלת בעזרת המקלדת." + +msgid "Ignore already overlapping windows in the calculations" +msgstr "התעלם מחלונות חופפים לצורך החישובים" + +msgid "Ignore sticky windows in the calculations" +msgstr "התעלם מחלונות דביקים לצורך החישובים" + +msgid "Maximumize" +msgstr "התרחב בחלל הפנוי" + +msgid "Maximumizes windows (resize them to fit the available screenspace)." +msgstr "" +"מרחיב את החלונות בחלל הפנוי (משנה את גודלם כדי שיתאימו למשטח המסך הזמין)." + +msgid "" +"Treat sticky windows as non-existant when calculating space to use for the " +"maximumize window." +msgstr "" +"בעת חישוב החלל עבור הרחבת חלון בחלל הפנוי, התייחס לחלונות דביקים כאילו אינם " +"קיימים." + +msgid "" +"Treat windows that are already overlapping with the current window as non-" +"existant when calculating space to use for the maximumize window." +msgstr "" +"בעת חישוב החלל עבור הרחבת חלון בחלל הפנוי, התייחס לחלונות החופפים לחלון " +"הנוכחי כאילו אינם קיימים." + +msgid "" +"Trigger a resize of the window currently focused so it fits as much of the " +"available screenspae as possible." +msgstr "משנה את גודל החלון הפעיל כדי להתאים לכמה שיותר מן החלל הפנוי על המסך." + +msgid "Trigger maximumize" +msgstr "הרחב לחלל הפנוי" + +msgid "Accumulation buffer" +msgstr "חוצץ צבירה" + +msgid "Activate" +msgstr "הפעל" + +msgid "Execute Motion Blur if the screen is transformed." +msgstr "הפעל טשטוש תנועה אם צורת המסך משתנה." + +msgid "Motion Blur Strength" +msgstr "עוצמת טשטוש תנועה" + +msgid "Motion Blur mode" +msgstr "אופן טשטוש תנועה" + +msgid "Motion Blur on Transformed Screen" +msgstr "טשטוש תנועה בשינוי מסך" + +msgid "Motion Blur render mode." +msgstr "אופן ציור טשטוש תנועה." + +msgid "Motion Blur strength." +msgstr "עוצמת טשטוש תנועה." + +msgid "Motion blur" +msgstr "טשטוש תנועה" + +msgid "Motion blur effect" +msgstr "אפקט טשטוש תנועה" + +msgid "Texture Copy" +msgstr "העתקת טקסטורות" + +msgid "Toggle Motion Blur" +msgstr "הפעל\\נטרל טשטוש תנועה" + +msgid "Toggle motion Blur effect." +msgstr "הפעל\\נטרל אפקט טשטוש תנועה." + +msgid "Visibility/Performance" +msgstr "מראה\\ביצועים" + +msgid "Action" +msgstr "פעולה" + +msgid "Action that is to be invoked." +msgstr "הפעולה שתופעל." + +msgid "Assign mousegestures to any existing action" +msgstr "הצמד מחוות עכבר לכל פעולה קיימת שהיא" + +msgid "Detect Diagonal Movements" +msgstr "זהה תנועות באלכסון" + +msgid "Gesture" +msgstr "מחווה" + +msgid "Gesture assignment" +msgstr "הצמדת מחוות" + +msgid "Gestures" +msgstr "מחוות" + +msgid "" +"If this option is selected, diagonal movements are detected, which may lead " +"to a decreased detection accuracy." +msgstr "" +"אם אפשרות זו נבחרה ניתן יהיה לזהות תנועות אלכסוניות, מה שעלול לפגוע בדייקנות " +"הזיהוי." + +msgid "Mouse gesture to assign an action to." +msgstr "מחוות עכבר שתוצמד לפעולה." + +msgid "Mousegestures" +msgstr "מחוות עכבר" + +msgid "Plugin" +msgstr "התקן" + +msgid "Plugin the action belongs to." +msgstr "ההתקן שהפעולה שייכת אליו." + +msgid "Start gesture" +msgstr "התחל מחווה" + +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"תדירות בדיקת מיקום העכבר במילישניות. הקטנת ערך זה תפחית את קופצניות התזוזה." + +msgid "Misc" +msgstr "שונות" + +msgid "Mouse Poll Interval" +msgstr "מרווח זמן לבדיקת עכבר" + +msgid "Mouse position polling" +msgstr "סקר מיקום עכבר" + +msgid "Updates the mouse pointer position from the xserver" +msgstr "מקבל עדכונים משרת ה-X על מיקום העכבר " + +msgid "Begin Gesture" +msgstr "התחל מחווה" + +msgid "Begin Mouse Gesture" +msgstr "התחל מחוות עכבר" + +msgid "Mouse switch" +msgstr "מעבר עכבר" + +msgid "Switch viewport in response to mouse gesture" +msgstr "עבור למשטח עבודה אחר בתגובה למחוות עכבר" + +msgid "Also negate window decorations, not only the window contents." +msgstr "הפוך גם את צבעי מסגרת החלון, לא רק את אלה של תוכן החלון." + +msgid "Exclude Windows" +msgstr "התעלם מחלונות" + +msgid "Neg Windows" +msgstr "שלול חלונות" + +msgid "Negate Decorations" +msgstr "שלול מסגרות" + +msgid "Negative" +msgstr "תשליל" + +msgid "Toggle Screen Negative" +msgstr "הפעל\\נטרל תשליל מסך" + +msgid "Toggle Window Negative" +msgstr "הפעל\\נטרל תשליל חלון" + +msgid "Toggle active window negative" +msgstr "הפעל\\נטרל תשליל בחלון הפעיל" + +msgid "Toggle screen negative" +msgstr "הפעל\\נטרל תשליל מסך" + +msgid "Used to set a window or screen negative" +msgstr "צובע חלון או מסך כתשליל" + +msgid "Windows to be negative by default" +msgstr "חלונות בצבעי תשליל כברירת מחדל" + +msgid "Windows to exclude from negating" +msgstr "חלונות שאין לצבוע כתשליל" + +msgid "Debug" +msgstr "דיבוג" + +msgid "Display errors and other messages using libnotify." +msgstr "מציג הודעות שגיאה ומסרים אחרים באמצעות libnotify." + +msgid "Error" +msgstr "שגיאה" + +msgid "Error Notifications" +msgstr "הודעות שגיאה" + +msgid "Fatal" +msgstr "בעיה פטלית" + +msgid "Hide Timeout" +msgstr "זמן לפני הסתרה" + +msgid "Info" +msgstr "מידע" + +msgid "Maximum Log Level" +msgstr "רמת לוג מירבית" + +msgid "The maximum log level to display" +msgstr "רמת הלוג המירבית שתוצג" + +msgid "" +"Timeout (in seconds) before hiding the notification, set to -1 for system " +"default and 0 for indefinite" +msgstr "" +"פרק זמן (בשניות) לפני הסתרת ההודעה. 1- פירושו ברירת המחדל של המערכת, ו-0 " +"פירושו ללא הגבלת זמן." + +msgid "Warning" +msgstr "אזהרה" + +msgid "Active Opacity" +msgstr "אטימות חלון פעיל" + +msgid "" +"Bypass delay when Opacify is reducing the opacity on one or more windows " +"already." +msgstr "עקוף השהייה כאשר התקן האיטום כבר מפחית את אטימותו של חלון כלשהו." + +msgid "Bypass delay when the new active window is the focused window." +msgstr "עקוף השהייה כאשר החלון הפעיל החדש הוא החלון בעל המוקד." + +msgid "Delay until Opacification" +msgstr "השהייה לפני איטום" + +msgid "" +"Do not wait if the window we are hovering is the focused window. This allows " +"us to instantly see the focused window. You probably want to disable this if " +"you are not using 'Click to Focus'." +msgstr "" +"אם החלון עליו מרחף סמן העכבר הוא החלון הפעיל, אל תשתהה. הדבר מאפשר לראות " +"מייד את החלון הפעיל. אם אינכם משתמשים ב-'הקלקה למיקוד' סביר שתעדיפו לבטל זאת." + +msgid "Make windows easily visible by hovering the mouse over them" +msgstr "הצג את החלונות בקלות על ידי העברת סמן העכבר מעליהם" + +msgid "Only increase opacity if a window is blocking" +msgstr "הגבר אטימות רק אם קיים חלון חוסם" + +msgid "" +"Only increase the opacity on the targeted window if it has one or more " +"windows blocking it from view." +msgstr "הגבר את אטימות החלון הנבחר רק אם יש מעליו חלונות המסתירים אותו." + +msgid "Opacify" +msgstr "איטום" + +msgid "Opacity Levels" +msgstr "רמות אטימות" + +msgid "Passive Opacity" +msgstr "אטימות סבילה" + +msgid "Reset opacity to original values when toggling" +msgstr "החזר אטימות לערכה המקורי בעת הפעלה\\נטרול" + +msgid "" +"Reset the opacity of all windows modified by opacify when toggling Opacify " +"with the defined key-combination." +msgstr "" +"החזר את אטימותם של כל החלונות שהושפעו על ידי התקן האיטום כאשר ההתקן מופעל או " +"מנוטרל באמצעות צירוף מקשים." + +msgid "" +"The delay (in ms) before Opacify changes opacity after the active window has " +"changed." +msgstr "" +"השהייה (במילישניות) לפני שהתקן האיטום משנה את האטימות לאחר החלפת החלון הפעיל." + +msgid "" +"The maximum opacity percentage a window blocking the current targeted window " +"can have. A blocking window will have either this opacity or the preset " +"opacity, whichever is lower." +msgstr "" +"אחוז האטימות המירבי שחלון החוסם את החלון הנבחר רשאי להגיע אליו. חלון חוסם " +"יהיה בעל אטימות זו או האטימות הקבועה מראש (הנמוכה מביניהן)." + +msgid "" +"The minimum opacity percentage to ensure a targeted window has. A target " +"window will have either this opacity or the preset opacity, whichever is " +"higher." +msgstr "" +"אחוז האטימות המזערי של חלון נבחר. חלון נבחר יהיה בעל אטימות זו או האטימות " +"הקבועה מראש (הגבוהה מביניהן)." + +msgid "" +"This enables you to let Opacify instantly opacify new windows when you're " +"already making one or more windows invisible. Makes for faster behavior " +"while looking through layers of hidden windows." +msgstr "" +"הנח להתקן האיטום לפעול מייד על חלונות חדשים כאשר אחד או יותר מן החלונות כבר " +"הפך לשקוף. כך ניתן להביט מהר יותר דרך שכבות של חלונות." + +msgid "Toggle Opacify" +msgstr "הפעל\\נטרל איטום" + +msgid "Toggle Opacify on by default" +msgstr "הפעל איטום כברירת מחדל" + +msgid "" +"Use this to enable/disable Opacify on the fly. Previously opacified windows " +"will not be reset once you disable it like this." +msgstr "" +"משמש להפעלת\\ניטרול איטום תוך כדי עבודה. חלונות שכבר הופעל עליהם איטום לא " +"ישוחזרו אם ההתקן ינוטרל בדרך זו." + +msgid "Windows that should be opacified." +msgstr "חלונות שיש להפעיל עליהם איטום." + +msgid "" +"With this enabled, opacify will be on when you load Opacify, which is " +"usually when you start Compiz." +msgstr "משמש להפעלת התקן האיטום בעת טעינתו, המתרחשת לרוב בעת טעינת קומפיז." + +msgid "Animation speed" +msgstr "מהירות אנימציה" + +msgid "Animation timestep" +msgstr "יחידת זמן אנימציה" + +msgid "Avoid Offscreen" +msgstr "אל תצא מגבולות המסך" + +msgid "Avoids putting window borders offscreen" +msgstr "הגדרה זו מונעת הצבת גבולות חלונות מחוץ למסך" + +msgid "Move window arbitrarily by passing x, y and type." +msgstr "הזז חלונות באופן שרירותי על ידי העברת x, y, וסוג." + +msgid "Move window to a certain viewport" +msgstr "הזז חלון אל משטח עבודה מסוים" + +msgid "Move window to the bottom edge" +msgstr "הזז חלון אל קצה המסך התחתון" + +msgid "Move window to the bottom left corner" +msgstr "הזז חלון אל הפינה השמאלית התחתונה" + +msgid "Move window to the bottom right corner" +msgstr "הזז חלון אל הפינה הימנית התחתונה" + +msgid "Move window to the center" +msgstr "הזז חלון אל המרכז" + +msgid "Move window to the last position" +msgstr "הזז חלון אל המיקום האחרון" + +msgid "Move window to the left edge" +msgstr "הזז חלון אל קצה המסך השמאלי" + +msgid "Move window to the pointer position" +msgstr "הזז חלון אל מיקום הסמן" + +msgid "Move window to the right edge" +msgstr "הזז חלון אל קצה המסך הימני" + +msgid "Move window to the top edge" +msgstr "הזז חלון אל קצה המסך העליון" + +msgid "Move window to the top left corner" +msgstr "הזז חלון אל הפינה השמאלית העליונה" + +msgid "Move window to the top right corner" +msgstr "הזז חלון אל הפינה הימנית העליונה" + +msgid "Move window to the viewport on the bottom" +msgstr "הזז חלון אל משטח העבודה שמתחת" + +msgid "Move window to the viewport on the left" +msgstr "הזז חלון אל משטח העבודה שמשמאל" + +msgid "Move window to the viewport on the right" +msgstr "הזז חלון אל משטח העבודה שמימין" + +msgid "Move window to the viewport on the top" +msgstr "הזז חלון אל משטח העבודה שמלמעלה" + +msgid "Move window to viewport 1" +msgstr "הזז חלון אל משטח עבודה 1" + +msgid "Move window to viewport 10" +msgstr "הזז חלון אל משטח עבודה 10" + +msgid "Move window to viewport 11" +msgstr "הזז חלון אל משטח עבודה 11" + +msgid "Move window to viewport 12" +msgstr "הזז חלון אל משטח עבודה 12" + +msgid "Move window to viewport 2" +msgstr "הזז חלון אל משטח עבודה 2" + +msgid "Move window to viewport 3" +msgstr "הזז חלון אל משטח עבודה 3" + +msgid "Move window to viewport 4" +msgstr "הזז חלון אל משטח עבודה 4" + +msgid "Move window to viewport 5" +msgstr "הזז חלון אל משטח עבודה 5" + +msgid "Move window to viewport 6" +msgstr "הזז חלון אל משטח עבודה 6" + +msgid "Move window to viewport 7" +msgstr "הזז חלון אל משטח עבודה 7" + +msgid "Move window to viewport 8" +msgstr "הזז חלון אל משטח עבודה 8" + +msgid "Move window to viewport 9" +msgstr "הזז חלון אל משטח עבודה 9" + +msgid "" +"Number of pixels from the bottom edge where the window will come to rest" +msgstr "מספר הפיקסלים מקצה המסך התחתון שבהם יעצור החלון מתנועה" + +msgid "Number of pixels from the left edge where the window will come to rest" +msgstr "מספר הפיקסלים מקצה המסך השמאלי שבהם יעצור החלון מתנועה" + +msgid "Number of pixels from the right edge where the window will come to rest" +msgstr "מספר הפיקסלים מקצה המסך הימני שבהם יעצור החלון מתנועה" + +msgid "Number of pixels from the top edge where the window will come to rest" +msgstr "מספר הפיקסלים מקצה המסך העליון שבהם יעצור החלון מתנועה" + +msgid "Pad Bottom" +msgstr "ריפוד תחתון" + +msgid "Pad Left" +msgstr "ריפוד שמאלי" + +msgid "Pad Right" +msgstr "ריפוד ימני" + +msgid "Pad Top" +msgstr "ריפוד עליון" + +msgid "Padding" +msgstr "ריפוד" + +msgid "Put" +msgstr "הצבה" + +msgid "Put Bottom" +msgstr "הצב מטה" + +msgid "Put Bottom Left" +msgstr "הצב מטה משמאל" + +msgid "Put Bottom Right" +msgstr "הצב מטה מימין" + +msgid "Put Center" +msgstr "הצב במרכז" + +msgid "Put Left" +msgstr "הצב בשמאל" + +msgid "Put On Viewport" +msgstr "הצב במשטח עבודה" + +msgid "Put On Viewport 1" +msgstr "הצב במשטח עבודה 1" + +msgid "Put On Viewport 10" +msgstr "הצב במשטח עבודה 10" + +msgid "Put On Viewport 11" +msgstr "הצב במשטח עבודה 11" + +msgid "Put On Viewport 12" +msgstr "הצב במשטח עבודה 12" + +msgid "Put On Viewport 2" +msgstr "הצב במשטח עבודה 2" + +msgid "Put On Viewport 3" +msgstr "הצב במשטח עבודה 3" + +msgid "Put On Viewport 4" +msgstr "הצב במשטח עבודה 4" + +msgid "Put On Viewport 5" +msgstr "הצב במשטח עבודה 5" + +msgid "Put On Viewport 6" +msgstr "הצב במשטח עבודה 6" + +msgid "Put On Viewport 7" +msgstr "הצב במשטח עבודה 7" + +msgid "Put On Viewport 8" +msgstr "הצב במשטח עבודה 8" + +msgid "Put On Viewport 9" +msgstr "הצב במשטח עבודה 9" + +msgid "Put Pointer" +msgstr "הצב על סמן" + +msgid "Put Right" +msgstr "הצב בימין" + +msgid "Put Top" +msgstr "הצב מעלה" + +msgid "Put Top Left" +msgstr "הצב מעלה משמאל" + +msgid "Put Top Right" +msgstr "הצב מעלה מימין" + +msgid "Put pointer uses the center of the window" +msgstr "הצבה על הסמן מוגדרת על פי מרכז החלון" + +msgid "Put to adjacent viewport" +msgstr "הצב במשטח עבודה סמוך" + +msgid "Put to arbitrary viewport" +msgstr "הצב במשטח עבודה כלשהו" + +msgid "Put window" +msgstr "הצב חלון" + +msgid "Put within viewport" +msgstr "הצב בתוך משטח עבודה" + +msgid "Restore Position" +msgstr "שחזר מיקום" + +msgid "Unfocus Window" +msgstr "בטל את מיקוד החלון" + +msgid "Unfocus windows that are moved off the viewport" +msgstr "בטל את המיקוד על חלון שהוזז אל מחוץ למשטח העבודה" + +msgid "Viewport Bottom" +msgstr "משטח עבודה תחתון" + +msgid "Viewport Left" +msgstr "משטח עבודה שמאלי" + +msgid "Viewport Right" +msgstr "משטח עבודה ימני" + +msgid "Viewport Top" +msgstr "משטח עבודה עליון" + +msgid "Window Center" +msgstr "מרכז חלון" + +msgid "Alpha Dependence Threshold" +msgstr "סף תלות באלפא" + +msgid "Alpha dependence threshold." +msgstr "סף תלות באלפא." + +msgid "Draw Reflection for decorations." +msgstr "צייר השתקפות על מסגרות חלונות." + +msgid "Draw Reflection for windows." +msgstr "צייר השתקפות על חלונות." + +msgid "Draws reflections" +msgstr "ציור השתקפויות" + +msgid "Move the reflection on window move." +msgstr "הזז את ההשתקפות בעת הזזת חלון." + +msgid "Moving reflection" +msgstr "השתקפות נעה" + +msgid "Reflection Image" +msgstr "תמונה משתקפת" + +msgid "Reflection Image file" +msgstr "קבוץ תמונה משתקפת" + +msgid "Reflection Window Match" +msgstr "סוגי חלונות להשתקפות" + +msgid "Reflection for Decorations" +msgstr "השתקפות מסגרות" + +msgid "Reflection for Windows" +msgstr "השתקפות חלונות" + +msgid "Window match" +msgstr "סוגי חלונות" + +msgid "Color 1 of the gradient background." +msgstr "צבע 1 עבור הרקע המדורג." + +msgid "Color 2 of the gradient background." +msgstr "צבע 2 עבור הרקע המדורג." + +msgid "Color 3 of the gradient background." +msgstr "צבע 3 עבור הרקע המדורג." + +msgid "Color of text on resize popup." +msgstr "צבע הטקסט בחלונית שינוי הגודל." + +msgid "Display info on resize similar to metacity" +msgstr "הצג מידע אודות שינוי גודל בדומה ל-metacity" + +msgid "Fade time (in ms) for popup window" +msgstr "משך דהיית החלונית (במילישניות)" + +msgid "Gradient Color 1" +msgstr "צבע מדורג 1" + +msgid "Gradient Color 2" +msgstr "צבע מדורג 2" + +msgid "Gradient Color 3" +msgstr "צבע מדורג 3" + +msgid "Resize Info" +msgstr "פרטי שינוי גודל" + +msgid "" +"Show resize info for all windows as opposed to just windows with a resize " +"increment of greater than 1." +msgstr "" +"מציג מידע על שינוי הגודל של כל החלונות, ולא רק על זה של חלונות ששינוי הגודל " +"המצטבר שלהם גדול מ-1." + +msgid "Show resize info for all windows." +msgstr "הצג פרטי שינוי גודל עבור כל החלונות." + +msgid "Text color." +msgstr "צבע טקסט." + +msgid "Above ring" +msgstr "מעל הטבעת" + +msgid "Allow Mouse Selection" +msgstr "אפשר בחירה בעזרת העכבר" + +msgid "" +"Allow the selection of windows by just clicking on them while the switcher " +"is active." +msgstr "אפשר בחירה חלונות על ידי הקלקה עליהם בזמן שהמעביר פעיל" + +msgid "" +"Amount of opacity (in percent) for windows in the ring which are not selected" +msgstr "אחוז האטימות של החלונות בטבעת שלא נבחרו" + +msgid "Background Color" +msgstr "צבע רקע" + +msgid "Background color for the window title" +msgstr "צבע רקע כותרת החלון" + +msgid "Below ring" +msgstr "מתחת לטבעת" + +msgid "Big" +msgstr "גדול" + +msgid "Bold Font" +msgstr "גופן מודגש" + +msgid "Centered on screen" +msgstr "ממורכז על המסך" + +msgid "" +"Changes the minimum brightness factor for windows in the ring. The farer " +"away windows are, the less bright are they." +msgstr "" +"קובע את מקדם הבהירות המזערי עבור חלונות בטבעת. חלונות מרוחקים יותר יהיו כהים " +"יותר." + +msgid "" +"Changes the minimum scale factor for windows in the ring. The farer away " +"windows are, the smaller are they." +msgstr "" +"קובע את מקדם שינוי הגודל המזערי עבור חלונות בטבעת. חלונות מרוחקים יותר יהיו " +"קטנים יותר." + +msgid "Darken Background" +msgstr "הכהה רקע" + +msgid "Darken background when showing the ring" +msgstr "הכהה את הרקע בעת הצגת הטבעת" + +msgid "Emblem" +msgstr "סמל" + +msgid "Font color for the window title" +msgstr "צבע גופן כותרת החלון" + +msgid "Font size for the window title" +msgstr "גודל גופן כותרת החלון" + +msgid "Inactive Window Opacity" +msgstr "אטימות חלון לא פעיל" + +msgid "Maximum horizontal size of a thumbnail in the ring" +msgstr "גודל אופקי מירבי של תמונה ממוזערת בטבעת" + +msgid "Maximum vertical size of a thumbnail in the ring" +msgstr "גודל אנכי מירבי של תמונה ממוזערת בטבעת" + +msgid "Minimum Brightness Factor" +msgstr "מקדם בהירות מזערי" + +msgid "Minimum Scale Factor" +msgstr "מקדם שינוי גודל מזערי" + +msgid "Next Window" +msgstr "החלון הבא" + +msgid "Next Window (All Workspaces)" +msgstr "החלון הבא (כל משטחי העבודה)" + +msgid "Next Window (Group)" +msgstr "החלון הבא (קבוצה)" + +msgid "Overlay Icon" +msgstr "צלמית מודבקת" + +msgid "Overlay an icon on windows in the ring" +msgstr "הדבק צלמית על חלונות בטבעת" + +msgid "Previous Window" +msgstr "החלון הקודם" + +msgid "Previous Window (All Workspaces)" +msgstr "החלון הקודם (כל משטחי העבודה)" + +msgid "Previous Window (Group)" +msgstr "החלון הקודם (קבוצה)" + +msgid "Ring Height" +msgstr "גובה הטבעת" + +msgid "Ring Switcher" +msgstr "מעביר טבעת" + +msgid "Ring Width" +msgstr "רוחב הטבעת" + +msgid "Ring Windows" +msgstr "חלונות בטבעת" + +msgid "Ring appearance" +msgstr "מראה הטבעת" + +msgid "Ring height (in percent of the screen height)" +msgstr "גובה הטבעת (באחוזים מגובה המסך)" + +msgid "Ring speed" +msgstr "מהירות הטבעת" + +msgid "Ring timestep" +msgstr "יחידת זמן טבעת" + +msgid "Ring width (in percent of the screen width)" +msgstr "רוחב הטבעת (באחוזים מרוחב המסך)" + +msgid "Rotate Ring Clockwise on Next" +msgstr "בעת העברה לחלון הבא, סובב הטבעת בכיוון השעון" + +msgid "Rotate ring clockwise for next window instead of counterclockwise" +msgstr "בעת העברה לחלון הבא, סובב את הטבעת בכיוון השעון במקום נגדו" + +msgid "Selects if the window title should be displayed in bold font or not." +msgstr "קובע אם כותרת החלון תוצג בגופן מודגש אם לאו." + +msgid "Selects where to place the window title." +msgstr "קובע את מיקום כותרת החלון." + +msgid "Show Minimized" +msgstr "הצג ממוזערים" + +msgid "Show Window Title" +msgstr "הצג כותרת חלון" + +msgid "" +"Show switcher if not visible and select next window of the current " +"application." +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הבא של היישום הנוכחי." + +msgid "Show switcher if not visible and select next window out of all windows." +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הבא מבין כל החלונות." + +msgid "Show switcher if not visible and select next window." +msgstr "הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הבא." + +msgid "" +"Show switcher if not visible and select previous window of the current " +"application." +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הקודם של היישום הנוכחי." + +msgid "" +"Show switcher if not visible and select previous window out of all windows." +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הקודם מבין כל החלונות." + +msgid "Show switcher if not visible and select previous window." +msgstr "הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הקודם." + +msgid "Show window title of currently selected window." +msgstr "הצג את כותרת החלון הנבחר." + +msgid "Show windows that are minimized, shaded or in show desktop mode." +msgstr "הצג חלונות ממוזערים, גלולים או מוסתרים על ידי מצב 'הצג שולחן עבודה'." + +msgid "Text Placement" +msgstr "מיקום טקסט" + +msgid "Thumbnail Height" +msgstr "גובה תמונה מוקטנת" + +msgid "Thumbnail Width" +msgstr "רוחב תמונה מוקטנת" + +msgid "Window title display" +msgstr "הצגת כותרת חלון" + +msgid "Windows that should be shown in ring" +msgstr "חלונות שיש להציג בטבעת" + +msgid "All windows" +msgstr "כל החלונות" + +msgid "Background color of the window title" +msgstr "צבע רקע כותרת החלון" + +msgid "Close Window" +msgstr "סגור חלון" + +msgid "Close window while in scale mode" +msgstr "סגור חלון במצב מבט על" + +msgid "Close windows while in scale mode" +msgstr "סגור חלונות במצב מבט על" + +msgid "Color used for highlighting the hovered window" +msgstr "צבע להדגשת חלון בעת מעבר עכבר" + +msgid "Constrain Pull To Screen" +msgstr "הגבל משיכה למסך" + +msgid "Draw Window Highlight" +msgstr "צייר הדגשת חלון" + +msgid "Exit Scale On Pull" +msgstr "צא ממבט על בעת משיכה" + +msgid "Exit scale mode after a window has been pulled." +msgstr "צא ממצב מבט על לאחר משיכת חלון." + +msgid "Font color of the window title" +msgstr "צבע גופן כותרת חלון" + +msgid "Font size for window title display" +msgstr "גודל גופן להצגת כותרת חלון" + +msgid "Highlight Color" +msgstr "צבע הדגשה" + +msgid "Highlighted window only" +msgstr "החלון המודגש בלבד" + +msgid "Highlights the hovered window with the given color" +msgstr "מדגיש את החלון בעזרת הצבע הנתון בעת מעבר עכבר" + +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "וודא שניתן לראות את החלונות במלואם לאחר משיכתם אל משטח עבודה אחר" + +msgid "No display" +msgstr "אל תציג" + +msgid "Normal" +msgstr "רגיל" + +msgid "Organic - EXPERIMENTAL" +msgstr "אורגני (נסיוני)" + +msgid "Pull Window" +msgstr "משוך חלון" + +msgid "Pull window to current viewport while in scale mode" +msgstr "משוך חלון אל משטח העבודה הנוכחי במצב מבט על" + +msgid "Scale Addons" +msgstr "תוספות למבט על" + +msgid "Selects the mode to layout the windows in scale mode" +msgstr "מצב סידור החלונות בעת מבט על" + +msgid "Size of the border around the window title" +msgstr "גודל הגבול סביב כותרת החלון" + +msgid "Some useful additions to the scale plugin" +msgstr "מספר תוספות שימושיות להתקן מבט על" + +msgid "Title Border Size" +msgstr "גודל גבול כותרת" + +msgid "Use bold font for window title display" +msgstr "השתמש בגופן מודגש להצגת כותרת החלון" + +msgid "Window Highlight" +msgstr "הדגשת חלון" + +msgid "Window Layout Mode" +msgstr "מצב סידור חלונות" + +msgid "Window Pull" +msgstr "משיכת חלון" + +msgid "Window Title" +msgstr "כותרת חלון" + +msgid "Window Title Display" +msgstr "הצגת כותרת חלון" + +msgid "Window title display in scale mode" +msgstr "הצגת כותרת חלון במצב מבט על" + +msgid "Zoom Window" +msgstr "תקריב על חלון" + +msgid "Zoom window while in scale mode" +msgstr "תקריב על חלון במצב מבט על" + +msgid "Filter Case Insensitive" +msgstr "סינון ללא התחשבות באותיות רישיות" + +msgid "Filter Type Timeout" +msgstr "חלון זמן להקלדת מסנן" + +msgid "Scale Window Title Filter" +msgstr "מסנן כותרות במבט על" + +msgid "Show Filter Text" +msgstr "הצג טקסט סינון" + +msgid "Show filter text." +msgstr "הצג טקסט סינון." + +msgid "Time (in ms) after which the filter typing is automatically ended" +msgstr "זמן (במילישניות) לסיום אוטומטי של הקלדת המסנן" + +msgid "Use case insensitive string matching when filtering." +msgstr "בעת סינון השתמש בהתאמת מחרוזות ללא התחשבות באותיות רישיות." + +msgid "Window title filter facility for the scale plugin" +msgstr "התקן סינון כותרות חלון עבור התקן מבט על" + +msgid "" +"Embeds a Guile scheme interpreter and provides bindings for meaningful " +"Compiz integration." +msgstr "" +"משלב מפרש ל-Guile scheme, ומספק צימוד המאפשר אינטגרציה משמעותית עם קומפיז. " + +msgid "Scheme Interpreter" +msgstr "מפרש Scheme" + +msgid "Toggle Prompt Visible" +msgstr "אפשר\\נטרל הצגת שורת קלט" + +msgid "Toggle prompt visible." +msgstr "אפשר\\נטרל הצגת שורת קלט." + +msgid "Directory" +msgstr "תיקיה" + +msgid "Initiate screencasting" +msgstr "הפעל שידור מסך" + +msgid "Put screenshot images in this directory" +msgstr "שמור את צילומי המסך בתיקיה זו" + +msgid "ScreenCast plugin" +msgstr "התקן שידור מסך" + +msgid "ScreenCasting" +msgstr "שידור מסך" + +msgid "" +"Also try to save and restore legacy apps that don't support the X session " +"management protocol. This setting only should be used in KDE, as only KDE's " +"session manager also saves those applications." +msgstr "" +"נסה לשמור ולשחזר גם יישומים מיושנים שאינם תומכים בפרוטוקול ניהול ההפעלות של " +"X. יש להשתמש בהגדרה זו רק תחת KDE, משום שרק מנהל ההפעלות של KDE שומר גם את " +"היישומים האלה." + +msgid "Save Legacy Apps" +msgstr "שמור יישומים מיושנים" + +msgid "Session Management" +msgstr "ניהול הפעלות" + +msgid "Talk to session manager and save/load window state" +msgstr "דבר עם מנהל ההפעלות ושמור\\טען את מצב החלון" + +msgid "Animation duration" +msgstr "משך אנימציה" + +msgid "Duration of the animation in milliseconds." +msgstr "משך האנימציה במילשניות." + +msgid "Increase the scale factor making the window bigger." +msgstr "הגדל את מקדם גודל החלון." + +msgid "Make the window bigger" +msgstr "הגדל את החלון" + +msgid "Make the window smaller" +msgstr "הקטן את החלון" + +msgid "Reduces the scale factor making the window smaller." +msgstr "הקטן את מקדם גודל החלון." + +msgid "Reset the window to original size" +msgstr "שחזר את גודל החלון המקורי" + +msgid "Resets the currently focused window to original size" +msgstr "משחזר את החלון הפעיל לגודלו המקורי" + +msgid "Scale a window down to a portion of it's size." +msgstr "הפחת את גודל החלון לכדי חלק מגודלו הקודם." + +msgid "" +"Scale a window down to a ration of the screen size. Respectively half, a " +"third or a sixth of the screen." +msgstr "" +"הפחת את גודל החלון לכדי חלק מגודל המסך: מחצית, שליש או שישית המסך בהתאמה." + +msgid "Scale interval" +msgstr "מרווח זמן לשינוי גודל" + +msgid "Shelf" +msgstr "מדף" + +msgid "" +"The number to divide the scale factor by or multiply it with when " +"(respectively) increasing and decreasing the scale level manually. Higher " +"number means finer changes." +msgstr "" +"המספר שבו יוכפל או יחולק מקדם שינוי הגודל, בהתאמה, כאשר מגדילים או מקטינים " +"את הגודל באופן ידני. מספר גבוה יותר יביא לשינויים קטנים יותר." + +msgid "Trigger scale down" +msgstr "הקטן גודל" + +msgid "Trigger scale down to screen" +msgstr "הקטן גודל על פי המסך" + +msgid "" +"Visually scales a window down to allow easy monitoring without true/" +"traditional resizing." +msgstr "" +"מקטין את החלון למראית עין על מנת לאפשר ניטור קל ללא שינוי גודל אמיתי\\מסורתי." + +msgid "Background intensity" +msgstr "עוצמת רקע" + +msgid "Background intensity." +msgstr "עוצמת רקע." + +msgid "Below" +msgstr "מתחת" + +msgid "Click duration" +msgstr "משך הקלקה" + +msgid "Cover" +msgstr "הגשה" + +msgid "Cover movement offset." +msgstr "הסטת תנועת הגשה." + +msgid "Cover offset" +msgstr "הסטת הגשה" + +msgid "Disabled" +msgstr "מנוטרל" + +msgid "Fade in/out speed" +msgstr "מהירות דהייה" + +msgid "Fade speed" +msgstr "מהירות דהייה" + +msgid "Flip" +msgstr "טריפה" + +msgid "Flip angle" +msgstr "זווית טריפה" + +msgid "Generate mipmaps" +msgstr "ייצר mipmap" + +msgid "Hide all non Desktop windows during switching" +msgstr "הסתר בעת העברה את כל החלונות, פרט לשולחן העבודה" + +msgid "Hide non Desktop windows" +msgstr "הסתר חלונות שאינם שולחן העבודה" + +msgid "Initiate (All Workspaces)" +msgstr "הפעל (בכל משטחי העבודה)" + +msgid "Initiate switcher (All Workspaces)." +msgstr "הפעל מעביר (בכל משטחי העבודה)" + +msgid "Initiate switcher." +msgstr "הפעל מעביר." + +msgid "Max window size" +msgstr "גודל חלון מירבי" + +msgid "Maximum click duration in miliseconds." +msgstr "משך הקלקה מירבי במילישניות." + +msgid "Maximum window size (in percent of the screen width)" +msgstr "גודל חלון מירבי (באחוזים מגודל המסך)" + +msgid "Mouse movement speed" +msgstr "מהירות תזוזת עכבר" + +msgid "Mouse speed" +msgstr "מהירות עכבר" + +msgid "On activated output" +msgstr "פלט בזמן הפעלה" + +msgid "One big switcher" +msgstr "מעביר גדול יחיד" + +msgid "Overlay an icon on windows in the shift switcher" +msgstr "הדבק צלמית על החלון במעביר ההזחה" + +msgid "Rotation angle of the flip animation" +msgstr "זווית סיבוב באנימצית טריפה" + +msgid "" +"Selects how the switcher is displayed if multiple output devices are used." +msgstr "קובע כיצד יוצג המעביר בעת שימוש ביותר מהתקן פלט אחד." + +msgid "Shift Switcher" +msgstr "מעביר הזחה" + +msgid "Shift Switcher Plugin" +msgstr "התקן מעביר הזחה" + +msgid "Shift Windows" +msgstr "חלונות להזחה" + +msgid "Shift animation speed" +msgstr "מהירות אנימצית הזחה" + +msgid "Shift speed" +msgstr "מהירות הזחה" + +msgid "Shift timestep" +msgstr "יחידת זמן הזחה" + +msgid "Switcher mode" +msgstr "אופן הזחה" + +msgid "Switcher mode." +msgstr "אופן הזחה." + +msgid "Terminate" +msgstr "הפסק" + +msgid "Terminate switcher." +msgstr "הפסק את פעולת המעביר." + +msgid "Windows that should be shown in the shift switcher" +msgstr "חלונות שיוצגו במעביר ההזחה" + +msgid "Access your desktop easily" +msgstr "נגישות קלה לשולחן העבודה" + +msgid "Direction of window movement" +msgstr "כיוון תזוזת החלונות" + +msgid "Down" +msgstr "למטה" + +msgid "Left" +msgstr "שמאלה" + +msgid "Left/Right" +msgstr "שמאלה\\ימינה" + +msgid "Movement Direction" +msgstr "כיוון התזוזה" + +msgid "Right" +msgstr "ימינה" + +msgid "Show desktop" +msgstr "הצג שולחן עבודה" + +msgid "To Corners" +msgstr "אל הפינות" + +msgid "Up" +msgstr "למעלה" + +msgid "Up/Down" +msgstr "למעלה\\למטה" + +msgid "Window Opacity" +msgstr "אטימות החלונות" + +msgid "Window Part Size" +msgstr "גודל חלק חלון" + +msgid "Window movement speed" +msgstr "מהירות תזוזת החלון" + +msgid "Window movement timestep" +msgstr "יחידת זמן לתזוזת החלון" + +msgid "Window opacity when showdesktop'd" +msgstr "אטימות החלון בעת הצגת שולחן העבודה" + +msgid "Window part size when showdesktop'd" +msgstr "גודל חלק חלון בעת הצגת שולחן העבודה" + +msgid "" +"Window types that should be moved out of sight when entering showdesktop mode" +msgstr "סוגי חלונות שיש להזיזם הצידה בעת כניסה למצב הצגת שולחן עבודה" + +msgid "Additive blending" +msgstr "התמזגות מוספת" + +msgid "Additive blending of particles" +msgstr "התמזגות חלקיקים מוספת" + +msgid "Darken backgound" +msgstr "הכהה רקע" + +msgid "Darken background under particles" +msgstr "הכהה את הרקע מתחת לחלקיקים" + +msgid "Emiters" +msgstr "משגרים" + +msgid "Have random colors for the particles" +msgstr "צבע חלקיקים אקראי" + +msgid "Increases the visibility of the mouse pointer" +msgstr "משפר את נראות סמן העכבר" + +msgid "Number Of Particles" +msgstr "מספר חלקיקים" + +msgid "Number of particle emiters." +msgstr "מספר משגרי חלקיקים." + +msgid "Number of particles." +msgstr "מספר החלקיקים." + +msgid "Particle Color" +msgstr "צבע החלקיקים" + +msgid "Particle Life" +msgstr "אורך חיי חלקיקים" + +msgid "Particle Options" +msgstr "אפשרויות חלקיקים" + +msgid "Particle Size" +msgstr "גודל חלקיקים" + +msgid "Particle Slowdown" +msgstr "האטת חלקיקים" + +msgid "Particle color." +msgstr "צבע חלקיקים." + +msgid "Particle life." +msgstr "אורך חיי חלקיקים." + +msgid "Particle size." +msgstr "גודל חלקיקים." + +msgid "Particle slowdown." +msgstr "האטת חלקיקים." + +msgid "Randomly Colored Particles" +msgstr "חלקיקים בצבע אקראי" + +msgid "Ring radius" +msgstr "קוטר טבעת" + +msgid "Rotation speed" +msgstr "מהירות סיבוב" + +msgid "Rotation speed." +msgstr "מהירות סיבוב." + +msgid "Show mouse" +msgstr "הצג עכבר" + +msgid "Toggle the mouse pointer trail." +msgstr "הפעל\\נטרל את שובל סמן העכבר." + +msgid "Alt" +msgstr "Alt" + +msgid "Avoid Snap Modifier" +msgstr "צירוף לעצירת מיגנוט" + +msgid "Choose 'Resistance', 'Attraction' or 'Full Mode'." +msgstr "יש לבחור בין 'דחייה', 'משיכה' ו-'מצב מלא'." + +msgid "Control" +msgstr "Control" + +msgid "Edge Attraction Distance" +msgstr "מרחק למשיכה אל הגבול" + +msgid "Edge Resistance Distance" +msgstr "מרחק לדחייה מן הגבול" + +msgid "Edge attraction" +msgstr "משיכת גבול" + +msgid "Edge resistance" +msgstr "דחיית גבול" + +msgid "Edges" +msgstr "גבולות" + +msgid "Enables windows edges resistance" +msgstr "מאפשר דחיית חלונות מגבולות" + +msgid "Meta" +msgstr "Meta" + +msgid "Screen edges" +msgstr "גבולות המסך" + +msgid "Shift" +msgstr "Shift" + +msgid "Snap Type" +msgstr "אופן מיגנוט" + +msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." +msgstr "התמגנט אל 'גבולות המסך', 'גבולות חלונות' או 'שניהם'." + +msgid "Snapping Windows" +msgstr "חלונות מגנטיים" + +msgid "The distance until edge attraction takes place." +msgstr "המרחק מן הגבול שבו מופעלת משיכה." + +msgid "The distance until edge resistance takes place." +msgstr "המרחק מן הגבול שבו מופעלת דחייה." + +msgid "Use this bindings to avoid snapping." +msgstr "השתמש בצירוף זה כדי לעצור את המיגנוט." + +msgid "Window edges" +msgstr "גבולות חלונות" + +msgid "Bottom to Top" +msgstr "מלמטה למעלה" + +msgid "" +"Delay (in ms) between screen updates. Decreasing this value may make snow " +"fall more smoothly, but will also increase CPU usage." +msgstr "" +"משך זמן (במילישניות) בין עדכוני מסך. הפחתת ערך זה תוכל להביא לירידת שלג חלקה " +"יותר, אך תגביר את העומס על המעבד." + +msgid "Enable Blending" +msgstr "אפשר מיזוג" + +msgid "Enable Textures" +msgstr "אפשר טקסטורות" + +msgid "Enables alpha blending of snowflakes." +msgstr "אפשר מיזוג אלפא של פתיתי שלג." + +msgid "Enables textured snowflakes. If not selected, color gradients are used." +msgstr "" +"אפשר טקסטורות עבור פתיתי שלג. אם האפשרות לא נבחרה, ייעשה שימוש בצבע מדורג." + +msgid "Flakes rotate if checked." +msgstr "אם האפשרות נבחרה, הפתיתים יסתחררו." + +msgid "How deep into the screen snowflakes can be drawn before being removed" +msgstr "עד לאיזה עומק בתוך המסך יש לצייר את פתיתי השלג טרם הסרתם." + +msgid "" +"How far outside the screen resolution snow flakes can be before being " +"removed. Needed because of FOV." +msgstr "" +"עד לאיזה מרחק מחוץ לאבחנת המסך יש לצייר את פתית השלג טרם הסרתם. נחוץ מטעמי " +"שדה ראייה." + +msgid "Key Bindings" +msgstr "צירופי מקשים" + +msgid "Left to Right" +msgstr "משמאל לימין" + +msgid "Number Of Snowflakes" +msgstr "מספר פתיתי השלג" + +msgid "Number of snowflakes" +msgstr "מספר פתיתי השלג" + +msgid "Right to Left" +msgstr "מימין לשמאל" + +msgid "Rotate Flakes" +msgstr "סחרר פתיתים" + +msgid "Screen Boxing" +msgstr "קופסת המסך" + +msgid "Screen Depth" +msgstr "עומק המסך" + +msgid "Select snow flake movement direction" +msgstr "בחר את כיוון תנועת פתיתי השלג" + +msgid "Settings" +msgstr "הגדרות" + +msgid "Size Of Snowflakes" +msgstr "גודל פתיתי השלג" + +msgid "Size of snowflakes" +msgstr "גודל פתיתי השלג" + +msgid "Snow" +msgstr "שלג" + +msgid "Snow Direction" +msgstr "כיוון השלג" + +msgid "Snow Over Windows" +msgstr "שלג מעל החלונות" + +msgid "Snow Speed" +msgstr "מהירות השלג" + +msgid "Snow Textures" +msgstr "טקסטורות שלג" + +msgid "Snow Toggle" +msgstr "הפעל\\נטרל שלג" + +msgid "Snow for Compiz" +msgstr "שלג עבור קומפיז" + +msgid "Snow is drawn above windows" +msgstr "השלג מצטייר מעל לחלונות" + +msgid "Snow textures" +msgstr "טקסטורות שלג" + +msgid "Snow toggle key" +msgstr "מקש להפעלת\\ניטרול שלג" + +msgid "Speed of falling snow" +msgstr "מהירות צניחת השלג" + +msgid "Textures" +msgstr "טקסטורות" + +msgid "Top to Bottom" +msgstr "מלמעלה למטה" + +msgid "Update Delay" +msgstr "השהייה לפני עדכון" + +msgid "A simple splash plugin" +msgstr "התקן פשוט של מסך פתיחה" + +msgid "Background File" +msgstr "קובץ רקע" + +msgid "Background brightness." +msgstr "בהירות הרקע." + +msgid "Background image File." +msgstr "קובץ תמונת רקע." + +msgid "Background saturation." +msgstr "רווית הרקע." + +msgid "Display In/Out Time." +msgstr "משך הצגה ומחיקה." + +msgid "Display Time" +msgstr "משך הצגה" + +msgid "Images" +msgstr "תמונות" + +msgid "Initiate Splash" +msgstr "הפעל מסך פתיחה" + +msgid "Logo File" +msgstr "קובץ לוגו" + +msgid "Logo image File." +msgstr "קובץ תמונת לוגו." + +msgid "Show on first start" +msgstr "הראה בתחילת הפעלה" + +msgid "Show splash on first start." +msgstr "הראה את מסך הפתיחה בתחילת ההפעלה." + +msgid "Splash" +msgstr "מסך פתיחה" + +msgid "Start Splash." +msgstr "מסך פתיחה התחלי." + +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "אחוז האטימות של החלונות במעביר שלא נבחרו" + +msgid "Behavior" +msgstr "התנהגות" + +msgid "Darken background when showing the stack" +msgstr "הכהה את הרקע בעת הצגת השולחן" + +msgid "On Thumbnail" +msgstr "בתמונה מוקטנת" + +msgid "Rotate inactive windows" +msgstr "סובב חלונות לא פעילים" + +msgid "Should not selected windows be rotated" +msgstr "האם יש לסובב חלונות שלא נבחרו" + +msgid "Stack Window Switcher" +msgstr "מעביר שולחן" + +msgid "Tilt angle of the background." +msgstr "זווית נטייה של הרקע." + +msgid "Windows" +msgstr "חלונות" + +msgid "Windows that should be shown in the switcher" +msgstr "חלונות שיוצגו במעביר" + +msgid "Alignment for rows that are not fully filled" +msgstr "יישור השורות שאינן מלאות לגמרי" + +msgid "Amount of brightness in percent" +msgstr "אחוז בהירות" + +msgid "Amount of opacity in percent" +msgstr "אחוז אטימות" + +msgid "Amount of saturation in percent" +msgstr "אחוז רוויה" + +msgid "Auto Change Viewport" +msgstr "שנה משטח עבודה אוטומטית" + +msgid "Bring Selected To Front" +msgstr "הבא את העצם הנבחר לחזית" + +msgid "Centered" +msgstr "ממורכז" + +msgid "Change to the viewport of the selected window while switching" +msgstr "שנה את משטח העבודה של החלון הנבחר בעת העברה" + +msgid "Color of highlight rectangle" +msgstr "צבע מלבן ההדגשה" + +msgid "Color of highlight rectangle border" +msgstr "צבע גבול מלבן ההדגשה" + +msgid "Color of inlay in highlight rectangle border" +msgstr "צבע מילוי גבול מלבן ההדגשה" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "ייצר mipmap במידת האפשר על מנת לשפר את איכות שינוי הגודל" + +msgid "Highlight Border Color" +msgstr "צבע גבול ההדגשה" + +msgid "Highlight Border Inlay Color" +msgstr "צבע מילוי גבול ההדגשה" + +msgid "Highlight Mode" +msgstr "מצב הדגשה" + +msgid "Icon" +msgstr "צלמית" + +msgid "Minimized Window Highlight Rectangle" +msgstr "מלבן הדגשה של חלון ממוזער" + +msgid "Mipmap" +msgstr "Mipmap" + +msgid "Mode for highlighting the currently selected window" +msgstr "מצב הדגשת החלון הנבחר" + +msgid "Next Panel" +msgstr "הפאנל הבא" + +msgid "Next window" +msgstr "החלון הבא" + +msgid "Next window (All windows)" +msgstr "החלון הבא (כל החלונות)" + +msgid "Next window (Group)" +msgstr "החלון הבא (קבוצה)" + +msgid "Next window (No popup)" +msgstr "החלון הבא (ללא חלונות קופצים)" + +msgid "Original Window Position" +msgstr "מיקום חלון מקורי" + +msgid "Popup Window Delay" +msgstr "השהיית חלון קופץ" + +msgid "Popup switcher if not visible and select next window" +msgstr "הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הבא" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הבא של היישום הנוכחי." + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הבא מבין כל החלונות." + +msgid "Popup switcher if not visible and select previous window" +msgstr "הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הקודם" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הקודם של היישום הנוכחי." + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"הצג את המעביר, אם הוא אינו מוצג כבר, ובחר את החלון הקודם מבין כל החלונות" + +msgid "Prev Panel" +msgstr "הפאנל הקודם" + +msgid "Prev window" +msgstr "החלון הקודם" + +msgid "Prev window (All windows)" +msgstr "החלון הקודם (כל החלונות)" + +msgid "Prev window (Group)" +msgstr "החלון הקודם (קבוצה)" + +msgid "Prev window (No popup)" +msgstr "החלון הקודם (ללא חלון קופץ)" + +msgid "Row Alignment" +msgstr "יישור שורה" + +msgid "Select next panel type window." +msgstr "בוחר את חלון הפאנל הבא." + +msgid "Select next window without showing the popup window." +msgstr "בוחר את החלון הבא בלי להציג את החלון הקופץ." + +msgid "Select previous panel type window." +msgstr "בוחר את חלון הפענל הקודם." + +msgid "Select previous window without showing the popup window." +msgstr "בוחר את החלון הקודם בלי להציג את החלון הקופץ." + +msgid "Selected Window Highlight" +msgstr "הדגשת חלון נבחר" + +msgid "Show Rectangle" +msgstr "הצג מלבן" + +msgid "Show icon next to thumbnail" +msgstr "הצג צלמית לצד התמונה המוקטנת" + +msgid "Show minimized windows" +msgstr "הצג חלונות ממוזערים" + +msgid "Static Application Switcher" +msgstr "מעביר חלונות סטטי" + +msgid "Switcher speed" +msgstr "מהירות המעביר" + +msgid "Switcher timestep" +msgstr "יחידת זמן עבור המעביר" + +msgid "Switcher windows" +msgstr "חלונות המעביר" + +msgid "Taskbar Entry" +msgstr "ערך בשורת המשימות" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "משך המתנת החלון הקופץ בשניות לפני הופעתו" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "היכן לצייר את מלבן ההדגשה עבור חלונות ממוזערים" + +msgid "Windows that should be shown in switcher" +msgstr "חלונות שיוצגו במעביר" + +msgid "Render text to texture" +msgstr "הפוך טקסט לטקסטורה" + +msgid "Text" +msgstr "טקסט" + +msgid "Enable Titles" +msgstr "אפשר כותרות" + +msgid "Fade In/Out Duration" +msgstr "משך דהייה" + +msgid "Fade In/Out Duration in seconds." +msgstr "משך הדהייה בשניות." + +msgid "Generate Mipmaps" +msgstr "ייצר mipmap" + +msgid "Generate mipmaps when possible for higher quality scaling." +msgstr "ייצר mipmap במידת האפשר על מנת לשפר את איכות שינוי הגודל." + +msgid "Paint Thumbnails Always on Top." +msgstr "צייר תמיד את התמונות המוקטנות בחזית." + +msgid "Paint Window Like Background" +msgstr "צייר רקע דמוי חלון" + +msgid "Paint Window Like Background instead of Glow." +msgstr "צייר רקע דמוי חלון במקום הילה." + +msgid "Set it if the Taskbar shows only Windows of Current Viewport." +msgstr "הפעל אם שורת המשימות מראה רק חלונות ממשטח העבודה הנוכחי." + +msgid "Should be the window title Bold." +msgstr "פונט מודגש עבור כותרת החלון." + +msgid "Show Delay" +msgstr "השהייה טרם הצגה" + +msgid "Show Window Title in Thumbnail." +msgstr "הצג את כותרת החלון בתמונה המוקטנת." + +msgid "Size of Thumbnail Border." +msgstr "גודל גבול התמונה המוקטנת." + +msgid "Taskbar" +msgstr "שורת המשימות" + +msgid "Taskbar Shows Only Windows of Current Viewport" +msgstr "שורת המשימות מציגה רק חלונות ממשטח העבודה הנוכחי" + +msgid "Thumbnail Background and Border Glow Color." +msgstr "צבע רקע והילת גבול עבור התמונה המוקטנת." + +msgid "Thumbnail Border Glow Color" +msgstr "צבע הילת גבול התמונה המוקטנת" + +msgid "Thumbnail Border Size" +msgstr "גודל גבול התמונה המוקטנת" + +msgid "Thumbnail Window Size" +msgstr "גודל חלון התמונה המוקטנת" + +msgid "Thumbnail window size." +msgstr "גודל חלון התמונה המוקטנת." + +msgid "Thumbnails Always on Top" +msgstr "תמונות מוקטנות תמיד בחזית" + +msgid "Time (in ms) before Thumbnail is shown." +msgstr "זמן (במילישניות) לפני הצגת תמונה מוקטנת." + +msgid "Window Previews" +msgstr "תצוגת חלונות מקדימה" + +msgid "Window thumbnails at the taskbar" +msgstr "תמונות מוקטנות של החלונות בשורת המשימות" + +msgid "Window title" +msgstr "כותרת החלון" + +msgid "Window title Font Color." +msgstr "צבע גופן כותרת החלון." + +msgid "Window title Font Size." +msgstr "גודל גופן כותרת החלון." + +msgid "Animation Duration" +msgstr "משך האנימציה" + +msgid "Cascade" +msgstr "דירוג" + +msgid "Cascade Delta" +msgstr "דלתת דירוג" + +msgid "Cascade Windows" +msgstr "דרג חלונות" + +msgid "Choose the tiling type you want when using toggle." +msgstr "נא לבחור את סוג ריצוף החלונות שיופעל." + +msgid "Distance between windows when using cascade" +msgstr "מרחק בין חלונות בעת דירוג" + +msgid "Drop From Top" +msgstr "הורד מלמעלה" + +msgid "Duration (in ms) of the tiling animation" +msgstr "משך אנימצית הריצוף במילישניות" + +msgid "Excluded Windows" +msgstr "מלבד חלונות אלה" + +msgid "Filled Outline" +msgstr "קו מתאר ממולא" + +msgid "Join Windows (EXPERIMENTAL)" +msgstr "צרף חלונות (נסיוני)" + +msgid "Left Occupancy" +msgstr "תפיסת שטח משמאל" + +msgid "" +"Move and resize all visible windows both vertically and horizontally, so " +"that the occupy whole screen and are in a grid." +msgstr "" +"הזז את כל החלונות הנראים ושנה את גודלם, במאונך ובמאוזן, כך שיתפסו את כל המסך " +"ויסתדרו במשבצות." + +msgid "" +"Move and resize all visible windows so that they have full height, same " +"width and occupy whole screen." +msgstr "" +"הזז את כל החלונות הנראים ושנה את גודלם, במאונך ובמאוזן, כך שיתפסו את כל המסך." + +msgid "" +"Move and resize all visible windows so that they have full width, same " +"height and occupy whole screen." +msgstr "" +"הזז את כל החלונות הנראים והרחב אותם למקסימום מבלי לשנות את גובהם, כך שיתפסו " +"את כל המסך." + +msgid "" +"Move and resize all visible windows with the delta value set for cascading." +msgstr "" +"הזז את כל החלונות הנראים ושנה את גודלם על פי ערך הדלתא שנקבע עבור דירוג." + +msgid "" +"Occupancy percentage for window placed left. This number is percentage of " +"screen width, which the active window will have it as width when tiled. " +"Applies to Left tiling type." +msgstr "" +"אחוז תפיסת השטח עבור חלונות הממוקמים משמאל. מספר זה מייצג את רוחב החלון " +"הפעיל בעת ריצופו באחוזים מרוחב המסך. מתייחס לאופן ריצוף שמאלי. " + +msgid "Restore Windows" +msgstr "שחזר חלונות" + +msgid "Restore windows to their original position they had before tiling." +msgstr "שחזר את החלונות למקומם המקורי לפני הריצוף." + +msgid "Selects the animation used while tiling" +msgstr "האנימציה שתוצג בעת ריצוף" + +msgid "Slide" +msgstr "גלישה" + +msgid "Tile" +msgstr "ריצוף" + +msgid "Tile Horizontally" +msgstr "ריצוף במאוזן" + +msgid "Tile Vertically" +msgstr "ריצוף במאונך" + +msgid "Tile Windows" +msgstr "ריצוף חלונות" + +msgid "Tile Windows Horizontally" +msgstr "ריצוף חלונות במאוזן" + +msgid "Tile Windows Vertically" +msgstr "ריצוף חלונות במאונך" + +msgid "Tile windows" +msgstr "ריצוף חלונות" + +msgid "Tiling Animation Type" +msgstr "סוג אנימצית ריצוף" + +msgid "Tiling Method For Toggle" +msgstr "אופן הפעלת ריצוף" + +msgid "Toggle Tiling" +msgstr "הפעל\\נטרל ריצוף" + +msgid "Toggle between tile and restore" +msgstr "העבר בין ריצוף ושחזור" + +msgid "" +"Tries to join the windows together when horizontal, vertical or left tiling " +"is enabled so that when you resize a window surrounding windows resize " +"accordingly. This may cause problems if you dont leave them enough space." +msgstr "" +"נסה לצרף חלונות יחדיו כאשר מוגדר ריצוף שמאלי, במאוזן או במאונך, כך שבעת " +"שינוי גודל חלון ישתנה בהתאם גודל החלונות המקיפים אותו. הדבר עלול לגרום " +"לבעיות אם לא נותר מספיק שטח." + +msgid "Windows which should be excluded from tiling" +msgstr "חלונות שאין לרצפם" + +msgid "" +"Adjust the opacity, saturation and brightness of windows based on when they " +"last had focus." +msgstr "" +"התאם את אטימות, רווית ובהירות חלונות בהתאם למועד האחרון שבו היו פעילים." + +msgid "Brightness Level of Focused Windows" +msgstr "בהירות חלון פעיל" + +msgid "Brightness Level of Unfocused Windows" +msgstr "בהירות חלון לא פעיל" + +msgid "" +"Brightness of the currently focused window. Windows will get brightness " +"levels between the focused and minimum." +msgstr "" +"בהירות החלון הפעיל הנוכחי. החלונות יקבלו ערכי בהירות שבין ערך זה ובין " +"המינימום." + +msgid "" +"Brightness of the least focused window. Windows will get brightness levels " +"between the focused and minimum." +msgstr "" +"בהירות החלון הכי פחות פעיל. החלונות יקבלו ערכי בהירות שבין ערך החלון הפעיל " +"ובין המינימום." + +msgid "Number of Windows to Track" +msgstr "מספר חלונות למעקב" + +msgid "" +"Number of windows Trailfocus will keep track of. Windows that had focus this " +"amount of windows ago or more will be considered completly unfocused." +msgstr "" +"מספר החלונות שאחריהם ינסה לעקוב התקן מעקב פעילות. החלונות שהיו פעילים לפני " +"מספר זה או של חלונות או גבוה ממנו ייחשבו לבלתי-פעילים לחלוטין." + +msgid "Opacity Level of Focused Windows" +msgstr "אטימות חלון פעיל" + +msgid "Opacity Level of Unfocused Windows" +msgstr "אטימות חלון לא פעיל" + +msgid "" +"Opacity of the currently focused window. Windows will get opacity levels " +"between the focused and minimum." +msgstr "" +"אטימות החלון הפעיל הנוכחי. החלונות יקבלו ערכי אטימות שבין ערך זה ובין " +"המינימום." + +msgid "" +"Opacity of the least focused window. Windows will get opacity levels between " +"the focused and minimum." +msgstr "" +"אטימות החלון הכי פחות פעיל. החלונות יקבלו ערכי אטימות שבין ערך החלון הפעיל " +"ובין המינימום." + +msgid "Saturation Level of Focused Windows" +msgstr "רווית חלון פעיל" + +msgid "Saturation Level of Unfocused Windows" +msgstr "רווית חלון לא פעיל" + +msgid "" +"Saturation of the currently focused window. Windows will get saturation " +"levels between the focused and minimum." +msgstr "" +"רווית החלון הפעיל הנוכחי. החלונות יקבלו ערכי רוויה שבין ערך זה ובין המינימום." + +msgid "" +"Saturation of the least focused window. Windows will get saturation levels " +"between the focused and minimum." +msgstr "" +"רווית החלון הפעיל הנוכחי. החלונות יקבלו ערכי רוויה שבין ערך החלון הפעיל ובין " +"המינימום." + +msgid "" +"This defines when Trailfocus will start fading windows. This lets you set up " +"trailfocus to treat the N first Windows as fully focused." +msgstr "" +"הגדרה זו קובעת מתי יתחיל התקן מעקב הפעילות לשנות את צבע החלונות. ניתן " +"להתייחס אל N החלונות הראשונים כאל חלונות פעילים לחלוטין." + +msgid "Trailfocus" +msgstr "מעקב פעילות" + +msgid "Window to Start Fading" +msgstr "מספר חלונות לפני תחילת פעולה" + +msgid "Window types that should be handled by Trailfocus" +msgstr "סוגי חלונות המטופלים על ידי מעקב פעילות" + +msgid "Action name for initiate" +msgstr "שם פעולה עבור הפעלה" + +msgid "Action name for initiate/terminate" +msgstr "שם פעולה עבור הפעלה\\כיבוי" + +msgid "Begin Viewport Switch" +msgstr "התחל העברת משטח עבודה" + +msgid "Begin entering viewport number" +msgstr "התחל להזין מספר משטח עבודה" + +msgid "Desktop-based Viewport Switching" +msgstr "העברת משטחי עבודה מבוססת שולחן עבודה" + +msgid "Go to specific viewport" +msgstr "לך אל משטח עבודה מסוים" + +msgid "Initiate plugin action" +msgstr "התחל פעולת התקן" + +msgid "Initiate viewport changes through several events" +msgstr "התחל שינויי משטח עבודה במספר שלבים" + +msgid "Initiate/Terminate the selected plugin action" +msgstr "הפעלת\\כיבוי פעולת ההתקן שנבחרה" + +msgid "Move Down" +msgstr "הזז מטה" + +msgid "Move Left" +msgstr "הזז שמאלה" + +msgid "Move Next" +msgstr "הזז קדימה" + +msgid "Move Prev" +msgstr "הזז אחורה" + +msgid "Move Right" +msgstr "הזז ימינה" + +msgid "Move Up" +msgstr "הזז מעלה" + +msgid "Move down" +msgstr "הזז מטה" + +msgid "Move to the left" +msgstr "הזז כלפי שמאל" + +msgid "Move to the next viewport" +msgstr "הזז אל משטח העבודה הבא" + +msgid "Move to the previous viewport" +msgstr "הזז אל משטח העבודה הקודם" + +msgid "Move to the right" +msgstr "הזז כלפי ימין" + +msgid "Move up" +msgstr "הזז כלפי מעלה" + +msgid "Number-Based Viewport Switching" +msgstr "העברת משטחי עבודה מבוססת מספרים" + +msgid "Plugin for initiate action" +msgstr "התקן להתחלת פעולה" + +msgid "Plugin for initiate/action action" +msgstr "התקן להפעלה או סיום של פעולה" + +msgid "Switch to Viewport 1" +msgstr "העבר למשטח עבודה 1" + +msgid "Switch to Viewport 10" +msgstr "העבר למשטח עבודה 10" + +msgid "Switch to Viewport 11" +msgstr "העבר למשטח עבודה 11" + +msgid "Switch to Viewport 12" +msgstr "העבר למשטח עבודה 12" + +msgid "Switch to Viewport 2" +msgstr "העבר למשטח עבודה 2" + +msgid "Switch to Viewport 3" +msgstr "העבר למשטח עבודה 3" + +msgid "Switch to Viewport 4" +msgstr "העבר למשטח עבודה 4" + +msgid "Switch to Viewport 5" +msgstr "העבר למשטח עבודה 5" + +msgid "Switch to Viewport 6" +msgstr "העבר למשטח עבודה 6" + +msgid "Switch to Viewport 7" +msgstr "העבר למשטח עבודה 7" + +msgid "Switch to Viewport 8" +msgstr "העבר למשטח עבודה 8" + +msgid "Switch to Viewport 9" +msgstr "העבר למשטח עבודה 9" + +msgid "Switch to viewport 1" +msgstr "העבר למשטח עבודה 1" + +msgid "Switch to viewport 10" +msgstr "העבר למשטח עבודה 10" + +msgid "Switch to viewport 11" +msgstr "העבר למשטח עבודה 11" + +msgid "Switch to viewport 12" +msgstr "העבר למשטח עבודה 12" + +msgid "Switch to viewport 2" +msgstr "העבר למשטח עבודה 2" + +msgid "Switch to viewport 3" +msgstr "העבר למשטח עבודה 3" + +msgid "Switch to viewport 4" +msgstr "העבר למשטח עבודה 4" + +msgid "Switch to viewport 5" +msgstr "העבר למשטח עבודה 5" + +msgid "Switch to viewport 6" +msgstr "העבר למשטח עבודה 6" + +msgid "Switch to viewport 7" +msgstr "העבר למשטח עבודה 7" + +msgid "Switch to viewport 8" +msgstr "העבר למשטח עבודה 8" + +msgid "Switch to viewport 9" +msgstr "העבר למשטח עבודה 9" + +msgid "Viewport Switcher" +msgstr "מעביר משטחי עבודה" + +msgid "Allow Wrap-Around" +msgstr "אפשר גישה מסביב" + +msgid "Allow wrap-around when moving the wall up/down/left/right" +msgstr "אפשר גישה מסביב בעת הזזת הקיר מעלה, מטה, שמאלה או ימינה" + +msgid "Arrow Colors" +msgstr "צבעי החץ" + +msgid "Background Gradient" +msgstr "רקע מדורג" + +msgid "Base Color" +msgstr "צבע בסיס" + +msgid "Desktop Wall" +msgstr "שולחן קיר" + +msgid "Desktop Wall Plugin" +msgstr "התקן שולחן קיר" + +msgid "Duration (in s) for wall sliding viewport switching animation" +msgstr "משך אנימצית גלישת משטח העבודה על גבי הקיר במילישניות" + +msgid "" +"Duration (in s) the switch target preview should remain visible after " +"switching ends." +msgstr "" +"משך הזמן שבו ניתן יהיה לראות את התמונה המקדימה של משטח העבודה המיועד לאחר " +"תום ההעברה." + +msgid "Edge Flip DnD" +msgstr "גרור והשלך את קצה המסך" + +msgid "Edge Flip Move" +msgstr "זוז דרך קצה המסך" + +msgid "Edge Flip Pointer" +msgstr "העבר בהזזת הסמן לקצה המסך" + +msgid "Edge Flipping" +msgstr "העברה דרך קצה המסך" + +msgid "Edge Radius" +msgstr "רדיוס קצה המסך" + +msgid "Edge flipping" +msgstr "העברה דרך קצה המסך" + +msgid "First color for the background gradient of the switcher window." +msgstr "הצבע הראשון ברקע המדורג של חלון המעביר." + +msgid "First color for the thumb gradient of the switcher window." +msgstr "הצבע הראשון של התמונה המוקטנת המדורגת של חלון המעביר." + +msgid "First color for the thumb highlight gradient of the switcher window." +msgstr "הצבע הראשון של ההדגשה המדורגת סביב התמונה המוקטנת בחלון המעביר." + +msgid "First color of the arrow of the switcher window." +msgstr "הצבע הראשון של החץ המדורג בחלון המעביר." + +msgid "Flip Down" +msgstr "העבר מטה" + +msgid "Flip Left" +msgstr "העבר שמאלה" + +msgid "Flip Right" +msgstr "העבר ימינה" + +msgid "Flip Up" +msgstr "העבר מעלה" + +msgid "Flip down" +msgstr "העבר מטה" + +msgid "Flip left" +msgstr "העבר שמאלה" + +msgid "Flip right" +msgstr "העבר ימינה" + +msgid "Flip up" +msgstr "העבר מעלה" + +msgid "Flip viewport when dragging an object to a screen edge" +msgstr "העבר משטח עבודה בעת גרירת עצם אל קצה המסך" + +msgid "Flip viewport when moving a window to a screen edge" +msgstr "העבר משטח עבודה בעת הזזת חלון אל קצה המסך" + +msgid "Flip viewport when moving the pointer to a screen edge" +msgstr "העבר משטח עבודה בעת הזזת הסמן אל קצה המסך" + +msgid "Highlight Gradient" +msgstr "צבע מדורג להדגשה" + +msgid "How should a multimonitor configuration be handled" +msgstr "כיצד לטפל בתצורה מרובת מסכים" + +msgid "Move Down With Window" +msgstr "הזז מטה עם החלון" + +msgid "Move Left With Window" +msgstr "הזז שמאלה עם החלון" + +msgid "Move Right With Window" +msgstr "הזז ימינה עם החלון" + +msgid "Move Up With Window" +msgstr "הזז מעלה עם החלון" + +msgid "Move along the wall down" +msgstr "עבור מטה לאורך הקיר" + +msgid "Move along the wall to the left" +msgstr "עבור שמאלה לאורך הקיר" + +msgid "Move along the wall to the next viewport" +msgstr "עבור אל משטח העבודה הבא לאורך הקיר" + +msgid "Move along the wall to the previous viewport" +msgstr "עבור אל משטח העבודה הקודם לאורך הקיר" + +msgid "Move along the wall to the right" +msgstr "עבור ימינה לאורך הקיר" + +msgid "Move along the wall up" +msgstr "עבור מעלה לאורך הקיר" + +msgid "Move with window along the wall down" +msgstr "עבור עם החלון מטה לאורך הקיר" + +msgid "Move with window along the wall to the left" +msgstr "עבור עם החלון שמאלה לאורך הקיר" + +msgid "Move with window along the wall to the right" +msgstr "עבור עם החלון ימינה לאורך הקיר" + +msgid "Move with window along the wall up" +msgstr "עבור עם החלון מעלה לאורך הקיר" + +msgid "Move with window within wall" +msgstr "עבור עם החלון לאורך הקיר" + +msgid "Move within wall" +msgstr "עבור לאורך הקיר" + +msgid "Multimonitor behavior" +msgstr "התנהגות מרובת מסכים" + +msgid "Outline Color" +msgstr "צבע מתאר" + +msgid "Outline color of the switcher window." +msgstr "צבע המתאר עבור חלון המעביר." + +msgid "Preview Scale" +msgstr "תצוגה מוקדמת של מבט על" + +msgid "Radius of the rounded edge" +msgstr "רדיוס קצה המסך המעוגל" + +msgid "Second color for the background gradient of the switcher window." +msgstr "הצבע השני ברקע המדורג של חלון המעביר." + +msgid "Second color for the thumb gradient of the switcher window." +msgstr "הצבע השני של התמונה המוקטנת המדורגת של חלון המעביר." + +msgid "Second color for the thumb highlight gradient of the switcher window." +msgstr "הצבע השני של ההדגשה המדורגת סביב התמונה המוקטנת בחלון המעביר." + +msgid "Second color of the arrow of the switcher window." +msgstr "הצבע השני של החץ המדורג בחלון המעביר." + +msgid "Shadow Color" +msgstr "צבע הצל" + +msgid "Show Live Viewport Previews" +msgstr "הצג תמונות מקדימות של משטחי העבודה" + +msgid "Show Viewport Switcher Preview" +msgstr "הצג במעביר תמונות מקדימות של משטחי העבודה" + +msgid "Show live viewport previews in switcher window" +msgstr "הצג בחלון המעביר תמונות מקדימות של משטחי העבודה" + +msgid "Show switcher window while switching viewports" +msgstr "הצג את חלון המעביר בעת העברת משטחי עבודה" + +#, no-c-format +msgid "Size of the preview in %" +msgstr "גודל התצוגה המוקדמת באחוזים" + +msgid "Switch Target Preview Visibility Time" +msgstr "משך הצגת התמונה המקדימה של המשטח המיועד" + +msgid "Switch all" +msgstr "העבר בכולם" + +msgid "Switch separately" +msgstr "העבר בנפרד" + +msgid "Third color for the background gradient of the switcher window." +msgstr "צבע שלישי עבור הרקע המדורג של חלון המעביר." + +msgid "Thumb Gradient" +msgstr "תמונה מוקטנת מדורגת" + +msgid "Viewport Switch Preview" +msgstr "תמונה מקדימה של העברת משטח עבודה" + +msgid "Viewport Switching" +msgstr "העברת משטחי עבודה" + +msgid "Wall Sliding Duration" +msgstr "משך גלישת הקיר" + +msgid "Width of the border between the previews" +msgstr "רוחב הגבול בין תצוגות מוקדמות" + +msgid "Background fill type." +msgstr "אופן מילוי הרקע." + +msgid "Backgrounds" +msgstr "רקעים" + +msgid "Center Tiled" +msgstr "מרוצף במרכז" + +msgid "Color 1" +msgstr "צבע 1" + +msgid "Color 2" +msgstr "צבע 2" + +msgid "Draw the desktop wallpaper" +msgstr "צייר את תמונת הרקע של שולחן העבודה" + +msgid "Fill or first gradient color." +msgstr "צבע המילוי או צבע מדורג ראשון." + +msgid "Fill type" +msgstr "אופן המילוי" + +msgid "Horizontal gradient" +msgstr "צבע מדורג אופקי" + +msgid "Image" +msgstr "תמונה" + +msgid "Image file." +msgstr "קובץ תמונה." + +msgid "Image position." +msgstr "מיקום התמונה." + +msgid "Position" +msgstr "מיקום" + +msgid "Scale and Crop" +msgstr "שנה גודל וקצץ" + +msgid "Scaled" +msgstr "מותאם גודל" + +msgid "Second gradient color." +msgstr "צבע רקע מדורג שני." + +msgid "Solid fill" +msgstr "מילוי אחיד" + +msgid "Tiled" +msgstr "מרוצף" + +msgid "Vertical gradient" +msgstr "צבע מדורג אנכי" + +msgid "Wallpaper" +msgstr "תמונת רקע" + +msgid "Background Brightness" +msgstr "בהירות הרקע" + +msgid "Background Saturation" +msgstr "רווית הרקע" + +msgid "Background in Widget Mode" +msgstr "רקע במצב ווידג'טים" + +msgid "Brightness of non-widget windows in widget modes." +msgstr "בהירות חלונות שאינם ווידג'טים כאשר מצב ווידג'טים מופעל." + +msgid "End Widget Mode on Click" +msgstr "צא ממצב ווידג'טים בהקלקה" + +msgid "End widget mode when a non-widget window is clicked." +msgstr "צא ממצב ווידג'טים בעת הקלקה על חלון שאינו ווידג'ט." + +msgid "Focus Widget Layer" +msgstr "מיקוד שכבת ווידג'טים" + +msgid "Focus a window in the widget layer when activating the layer" +msgstr "מקד חלון בשכבת הווידג'טים בעת הפעלת השכבה" + +msgid "Saturation of non-widget windows in widget modes." +msgstr "רווית חלונות שאינם ווידג'טים כאשר מצב ווידג'טים מופעל." + +msgid "Show or hide widget windows" +msgstr "הצג או הסתר חלונות ווידג'טים." + +msgid "Show widget windows on a separate layer" +msgstr "הצג חלונות ווידג'טים בשכבה נפרדת" + +msgid "Time (in s) for fading into/out of the widget layer." +msgstr "זמן דהייה אל\\מתוך שכבת הווידג'טים במילישניות." + +msgid "Toggle Widget Display" +msgstr "הפעל\\נטרל תצוגת ווידג'טים" + +msgid "Widget Layer" +msgstr "שכבת ווידג'טים" + +msgid "Widget Windows" +msgstr "חלונות ווידג'טים" + +msgid "Windows that always should be treated as widgets" +msgstr "חלונות אליהם יש להתייחס כאל ווידג'טים" + +msgid "Above others windows" +msgstr "מעל חלונות אחרים" + +msgid "Below others windows" +msgstr "מתחת חלונות אחרים" + +msgid "Don't show application in pager" +msgstr "אל תציג את היישום בפייג'ר" + +msgid "Don't show application in taskbar" +msgstr "אל תציג את היישום בשורת המשימות" + +msgid "Fixed Size Windows" +msgstr "חלונות בגודל קבוע" + +msgid "Fullscreen" +msgstr "מסך מלא" + +msgid "Fullscreen windows" +msgstr "חלונות במסך מלא" + +msgid "Height values" +msgstr "ערכי גובה" + +msgid "Matches" +msgstr "התאמות" + +msgid "Maximized" +msgstr "מוגדל למקסימום" + +msgid "Maximized windows" +msgstr "חלונות שהוגדלו למקסימום" + +msgid "No ARGB visuals" +msgstr "ללא הצגת ARGB" + +msgid "No focus" +msgstr "ללא מוקד" + +msgid "Non closable windows" +msgstr "חלונות שלא ניתן לסגור" + +msgid "Non maximizable windows" +msgstr "חלונות שלא ניתן להגדיל למקסימום" + +msgid "Non minimizable windows" +msgstr "חלונות שלא ניתן למזער" + +msgid "Non movable windows" +msgstr "חלונות שלא ניתן להזיז" + +msgid "Non resizable windows" +msgstr "חלונות שלא ניתן לשנות את גודלם" + +msgid "Set window as non closable" +msgstr "קבע שחלון הוא בלתי ניתן לסגירה" + +msgid "Set window as non maximizable" +msgstr "קבע שחלון הוא בלתי ניתן להגדלה למקסימום" + +msgid "Set window as non minimizable" +msgstr "קבע שחלון הוא בלתי ניתן למזעור" + +msgid "Set window as non movable" +msgstr "קבע שחלון הוא בלתי ניתן להזזה" + +msgid "Set window as non resizable" +msgstr "קבע שחלון הוא בלתי ניתן לשינוי גודל" + +msgid "Set windows rules" +msgstr "קבע חוקים לחלונות" + +msgid "Size rules" +msgstr "חוקי גודל" + +msgid "Sized Windows" +msgstr "חלונות שנקבע להם גודל" + +msgid "Skip pager" +msgstr "דלג על הפייג'ר" + +msgid "Skip taskbar" +msgstr "דלג על שורת המשימות" + +msgid "Sticky" +msgstr "דביקים" + +msgid "Sticky windows" +msgstr "חלונות דביקים" + +msgid "Width values" +msgstr "ערכי רוחב" + +msgid "Window Rules" +msgstr "חוקי חלונות" + +msgid "Windows that should be resized by default" +msgstr "חלונות שאין לשנות את גודלם כברירת מחדל" + +msgid "Windows that should be treated as not supporting transparency" +msgstr "חלונות אליהם יש להתייחס כאילו אינם תומכים בשקיפות" + +msgid "Windows will not have focus" +msgstr "חלונות שלא יקבלו מוקד" + +msgid "\"On all desktops\" sticky match" +msgstr "התאמה לדביקים \"בכל שולחנות העבודה\"" + +msgid "AIGLX Fragment Parameter Fix" +msgstr "תיקון לפרמטר פרגמנט AIGLX" + +msgid "Convert Urgency to Demands Attention" +msgstr "המר \"דחיפות\" ל-\"דורש תשומת לב\"" + +msgid "Firefox Menu Fix" +msgstr "תיקון לתפריט פיירפוקס" + +msgid "Fix broken glProgramEnvParameter4f implementation." +msgstr "תיקון ליישום glProgramEnvParameter4f." + +msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." +msgstr "תיקון לתקלה ב-GLX_MESA_copy_sub_buffer ב-XGL תחת fglrx." + +msgid "Fix screen updates in XGL with fglrx." +msgstr "תיקון לעדכוני מסך ב-XGL תחת fglrx." + +msgid "Fix window type of Firefox and Thunderbird menus." +msgstr "תיקון לסוג החלון של תפריטי פיירפוקס ות'אנדרבירד." + +msgid "Fix window type of OpenOffice.org menus." +msgstr "תיקון לסוג החלון של תפריטי אופן אופיס." + +msgid "Fix window type of notification daemon windows." +msgstr "תיקון לסוג החלון של דיימון ההודעות." + +msgid "Fix window type of various Java windows." +msgstr "תיקון לסוג החלון של חלונות ג'אווה שונים." + +msgid "Fix window type of various Qt windows." +msgstr "תיקון לסוג החלון של חלונות Qt שונים." + +msgid "Java Window Fix" +msgstr "תיקון לחלונות ג'אווה" + +msgid "Legacy Fullscreen Support" +msgstr "תמיכה במצב מיושן של מסך מלא" + +msgid "Make \"on all desktops\" windows \"sticky\"" +msgstr "הפוך חלונות ש-\"על כל שולחנות העבודה\" ל-\"דביקים\"" + +msgid "" +"Make \"on all desktops\" windows sticky. Sticky windows are visible on all " +"viewports." +msgstr "" +"הפוך חלונות ש-\"על כל שולחנות העבודה\" ל-\"דביקים\". חלונות דביקים מוצגים על " +"כל משטחי העבודה." + +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "ודא שחלון המוגדר כ-\"דחוף\" יוגדר גם כ-\"דורש תשומת לב\"." + +msgid "Make Wine and legacy applications fullscreen properly." +msgstr "הצג כראוי במסך מלא יישומים מיושנים ויישומי Wine." + +msgid "Metacity-like workarounds." +msgstr "תיקונים דמויי Metacity." + +msgid "Notification Daemon Fix" +msgstr "תיקון לדיימון ההודעות" + +msgid "OpenOffice.org Menu Fix" +msgstr "תיקון לתפריט אופן אופיס" + +msgid "Qt Window Fix" +msgstr "תיקון לחלונות Qt" + +msgid "Window stickyness" +msgstr "דביקות חלון" + +msgid "Windows on all desktops that should be made sticky" +msgstr "חלונות בכל שולחנות העבודה האמורים להפוך לדביקים" + +msgid "Workarounds" +msgstr "מעקפים" + +#~ msgid "Airplane" +#~ msgstr "אווירון" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "אורך נתיב טיסת האווירון" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "יחידת זמן עבור אנימציה של אפקטים אינטנסיביים" + +#~ msgid "Automatic" +#~ msgstr "אוטומטי" + +#~ msgid "Beam" +#~ msgstr "שיגור" + +#~ msgid "Beam Color" +#~ msgstr "צבע שיגור" + +#~ msgid "Beam Life" +#~ msgstr "אורך חיי שיגור" + +#~ msgid "Beam Slowdown" +#~ msgstr "האטת שיגור" + +#~ msgid "Beam Spacing" +#~ msgstr "ריווח שיגור" + +#~ msgid "Beam Up" +#~ msgstr "שגר מעלה" + +#~ msgid "Beam Width" +#~ msgstr "רוחב שיגור" + +#~ msgid "Beam color." +#~ msgstr "צבע שיגור." + +#~ msgid "Beam life." +#~ msgstr "אורך חיי שיגור." + +#~ msgid "Beam slowdown." +#~ msgstr "האטת שיגור." + +#~ msgid "Beam width." +#~ msgstr "רוחב שיגור." + +#~ msgid "Burn" +#~ msgstr "שריפה" + +#~ msgid "Domino" +#~ msgstr "דומינו" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "כיוון נפילת אבני הדומינו" + +#~ msgid "Explode" +#~ msgstr "פיצוץ" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "כיוון נפילת אבני הדומינו." + +#~ msgid "Fire" +#~ msgstr "אש" + +#~ msgid "Fire Smoke" +#~ msgstr "אש ועשן" + +#~ msgid "Fire constant speed" +#~ msgstr "מהירות אש קבועה" + +#~ msgid "Fire direction" +#~ msgstr "כיוון אש" + +#~ msgid "Fire direction." +#~ msgstr "כיוון אש." + +#~ msgid "Fire smoke." +#~ msgstr "אש ועשן." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "טוס אל שורת המשימות בעת מזעור" + +#~ msgid "Fold" +#~ msgstr "קיפול" + +#~ msgid "Fold Direction" +#~ msgstr "כיוון קיפול" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "הכיוון ההתחלתי להסרת פיסות בעת אפקט גילוח." + +#~ msgid "Hexagonal" +#~ msgstr "משושה" + +#~ msgid "In" +#~ msgstr "פנימה" + +#~ msgid "In-out" +#~ msgstr "פנימה-החוצה" + +#~ msgid "Leaf Spread" +#~ msgstr "פיזור עלים" + +#~ msgid "Left-right" +#~ msgstr "שמאלה-ימינה" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "אורך נתיב טיסת האווירון." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "התאם את משך אפקט האש לגובה החלון." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "כיוון או כיוונים של פיסות החלון." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "מספר חלקיקי אש" + +#~ msgid "Number of fire particles." +#~ msgstr "מספר חלקיקי אש." + +#~ msgid "Out" +#~ msgstr "החוצה" + +#~ msgid "Razr" +#~ msgstr "גילוח" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "כיוון פותח של קיפול גילוח" + +#~ msgid "Rectangular" +#~ msgstr "מלבני" + +#~ msgid "Rotation Angle" +#~ msgstr "זווית סיבוב" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "זווית הסיבוב של פיסות חלון מונפשות (במעלות)." + +#~ msgid "Skewer" +#~ msgstr "ביתור" + +#~ msgid "Skewer Direction" +#~ msgstr "כיוון ביתור" + +#~ msgid "Spacing between beams." +#~ msgstr "רווח בין קרני שיגור." + +#~ msgid "Tessellation Type" +#~ msgstr "אופן סידור פיסות" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "אופן סידור פיסות החלון בעת הפיצוץ." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "אופן סידור פיסות חלון." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "משך הזמן במילישניות בין כל רענון של אנימציה אינטנסיבית (למשל שריפה, " +#~ "שיגור). ככל שהמספר גבוה יותר התנועה מקוטעת יותר." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "החלון המונפש יתפצל למספר פיסות על גבי רשת. קבע את מספר המשבצות ברשת על פי " +#~ "גובה החלון." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "החלון המונפש יתפצל למספר פיסות על גבי רשת. קבע את מספר המשבצות ברשת על פי " +#~ "רוחב החלון." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "החלון המתפוצץ יתפצל למספר פיסות על גבי רשת. קבע את מספר המשבצות ברשת על " +#~ "פי גובה החלון." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "החלון המתפוצץ יתפצל למספר פיסות על גבי רשת. קבע את מספר המשבצות ברשת על " +#~ "פי רוחב החלון." + +#~ msgid "Thickness" +#~ msgstr "עובי" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "עובי פוליגונים מונפשים" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "עובי פוליגונים מתפוצצים" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "עובי פיסות חלון מונפשות (בפיקסלים)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "עובי פיסות חלון מתפוצצות (בפיקסלים)." + +#~ msgid "Up-down" +#~ msgstr "למעלה-למטה" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "קובע אם החלון יתעופף אל שורת המשימות בעזרת אפקט אווירון בעת מזעורו." + +#~ msgid "Window Grid Height" +#~ msgstr "גובה רשת חלון" + +#~ msgid "Window Grid Width" +#~ msgstr "רוחב רשת חלון" + +#~ msgid "Window folding direction." +#~ msgstr "כיוון קיפול חלון." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "עובי חלון בפיקסלים. ערך גדול מ-0 יבטל אפקטים של צל, טשטוש והשתקפות בזמן " +#~ "האנימציה." + +#~ msgid "Animation Speed" +#~ msgstr "מהירות אנימציה" + +#~ msgid "Change the speed of the 3D animation" +#~ msgstr "שנה מהירות אנימצית 3D" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "המשרעת (גובה גלי הקיפול) של הקפלים האופקיים ביחס לרוחב החלון. ערכים " +#~ "שליליים יוצגו כקיפול החוצה." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "המשרעת (גובה גל הקיפול) של הקפל המעוקל ביחס לרוחב החלון. ערכים שליליים " +#~ "יוצגו כקיפול החוצה." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "המשרעת (גובה הגלים) בהתאם לגובה החלון." + +#~ msgid "Brightness Decrease" +#~ msgstr "הפחתת בהירות" + +#~ msgid "Brightness Increase" +#~ msgstr "הגברת בהירות" + +#~ msgid "Brightness Step" +#~ msgstr "מרווח בהירות" + +#~ msgid "Brightness and Saturation" +#~ msgstr "בהירות ורוויה" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "שינויים לבהירות ולרוויה" + +#~ msgid "Brightness settings" +#~ msgstr "הגדרות בהירות" + +#~ msgid "Brightness values for windows" +#~ msgstr "ערכי בהירות לחלונות" + +#~ msgid "Brightness window values" +#~ msgstr "ערכי בהירות חלון" + +#~ msgid "Brightness windows" +#~ msgstr "בהירות חלונות" + +#~ msgid "Saturation Decrease" +#~ msgstr "הפחתת רוויה" + +#~ msgid "Saturation Increase" +#~ msgstr "הגברת רוויה" + +#~ msgid "Saturation Step" +#~ msgstr "מרווח רוויה" + +#~ msgid "Saturation settings" +#~ msgstr "הגדרות רוויה" + +#~ msgid "Saturation values for windows" +#~ msgstr "ערכי רוויה לחלונות" + +#~ msgid "Saturation window values" +#~ msgstr "ערכי רווית חלונות" + +#~ msgid "Saturation windows" +#~ msgstr "רווית חלונות" + +#~ msgid "Window specific" +#~ msgstr "על פי חלון" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "חלונות בעלי בהירות שונה כברירת מחדל" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "חלונות בעלי רוויה שונה כברירת מחדל" + +#~ msgid "Close Windows In Scale" +#~ msgstr "סגור חלונות במבט על" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/hi.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/hi.po --- compiz-fusion-plugins-unsupported-0.7.6/po/hi.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/hi.po 2008-09-17 14:29:33.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" +"POT-Creation-Date: 2008-09-15 14:46+0530\n" "PO-Revision-Date: 2007-12-16 17:00+0530\n" "Last-Translator: Sangeeta Kumari\n" "Language-Team: \n" @@ -117,6 +117,12 @@ msgid "Brightness of faded windows" msgstr "धुंधला विंडो का चमकीलापन" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "इसे थोड़ा आसान बनाएं सभी पर ध्यान केंद्रित करते हुए लेकिन सक्रिय विंडो के कारण." @@ -145,12 +151,6 @@ msgid "Window types that should be Opacified." msgstr "विंडो प्रकार जिसे अपारदर्शी बनाया जाना है" -msgid "Airplane" -msgstr "एयरप्लेन" - -msgid "Airplane Flying Path Length" -msgstr "एयरप्लेन फ्लाइंग पथ लंबाई" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -158,20 +158,6 @@ "सभी प्रभाव को क्रमहीन रूप में चुने जाते हैं, चयनित प्रभाव को अनदेखा करते हुए. यदि कोई नहीं " "इस घटना के लिए चुना जाता है, वो घटना संजीवित नहीं किया जायेगा." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"विंडो चौड़ाई के सापेक्षिक क्षैतिज फोल्ड का आयाम (फोल्ड में तरंग का आकार). नकारात्मक मान " -"फोल्ड आउटवार्ड है." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"विंडो चौड़ाई के सापेक्षिक वक्र फोल्ड का आयाम (फोल्ड में तरंग का आकार). नकारात्मक मान " -"आउटवार्ड फोल्ड करता है." - msgid "Angle of window at the end of the animation." msgstr "संजीवन के अंत में विंडो का कोण." @@ -181,9 +167,6 @@ msgid "Animation Time Step" msgstr "संजीवन समय चरण" -msgid "Animation Time Step For Intense Effects" -msgstr "सघन प्रभाव के लिए संजीवन समय चरण" - msgid "Animation duration in milliseconds for close effect." msgstr "बंद प्रभाव के लिए मिलीसेकेंड में संजीवन अवधि." @@ -202,51 +185,12 @@ msgid "Animations" msgstr "संजीवन" -msgid "Automatic" -msgstr "स्वचालित" - msgid "Away Angle" msgstr "दूर कोण" msgid "Away Position" msgstr "दूर स्थिति" -msgid "Beam" -msgstr "बीम" - -msgid "Beam Color" -msgstr "बीम रंग" - -msgid "Beam Life" -msgstr "बीम जीवन" - -msgid "Beam Slowdown" -msgstr "बीम स्लोडाउन" - -msgid "Beam Spacing" -msgstr "बीम अंतरण" - -msgid "Beam Up" -msgstr "बीम ऊपर" - -msgid "Beam Width" -msgstr "बीम चौड़ाई" - -msgid "Beam color." -msgstr "बीम रंग." - -msgid "Beam life." -msgstr "बीम जीवन" - -msgid "Beam slowdown." -msgstr "बीम स्लोडाउन." - -msgid "Beam width." -msgstr "बीम चौड़ाई." - -msgid "Burn" -msgstr "लिखें" - msgid "Close Animation" msgstr "संजीवन बन्द करें" @@ -269,7 +213,8 @@ msgid "Curved Fold" msgstr "वक्र मोड़" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "वक्र फोल्ड आयाम" msgid "Dodge" @@ -278,15 +223,6 @@ msgid "Dodge Gap Ratio" msgstr "अंतर अनुपात को डोज करें" -msgid "Domino" -msgstr "डोमिनो" - -msgid "Domino Piece Falling Direction" -msgstr "डोमिनो टुकड़ा गिराव दिशा" - -msgid "Down" -msgstr "नीचे" - msgid "Dream" msgstr "ड्रीम" @@ -296,77 +232,22 @@ msgid "Effect Settings" msgstr "प्रभाव जमावट" -msgid "Explode" -msgstr "विस्फोट" - msgid "Fade" msgstr "फीका कीजिये" -msgid "Falling direction for Domino pieces." -msgstr "डोमिनो टुकड़े के लिए गिराव दिशा." - -msgid "Fire" -msgstr "फायर" - -msgid "Fire Particle Color" -msgstr "फायर आचरण रंग" - -msgid "Fire Particle Life" -msgstr "फायर आचरण जीवन" - -msgid "Fire Particle Size" -msgstr "फायर कण आकार" - -msgid "Fire Particle Slowdown" -msgstr "फायर कण स्लोडाउन" - -msgid "Fire Smoke" -msgstr "फायर धुआं" - -msgid "Fire constant speed" -msgstr "फायर स्थिर गति" - -msgid "Fire direction" -msgstr "फायर दिशा" - -msgid "Fire direction." -msgstr "फायर दिशा." - -msgid "Fire particle color." -msgstr "फायर कण रंग." - -msgid "Fire particle life." -msgstr "फायर कण जीवन." - -msgid "Fire particle size." -msgstr "फायर कण आकार." - -msgid "Fire particle slowdown." -msgstr "फायर कण स्लोडाउन." - -msgid "Fire smoke." -msgstr "फायर धुंआ." - msgid "Fixed window interior during the Rollup animation." msgstr "रॉलअप संजीवन के दौरान स्थिर विंडो इंटीरियर." -msgid "Fly to TaskBar on Minimize" -msgstr "न्यूनतम पर टास्कबार में फ्लाइ करें" - msgid "Focus Animation" msgstr "संजीवन" msgid "Focus Effect" msgstr "प्रभाव फोकस करें" -msgid "Fold" -msgstr "मोड़" - -msgid "Fold Direction" -msgstr "मोड़ दिशा" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "रेजर प्रभाव में टुकड़े के लिए फोल्ड दिशा खोल रहा है." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "विसर्पण 1" @@ -374,18 +255,11 @@ msgid "Glide 2" msgstr "विसर्पण 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"आग का प्रभाव दिखाने के लिए क्रमहीन रंग रखता है, साथ ही मिस्टिकल फायर के रूप में जाना " -"जाता है." - -msgid "Hexagonal" -msgstr "षट्कोणीय" - msgid "Horizontal Folds" msgstr "क्षैतिज फोल्ड" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "क्षैतिज फोल्ड आयाम" msgid "How spring-like the Sidekick animation should be." @@ -394,24 +268,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "कैसे जूम संजीवन की तरह स्प्रिंग को होना चाहिए." -msgid "In" -msgstr "अन्दर" - -msgid "In-out" -msgstr "अन्दर बाहर" - -msgid "Leaf Spread" -msgstr "पत्ता प्रसार" - -msgid "Left" -msgstr "बायाँ" - -msgid "Left-right" -msgstr "बायाँ दायाँ" - -msgid "Length of airplane's flying path." -msgstr "हवाईजहाज के उड़ान पथ की लंबाई." - msgid "Magic Lamp" msgstr "जादुई लैंप" @@ -433,9 +289,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "मैजिक लैंप खुला/बन्द गतिशील अंत" -msgid "Make fire effect duration be dependent on window height." -msgstr "विंडो ऊंचाई पर आग प्रभाव अवधि को निर्भर बनाएं." - msgid "Minimize Animation" msgstr "संजीवन न्यूनतम करें" @@ -445,21 +298,12 @@ msgid "Minimize/Unminimize Only" msgstr "सिर्फ न्यूनतम/अधिकतम करें" -msgid "Movement direction(s) for window pieces." -msgstr "विंडो टुकड़े के लिए गति दिशा" - msgid "None" msgstr "कोई नहीं" -msgid "Number Of Fire Particles" -msgstr "फायर कण की संख्या" - msgid "Number of Horizontal Folds" msgstr "क्षैतिज फोल्ड की संख्या" -msgid "Number of fire particles." -msgstr "फायर कण की संख्या." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "साइडकिक के लिये घुमाव की संख्या (क्रमहीनता के लिए 10% अधिक या कम)." @@ -488,15 +332,13 @@ msgid "Options" msgstr "विकल्प" -msgid "Out" -msgstr "बाहर" - msgid "Pool" msgstr "पूल" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "प्रभाव पूल जिसे चुना जाना है यदि क्रमहीन प्रभाव चुना जाता है. पूर्ण सूची को फिर जमा करने " "के लिए फिर रिसेट करें." @@ -510,36 +352,15 @@ msgid "Random Effects" msgstr "बेतरतीब प्रभाव" -msgid "Randomly Colored Fire" -msgstr "क्रमहीन रंगीन फायर" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "डोज आरंभ समय से फोकस अवधि के बीच अंतराल का समय." -msgid "Razr" -msgstr "रेजर" - -msgid "Razr Fold Opening Direction" -msgstr "रेजर फोल्ड खुली दिशा" - -msgid "Rectangular" -msgstr "आयताकार" - -msgid "Right" -msgstr "दाहिना" - msgid "Roll Up" msgstr "ऊपर मोड़ें" msgid "Rollup Fixed Interior" msgstr "स्थिर इंटीरियर मोड़ें" -msgid "Rotation Angle" -msgstr "घुमाव कोण" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "संजीवित विंडो टुकड़े का घुमाव कोण (डिग्री में)." - msgid "Shade Animation" msgstr "छायांकित संजीवन" @@ -555,15 +376,6 @@ msgid "Sidekick Springiness" msgstr "साइडकिक स्प्रिंगनेस" -msgid "Skewer" -msgstr "विरूपक" - -msgid "Skewer Direction" -msgstr "विरूपक दिशा" - -msgid "Spacing between beams." -msgstr "बीम के बीच अंतरण." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -577,15 +389,6 @@ "निर्वात के लिए खुला प्रभाव की चौड़ाई से शुरू कर रहा है और बंद प्रभाव की चौड़ाई समाप्त कर " "रहा है" -msgid "Tessellation Type" -msgstr "पच्चीकारी प्रकार" - -msgid "Tessellation type for exploding window pieces." -msgstr "विस्फोटक विंडो टुकड़े के लिए पच्चीकारी प्रकार" - -msgid "Tessellation type for window pieces." -msgstr "विंडो टुकड़े के लिए पच्चीकारी प्रकार" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -593,28 +396,6 @@ "संजीवन के हर रेंडर के बीच मिलीसेकेंड में समय की मात्रा. जितनी संख्या ऊंची होगी, उतनी ही " "गति उतना उछल कूद वाला होगा." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"सघन संजीवन के हर रेंडर के बीच मिलीसेकेंड में समय की मात्रा (उदा. Burn, Beam). जितनी " -"संख्या ऊंची होगी, उतनी ही गति उतना उछल कूद वाला होगा." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"जाल के गिर्द संजीवित विंडो बांटा जायेगा. विंडो की ऊंचाई के साथ जाल सेल की संख्या निर्दिष्ट " -"करें." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"जाल के गिर्द संजीवित विंडो बांटा जायेगा. विंडो की चौड़ाई के साथ जाल सेल की संख्या " -"निर्दिष्ट करें." - msgid "The animation effect shown when closing a window." msgstr "विंडो बंद करने के दौरान दिखाया गया संजीवन प्रभाव." @@ -630,20 +411,6 @@ msgid "The animation effect shown when shading a window." msgstr "विंडो छायांकित करने के दौरान दिखाया गया संजीवन प्रभाव." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"जाल के गिर्द टुकड़े में विस्फोटकारी विंडो को बांटा जायेगा. जाल सेल की संख्या निर्दिष्ट करें " -"विंडो की ऊंचाई के साथ." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"जाल के गिर्द टुकड़े में विस्फोटकारी विंडो को बांटा जायेगा. जाल सेल की संख्या निर्दिष्ट करें " -"विंडो की चौड़ाई के साथ." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "अधिकतम आयाम (लहर का आकार) जो मैजिक लैंप रखेगा." @@ -657,36 +424,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "क्षैतिज मोड़ संजीवन में आने वाले क्षैतिज मोड़ की संख्या." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "विंडो ऊचाई के सापेक्ष लहर आयाम (लहर का आकार)." - msgid "The width of the wave relative to the window height." msgstr "विंडो ऊँचाई के सापेक्ष लहर की चौड़ाई." msgid "The windows that will be animated." msgstr "विंडो जो संजीवित होगा." -msgid "Thickness" -msgstr "मोटाई" - -msgid "Thickness of Animated Polygons" -msgstr "संजीवित बहुभुज की मोटाई" - -msgid "Thickness of Exploding Polygons" -msgstr "विस्फोटकारी बहुभुज की मोटाई" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "संजीवित विंडो टुकड़े की मोटाई (पिक्सेल में)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "विस्फोटकारी विंडो टुकड़े की मोटाई (पिक्सेल में)." - -msgid "Up" -msgstr "ऊपर" - -msgid "Up-down" -msgstr "ऊपर नीचे" - msgid "Use various animations as window effects" msgstr "विंडो प्रभाव के रूप में विविध संजीवन का उपयोग करें" @@ -723,15 +466,17 @@ msgid "Wave" msgstr "लहर" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "लहर आयाम" msgid "Wave Width" msgstr "लहर चौड़ाई" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." -msgstr "क्या विंडो को टास्कबार में उड़ना चाहिए जब एयरप्लेन प्रभाव में न्यूनीकृत किया जाता है." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -765,28 +510,12 @@ "क्या विंडो को टास्कबार में जूम किया जाना चाहिए जब क्षैतिज मोड़ प्रभाव के साथ न्यूनतम किया " "जाता है." -msgid "Window Grid Height" -msgstr "विंडो जाल ऊँचाई" - -msgid "Window Grid Width" -msgstr "विंडो जाल चौड़ाई" - -msgid "Window folding direction." -msgstr "विंडो मोड़ दिशा." - msgid "Window that should animate with this effect when focused." msgstr "विंडो जिसे इस प्रभाव के साथ संजीवित करना चाहिए जब फोकस किया जाए." msgid "Window that should animate with this effect when shaded." msgstr "विंडो जिसे इस प्रभाव के साथ संजीवित करना चाहिए जब छायांकित किया जाए." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"पिक्सेल में विंडो मोटाई. 0 से बड़ा पर सेटिंग छाया, धुंधलापन, और संजीवन के दौरान परावर्तन " -"को निष्क्रिय करेगा." - msgid "Zoom" msgstr "ज़ूम" @@ -902,83 +631,12 @@ msgstr "Y स्थिति" #, fuzzy -msgid "Brightness Decrease" -msgstr "चमकीलापन" - -#, fuzzy -msgid "Brightness Increase" -msgstr "चमकीलापन" - -#, fuzzy -msgid "Brightness Step" -msgstr "चमकीलापन" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "धुंधला विंडो का चमकीलापन" +msgid "Bicubic filter" +msgstr "फिल्टर बदलें" -msgid "Brightness and Saturation adjustments" +msgid "Bicubic texture filtering" msgstr "" -#, fuzzy -msgid "Brightness settings" -msgstr "चयनित विंडो का चमकीलापन" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "धुंधला विंडो का चमकीलापन" - -#, fuzzy -msgid "Brightness window values" -msgstr "धुंधला विंडो का चमकीलापन" - -#, fuzzy -msgid "Brightness windows" -msgstr "धुंधला विंडो का चमकीलापन" - -msgid "General" -msgstr "सामान्य" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "संतृप्ति" - -#, fuzzy -msgid "Saturation Increase" -msgstr "संतृप्ति" - -#, fuzzy -msgid "Saturation Step" -msgstr "संतृप्ति" - -#, fuzzy -msgid "Saturation settings" -msgstr "चयनित विंडो की संतृप्ति" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "धुंधले विंडो की संतृप्ति" - -#, fuzzy -msgid "Saturation window values" -msgstr "धुंधले विंडो की संतृप्ति" - -#, fuzzy -msgid "Saturation windows" -msgstr "धुंधले विंडो की संतृप्ति" - -#, fuzzy -msgid "Window specific" -msgstr "विंडो अपारदर्शिता" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "विंडोज़ जिसे मूलभूत रूप से फिर आकार दिया जाना चाहिए" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "विंडोज़ जिसे मूलभूत रूप से फिर आकार दिया जाना चाहिए" - msgid "Color filter" msgstr "रंग फिल्टर" @@ -1071,6 +729,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "विंडो प्रबंधक कमांड रेखा. यहां कौंपिज को मात दाखिल करें!!!" +msgid "Above" +msgstr "ऊपर" + msgid "Adjust bottom face image to rotation" msgstr "तलवर्ती फेस चित्र को घुमाव पर समायोजित करें" @@ -1092,6 +753,19 @@ msgid "Appearance" msgstr "प्रकटन" +#, fuzzy +msgid "Aspect ratio" +msgstr "पहलू अनुपात" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "स्वचालित जूम" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "सिर्फ माउस घुमाने पर स्वचालित जूम" + msgid "Behaviour" msgstr "आचरण" @@ -1125,18 +799,62 @@ msgid "Color of bottom face of the cube" msgstr "घन के तलवर्ती फेस का रंग" +msgid "Color of the ground (far)." +msgstr "तल का रंग (दूर)." + +msgid "Color of the ground (near)." +msgstr "तल का रंग (नजदीक)." + msgid "Color of top face of the cube" msgstr "घन के ऊपरी फेस का रंग" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "कोंपिज घन परावर्तन" + msgid "Cube Bottom Color" msgstr "घन तलवर्ती रंग" -msgid "Cube Caps" -msgstr "घन कैप्स" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "सजावट के लिए परावर्तन" msgid "Cube Top Color" msgstr "घन ऊपरी रंग" +#, fuzzy +msgid "Cube caps" +msgstr "घन कैप्स" + +#, fuzzy +msgid "Cylinder" +msgstr "खाली" + +#, fuzzy +msgid "Deform caps" +msgstr "अवधि" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "सिर्फ माउस घुमाने पर स्वचालित जूम" + +#, fuzzy +msgid "Deformation" +msgstr "अवधि" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "अवधि" + +msgid "Distance" +msgstr "दूरी" + msgid "Draw bottom face" msgstr "तलवर्ती फेस खीचें" @@ -1149,12 +867,38 @@ msgid "Draw top face of the cube" msgstr "घन का ऊपरी फेस खीचें" +#, fuzzy +msgid "Enabled" +msgstr "सक्रिय करें" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "कोंपिज घन परावर्तन" + msgid "Go back to previous image for bottom face of the cube" msgstr "घन का तलवर्ती फेस के लिए पिछले चित्र में वापस जाएं" msgid "Go back to previous image for top face of the cube" msgstr "घन का ऊपरी फेस के लिए पिछले चित्र में वापस जाएं" +msgid "Ground color(far)" +msgstr "तल रंग (दूर)" + +msgid "Ground color(near)" +msgstr "तल रंग (नजदीक)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "तीव्रता" + +msgid "Jumpy" +msgstr "जंपी" + +msgid "Jumpy reflection" +msgstr "जंपी परावर्तन" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "PNG और SVG फाइल की सूची जो घन के तलवर्ती फेस पर रेंडर किया जाना चाहिए" @@ -1162,6 +906,22 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "सूची का PNG और SVG फाइल पर ऊपर का" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "एक्सपो मोड पहलू अनुपात" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "तलवर्ती फेस चित्र को घुमाव पर समायोजित करें" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "एक्सपो मोड पहलू अनुपात" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "शीर्ष फेस चित्र को घुमाव के लिए समायोजित करें" + msgid "Next bottom image" msgstr "अगला तलवर्ती चित्र" @@ -1174,8 +934,23 @@ msgid "Prev top image" msgstr "पिछला ऊपरी चित्र" -msgid "Render images on top and bottom of the cube" -msgstr "घन के ऊपर व नीचे चित्र रेंडर करें" +msgid "Reflection" +msgstr "परावर्तन" + +msgid "Reflection ground size" +msgstr "आधार आकार का परावर्तन" + +msgid "Reflection ground size." +msgstr "आधार आकार का परावर्तन" + +msgid "Reflection intensity" +msgstr "परावर्तन तीव्रता" + +msgid "Reflection mode" +msgstr "परावर्तन मोड" + +msgid "Reflection mode." +msgstr "परावर्तन मोड." msgid "Scale bottom image" msgstr "तलवर्ती चित्र मापें" @@ -1189,69 +964,36 @@ msgid "Scale top image" msgstr "ऊपरी चित्र मापें" +#, fuzzy +msgid "Sphere" +msgstr "गति" + msgid "Top image files" msgstr "ऊपरी चित्र फाइल" -msgid "Above" -msgstr "ऊपर" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "स्वचालित जूम" +msgid "Zoom out automatically only on mouse rotate." +msgstr "सिर्फ माउस घुमाव पर स्वतः जूम आउट करें." -msgid "Auto zoom only on Mouse Rotate" -msgstr "सिर्फ माउस घुमाने पर स्वचालित जूम" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "स्क्रीन में घन फिट करने के लिए स्वतः जूम आउट करें." -msgid "Color of the ground (far)." -msgstr "तल का रंग (दूर)." +#, fuzzy +msgid "Cube Caps" +msgstr "घन कैप्स" -msgid "Color of the ground (near)." -msgstr "तल का रंग (नजदीक)." +msgid "Render images on top and bottom of the cube" +msgstr "घन के ऊपर व नीचे चित्र रेंडर करें" +#, fuzzy msgid "Compiz cube reflection" -msgstr "कोंपिज घन परावर्तन" +msgstr "घन परावर्तन" msgid "Cube Reflection" msgstr "घन परावर्तन" -msgid "Distance" -msgstr "दूरी" - -msgid "Ground color(far)" -msgstr "तल रंग (दूर)" - -msgid "Ground color(near)" -msgstr "तल रंग (नजदीक)" - -msgid "Intensity" -msgstr "तीव्रता" - -msgid "Jumpy" -msgstr "जंपी" - -msgid "Jumpy reflection" -msgstr "जंपी परावर्तन" - -msgid "Reflection ground size" -msgstr "आधार आकार का परावर्तन" - -msgid "Reflection ground size." -msgstr "आधार आकार का परावर्तन" - -msgid "Reflection intensity" -msgstr "परावर्तन तीव्रता" - -msgid "Reflection mode" -msgstr "परावर्तन मोड" - -msgid "Reflection mode." -msgstr "परावर्तन मोड." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "सिर्फ माउस घुमाव पर स्वतः जूम आउट करें." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "स्क्रीन में घन फिट करने के लिए स्वतः जूम आउट करें." - msgid "Animation used when switching to expo mode" msgstr "एक्सपो मोड में जाने के दौरान प्रयुक्त संजीवन" @@ -1276,10 +1018,6 @@ msgstr "गति धुंधला शक्ति." #, fuzzy -msgid "Deformation" -msgstr "अवधि" - -#, fuzzy msgid "Deformation of the expo wall" msgstr "एक्सपो दीवाल की दूरी" @@ -1371,9 +1109,6 @@ msgid "Previous viewport" msgstr "पिछला व्यूपोर्ट" -msgid "Reflection" -msgstr "परावर्तन" - msgid "Reflection Scale" msgstr "परावर्तन मापक" @@ -1482,6 +1217,10 @@ msgid "Center the mouse" msgstr "माउस को केंद्रित करें" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "माउस संकेतक को मापें" + msgid "Enable focus tracking" msgstr "फोकस ट्रैकिंग सक्रिय करें" @@ -1542,20 +1281,14 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "मौलिक माउस संकेतक छिपाएं जब जूम इन होता है और माउस स्केल किया जाता है" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"माउस स्थिति को कितनी बार पोल करना है मिली सेकेंड में. इस घटाएं चोपी व्यवहार को घटाने के " -"लिए." +#, fuzzy +msgid "Minimum zoom factor" +msgstr "न्यूनतम मापक कारक" #, fuzzy msgid "Mouse Behaviour" msgstr "माउस व्यवहार" -msgid "Mouse Poll Interval" -msgstr "माउस पोल अंतराल" - msgid "Mouse Restrain Margin" msgstr "माउस प्रतिबंध हाशिया" @@ -1638,12 +1371,21 @@ msgid "Speed" msgstr "गति" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "माउस संकेतक को मापें" + msgid "Sync Mouse" msgstr "माउस तुल्यकालित करें" msgid "Target Focused Window on Specific level" msgstr "विशेष स्तर पर फोकस विंडो लक्षित करें" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "जोड़ने के लिए हाशिया का आकार जब माउस को रोकने का प्रयास कर रहा है." @@ -1659,10 +1401,24 @@ msgid "Use linear filter when zoomed in" msgstr "जूम इन करने के दौरान रैखिक फिल्टर का प्रयोग करें" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "ज़ूम गति" +#, fuzzy +msgid "Zoom Box" +msgstr "ज़ूम" + msgid "Zoom In" msgstr "ज़ूम इन" @@ -1691,6 +1447,9 @@ msgid "Zoom factor" msgstr "जूम कारक" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "इस कारक के द्वारा जूम इन/आउट. उच्चतर मान का अर्थ है तेज जूमिंग." @@ -1746,20 +1505,56 @@ msgid "Toggle window fake ARGB." msgstr "विंडो नकली ARGB टॉगल करें." +#, fuzzy +msgid "Add Particle" +msgstr "फायर आचरण जीवन" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "पृष्ठभूमि चमकीलापन" -msgid "Background brightness during paint" -msgstr "पेंट के दौरान पृष्ठभूमि चमकीलापन" +msgid "Background brightness during paint" +msgstr "पेंट के दौरान पृष्ठभूमि चमकीलापन" + +msgid "Clear" +msgstr "खाली" + +msgid "Clear (button)" +msgstr "खाली (बटन)" + +msgid "Clear (key)" +msgstr "खाली (कुंजी)" + +msgid "Fire Particle Color" +msgstr "फायर आचरण रंग" + +msgid "Fire Particle Life" +msgstr "फायर आचरण जीवन" + +msgid "Fire Particle Size" +msgstr "फायर कण आकार" + +msgid "Fire Particle Slowdown" +msgstr "फायर कण स्लोडाउन" + +msgid "Fire particle color." +msgstr "फायर कण रंग." + +msgid "Fire particle life." +msgstr "फायर कण जीवन." -msgid "Clear" -msgstr "खाली" +msgid "Fire particle size." +msgstr "फायर कण आकार." -msgid "Clear (button)" -msgstr "खाली (बटन)" +msgid "Fire particle slowdown." +msgstr "फायर कण स्लोडाउन." -msgid "Clear (key)" -msgstr "खाली (कुंजी)" +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"आग का प्रभाव दिखाने के लिए क्रमहीन रंग रखता है, साथ ही मिस्टिकल फायर के रूप में जाना " +"जाता है." msgid "Initiate (button)" msgstr "आरंभ करें (बटन)" @@ -1782,6 +1577,9 @@ msgid "Paint fire or other particles on the screen" msgstr "पूर्ण स्क्रीन पर फायर या दूसरे कण को पेंट करें" +msgid "Randomly Colored Fire" +msgstr "क्रमहीन रंगीन फायर" + msgid "Cube Gears" msgstr "घन गीयर" @@ -1874,6 +1672,9 @@ msgid "Font Size" msgstr "फ़ॉन्ट आकार" +msgid "General" +msgstr "सामान्य" + msgid "Glass" msgstr "ग्लास" @@ -2477,9 +2278,19 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"माउस स्थिति को कितनी बार पोल करना है मिली सेकेंड में. इस घटाएं चोपी व्यवहार को घटाने के " +"लिए." + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "माउस पोल अंतराल" + #, fuzzy msgid "Mouse position polling" msgstr "माउस पैनिंग" @@ -3203,8 +3014,13 @@ msgid "Background color of the window title" msgstr "विंडो शीर्षक का पृष्ठभूमि रंग" -msgid "Close Windows In Scale" -msgstr "विंडोज़ को मापक में बन्द करें" +#, fuzzy +msgid "Close Window" +msgstr "टाइल विन्डो" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "मापक मोड में विंडो बन्द करें" msgid "Close windows while in scale mode" msgstr "मापक मोड में विंडो बन्द करें" @@ -3212,9 +3028,18 @@ msgid "Color used for highlighting the hovered window" msgstr "आगे पीछे किये जा रहे विंडो को उभारने के लिए प्रयुक्त रंग" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "विंडो उभार खीचें" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "विंडो शीर्षक का फ़ॉन्ट रंग" @@ -3232,6 +3057,11 @@ msgstr "दिए रंग के साथ आगे पीछे करता विंडो उभारता है" #, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "विंडो को आसानी से दृश्य बनाता है उनपर माउस आगे पीछे करते हुए" + +#, fuzzy msgid "No display" msgstr "विंडो शीर्षक प्रदर्शन" @@ -3241,6 +3071,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "जीवीय - प्रायोगिक" +#, fuzzy +msgid "Pull Window" +msgstr "विंडो रखें" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "मापक मोड में विंडो बन्द करें" + msgid "Scale Addons" msgstr "एडऑन मापें" @@ -3265,6 +3103,10 @@ msgid "Window Layout Mode" msgstr "विंडो अभिन्यास प्रकार" +#, fuzzy +msgid "Window Pull" +msgstr "विंडो नियम" + msgid "Window Title" msgstr "विंडो का शीर्षक" @@ -3276,10 +3118,12 @@ msgid "Window title display in scale mode" msgstr "मापक मोड में विंडो दिखाता है" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "मापक में विंडोज़ जूम करें" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "मापक मोड में विंडो जूम करें" msgid "Filter Case Insensitive" @@ -3543,18 +3387,30 @@ msgid "Direction of window movement" msgstr "विंडो गति की दिशा" +msgid "Down" +msgstr "नीचे" + +msgid "Left" +msgstr "बायाँ" + msgid "Left/Right" msgstr "बायां/दायां" msgid "Movement Direction" msgstr "गति दिशा" +msgid "Right" +msgstr "दाहिना" + msgid "Show desktop" msgstr "डेस्कटॉप दिखाएँ" msgid "To Corners" msgstr "कोने में" +msgid "Up" +msgstr "ऊपर" + msgid "Up/Down" msgstr "ऊपर/नीचे" @@ -3809,98 +3665,346 @@ msgid "Settings" msgstr "जमावट" -msgid "Size Of Snowflakes" -msgstr "स्नो फ्लेक का आकार" +msgid "Size Of Snowflakes" +msgstr "स्नो फ्लेक का आकार" + +msgid "Size of snowflakes" +msgstr "स्नो फ्लेक का आकार" + +msgid "Snow" +msgstr "बर्फबारी" + +msgid "Snow Direction" +msgstr "बर्फबारी दिशा" + +msgid "Snow Over Windows" +msgstr "विंडोज़ पर बर्फबारी" + +msgid "Snow Speed" +msgstr "बर्फबारी गति" + +msgid "Snow Textures" +msgstr "बर्फबारी बनावट" + +msgid "Snow Toggle" +msgstr "बर्फबारी टॉगल" + +msgid "Snow for Compiz" +msgstr "कोंपिज के लिए बर्फबारी" + +msgid "Snow is drawn above windows" +msgstr "विंडो पर बर्फबारी खीचा जाता है" + +msgid "Snow textures" +msgstr "बर्फबारी बनावट" + +msgid "Snow toggle key" +msgstr "बर्फबारी टॉगल कुंजी" + +msgid "Speed of falling snow" +msgstr "गिरते बर्फ की गति" + +msgid "Textures" +msgstr "बनावट" + +msgid "Top to Bottom" +msgstr "ऊपर से नीचे" + +msgid "Update Delay" +msgstr "अद्यतन देरी" + +msgid "A simple splash plugin" +msgstr "एक सरल स्पैलेश प्लगिन" + +msgid "Background File" +msgstr "पृष्ठभूमि फाइल" + +msgid "Background brightness." +msgstr "पृष्ठभूमि चमकीलापन." + +msgid "Background image File." +msgstr "पृष्ठभूमि चित्र फाइल." + +msgid "Background saturation." +msgstr "पृष्ठभूमि संतृप्ति." + +msgid "Display In/Out Time." +msgstr "इन/आउट समय दिखायें." + +msgid "Display Time" +msgstr "समय दिखायें" + +msgid "Images" +msgstr "चित्र" + +msgid "Initiate Splash" +msgstr "छिड़काव आरंभ करें" + +msgid "Logo File" +msgstr "लोगो फाइल" + +msgid "Logo image File." +msgstr "लोगो चित्र फाइल." + +msgid "Show on first start" +msgstr "पहला आरंभ पर दिखाएँ" + +msgid "Show splash on first start." +msgstr "पहला आरंभ पर छिड़काव दिखाएं" + +msgid "Splash" +msgstr "छिड़काव" + +msgid "Start Splash." +msgstr "छिड़काव प्रारंभ करें." + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "रिंग में विंडो के लिए अपारदर्शिता की मात्रा (प्रतिशत में) जो चयनित नहीं है" + +#, fuzzy +msgid "Behavior" +msgstr "आचरण" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "रिंग दिखाने के दौरान पृष्ठभूमि गहरा करें" + +#, fuzzy +msgid "On Thumbnail" +msgstr "लघुचित्र चौड़ाई" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "दिया विंडो सक्रिय करें" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "विंडो शीर्षक को बोल्ड होना चाहिए" + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "रिंग स्विचर" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "ढ़ाल पृष्ठभूमि का रंग 1." + +#, fuzzy +msgid "Windows" +msgstr "3D विंडोज़" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "विंडो जिसे शिफ्ट स्विचर में दिखाया जाना चाहिए" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "पेंट के दौरान पृष्ठभूमि चमकीलापन" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "पेजर में अनुप्रयोग मत दिखाएं" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "व्यूपोर्ट पर रखें" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "केंद्रित रखें" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "चयन आयक का रंग भरें" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "मिपमैप बनाएं जब उच्चतर गुणवत्ता के स्केलिंग के लिए संभव हो." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "रंग उभारें" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "रंग उभारें" + +#, fuzzy +msgid "Highlight Mode" +msgstr "रंग उभारें" + +#, fuzzy +msgid "Icon" +msgstr "अन्दर" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "विंडो उभार" + +#, fuzzy +msgid "Mipmap" +msgstr "मिपमैप" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "आगे पीछे किये जा रहे विंडो को उभारने के लिए प्रयुक्त रंग" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "अगला विन्डो" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "अगला विंडो (सभी कार्यस्थल)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "अगला विंडो (समूह)" -msgid "Size of snowflakes" -msgstr "स्नो फ्लेक का आकार" +#, fuzzy +msgid "Next window (No popup)" +msgstr "अगला विंडो (समूह)" -msgid "Snow" -msgstr "बर्फबारी" +msgid "Original Window Position" +msgstr "" -msgid "Snow Direction" -msgstr "बर्फबारी दिशा" +#, fuzzy +msgid "Popup Window Delay" +msgstr "समूह विंडो मिलान" -msgid "Snow Over Windows" -msgstr "विंडोज़ पर बर्फबारी" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "स्विचर दिखाएँ यदि दृष्टिगोच़र नहीं है और अगला विंडो चुनें." -msgid "Snow Speed" -msgstr "बर्फबारी गति" +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "स्विचर दिखाएँ यदि दृष्टिगोच़र नहीं है और मौजूदा अनुप्रयोग का अगला विंडो चुनें." -msgid "Snow Textures" -msgstr "बर्फबारी बनावट" +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "स्विचर दिखाएँ यदि दृष्टिगोच़र नहीं है और सभी विंडो से अगला विंडो चुनें." -msgid "Snow Toggle" -msgstr "बर्फबारी टॉगल" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "स्विचर दिखाएँ यदि दृष्टिगोच़र नहीं है और पिछला विंडो चुनें." -msgid "Snow for Compiz" -msgstr "कोंपिज के लिए बर्फबारी" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "स्विचर दिखाएँ यदि दृष्टिगोच़र नहीं है और मौजूदा अनुप्रयोग का पिछला विंडो चुनें." -msgid "Snow is drawn above windows" -msgstr "विंडो पर बर्फबारी खीचा जाता है" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "स्विचर दिखाएँ यदि दृष्टिगोच़र नहीं है और सभी विंडो से पिछला विंडो चुनें." -msgid "Snow textures" -msgstr "बर्फबारी बनावट" +msgid "Prev Panel" +msgstr "" -msgid "Snow toggle key" -msgstr "बर्फबारी टॉगल कुंजी" +#, fuzzy +msgid "Prev window" +msgstr "पिछला विन्डो" -msgid "Speed of falling snow" -msgstr "गिरते बर्फ की गति" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "पिछला विंडो (सभी कार्यस्थल)" -msgid "Textures" -msgstr "बनावट" +#, fuzzy +msgid "Prev window (Group)" +msgstr "पिछला विंडो (समूह)" -msgid "Top to Bottom" -msgstr "ऊपर से नीचे" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "पिछला विंडो (समूह)" -msgid "Update Delay" -msgstr "अद्यतन देरी" +msgid "Row Alignment" +msgstr "" -msgid "A simple splash plugin" -msgstr "एक सरल स्पैलेश प्लगिन" +#, fuzzy +msgid "Select next panel type window." +msgstr "चुनें कि कहां विंडो शीर्षक को रखा जाना है." -msgid "Background File" -msgstr "पृष्ठभूमि फाइल" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background brightness." -msgstr "पृष्ठभूमि चमकीलापन." +#, fuzzy +msgid "Select previous panel type window." +msgstr "चुनें कि कहां विंडो शीर्षक को रखा जाना है." -msgid "Background image File." -msgstr "पृष्ठभूमि चित्र फाइल." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background saturation." -msgstr "पृष्ठभूमि संतृप्ति." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "विंडो उभार" -msgid "Display In/Out Time." -msgstr "इन/आउट समय दिखायें." +#, fuzzy +msgid "Show Rectangle" +msgstr "आयताकार" -msgid "Display Time" -msgstr "समय दिखायें" +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "विंडो शीर्षक को लघुचित्र में दिखाएँ" -msgid "Images" -msgstr "चित्र" +#, fuzzy +msgid "Show minimized windows" +msgstr "न्यूनतम न बनाने योग्य विंडोज" -msgid "Initiate Splash" -msgstr "छिड़काव आरंभ करें" +msgid "Static Application Switcher" +msgstr "" -msgid "Logo File" -msgstr "लोगो फाइल" +#, fuzzy +msgid "Switcher speed" +msgstr "स्विचर मोड" -msgid "Logo image File." -msgstr "लोगो चित्र फाइल." +#, fuzzy +msgid "Switcher timestep" +msgstr "टाइमस्टेप बदलें" -msgid "Show on first start" -msgstr "पहला आरंभ पर दिखाएँ" +#, fuzzy +msgid "Switcher windows" +msgstr "फिल्टर किया विंडो" -msgid "Show splash on first start." -msgstr "पहला आरंभ पर छिड़काव दिखाएं" +#, fuzzy +msgid "Taskbar Entry" +msgstr "टास्कबार" -msgid "Splash" -msgstr "छिड़काव" +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Start Splash." -msgstr "छिड़काव प्रारंभ करें." +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" + +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "विंडो जिसे शिफ्ट स्विचर में दिखाया जाना चाहिए" msgid "Render text to texture" msgstr "बनावट में पाठ रेंडर करें" @@ -4583,10 +4687,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "केंद्रित रखें" - -#, fuzzy msgid "Color 1" msgstr "रंग" @@ -4734,6 +4834,14 @@ msgid "Matches" msgstr "मिलान" +#, fuzzy +msgid "Maximized" +msgstr "न्यूनतम किया हुआ दिखाएँ" + +#, fuzzy +msgid "Maximized windows" +msgstr "अधिकतम न बनाने योग्य विंडोज" + msgid "No ARGB visuals" msgstr "कोई ARGB चित्र नहीं" @@ -4812,6 +4920,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "AIGLX फ्रैगमेंट पैरामीटर फिक्स" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "फ़ायरफ़ॉक्स मेनू सही" @@ -4855,6 +4966,9 @@ "\"सभी डेस्कटॉप पर\" विंडोज \"स्टिकी\" बनाएं. स्टिकी विंडो सभी व्यूपोर्ट पर स्टिकी होता " "है." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "वाइन व पुरातन अनुप्रयोग को पूर्णस्क्रीन ठीक से बनाएं." @@ -4879,6 +4993,331 @@ msgid "Workarounds" msgstr "समाधान" +#~ msgid "Airplane" +#~ msgstr "एयरप्लेन" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "एयरप्लेन फ्लाइंग पथ लंबाई" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "सघन प्रभाव के लिए संजीवन समय चरण" + +#~ msgid "Automatic" +#~ msgstr "स्वचालित" + +#~ msgid "Beam" +#~ msgstr "बीम" + +#~ msgid "Beam Color" +#~ msgstr "बीम रंग" + +#~ msgid "Beam Life" +#~ msgstr "बीम जीवन" + +#~ msgid "Beam Slowdown" +#~ msgstr "बीम स्लोडाउन" + +#~ msgid "Beam Spacing" +#~ msgstr "बीम अंतरण" + +#~ msgid "Beam Up" +#~ msgstr "बीम ऊपर" + +#~ msgid "Beam Width" +#~ msgstr "बीम चौड़ाई" + +#~ msgid "Beam color." +#~ msgstr "बीम रंग." + +#~ msgid "Beam life." +#~ msgstr "बीम जीवन" + +#~ msgid "Beam slowdown." +#~ msgstr "बीम स्लोडाउन." + +#~ msgid "Beam width." +#~ msgstr "बीम चौड़ाई." + +#~ msgid "Burn" +#~ msgstr "लिखें" + +#~ msgid "Domino" +#~ msgstr "डोमिनो" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "डोमिनो टुकड़ा गिराव दिशा" + +#~ msgid "Explode" +#~ msgstr "विस्फोट" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "डोमिनो टुकड़े के लिए गिराव दिशा." + +#~ msgid "Fire" +#~ msgstr "फायर" + +#~ msgid "Fire Smoke" +#~ msgstr "फायर धुआं" + +#~ msgid "Fire constant speed" +#~ msgstr "फायर स्थिर गति" + +#~ msgid "Fire direction" +#~ msgstr "फायर दिशा" + +#~ msgid "Fire direction." +#~ msgstr "फायर दिशा." + +#~ msgid "Fire smoke." +#~ msgstr "फायर धुंआ." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "न्यूनतम पर टास्कबार में फ्लाइ करें" + +#~ msgid "Fold" +#~ msgstr "मोड़" + +#~ msgid "Fold Direction" +#~ msgstr "मोड़ दिशा" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "रेजर प्रभाव में टुकड़े के लिए फोल्ड दिशा खोल रहा है." + +#~ msgid "Hexagonal" +#~ msgstr "षट्कोणीय" + +#~ msgid "In" +#~ msgstr "अन्दर" + +#~ msgid "In-out" +#~ msgstr "अन्दर बाहर" + +#~ msgid "Leaf Spread" +#~ msgstr "पत्ता प्रसार" + +#~ msgid "Left-right" +#~ msgstr "बायाँ दायाँ" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "हवाईजहाज के उड़ान पथ की लंबाई." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "विंडो ऊंचाई पर आग प्रभाव अवधि को निर्भर बनाएं." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "विंडो टुकड़े के लिए गति दिशा" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "फायर कण की संख्या" + +#~ msgid "Number of fire particles." +#~ msgstr "फायर कण की संख्या." + +#~ msgid "Out" +#~ msgstr "बाहर" + +#~ msgid "Razr" +#~ msgstr "रेजर" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "रेजर फोल्ड खुली दिशा" + +#~ msgid "Rectangular" +#~ msgstr "आयताकार" + +#~ msgid "Rotation Angle" +#~ msgstr "घुमाव कोण" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "संजीवित विंडो टुकड़े का घुमाव कोण (डिग्री में)." + +#~ msgid "Skewer" +#~ msgstr "विरूपक" + +#~ msgid "Skewer Direction" +#~ msgstr "विरूपक दिशा" + +#~ msgid "Spacing between beams." +#~ msgstr "बीम के बीच अंतरण." + +#~ msgid "Tessellation Type" +#~ msgstr "पच्चीकारी प्रकार" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "विस्फोटक विंडो टुकड़े के लिए पच्चीकारी प्रकार" + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "विंडो टुकड़े के लिए पच्चीकारी प्रकार" + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "सघन संजीवन के हर रेंडर के बीच मिलीसेकेंड में समय की मात्रा (उदा. Burn, Beam). जितनी " +#~ "संख्या ऊंची होगी, उतनी ही गति उतना उछल कूद वाला होगा." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "जाल के गिर्द संजीवित विंडो बांटा जायेगा. विंडो की ऊंचाई के साथ जाल सेल की संख्या " +#~ "निर्दिष्ट करें." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "जाल के गिर्द संजीवित विंडो बांटा जायेगा. विंडो की चौड़ाई के साथ जाल सेल की संख्या " +#~ "निर्दिष्ट करें." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "जाल के गिर्द टुकड़े में विस्फोटकारी विंडो को बांटा जायेगा. जाल सेल की संख्या निर्दिष्ट करें " +#~ "विंडो की ऊंचाई के साथ." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "जाल के गिर्द टुकड़े में विस्फोटकारी विंडो को बांटा जायेगा. जाल सेल की संख्या निर्दिष्ट करें " +#~ "विंडो की चौड़ाई के साथ." + +#~ msgid "Thickness" +#~ msgstr "मोटाई" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "संजीवित बहुभुज की मोटाई" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "विस्फोटकारी बहुभुज की मोटाई" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "संजीवित विंडो टुकड़े की मोटाई (पिक्सेल में)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "विस्फोटकारी विंडो टुकड़े की मोटाई (पिक्सेल में)." + +#~ msgid "Up-down" +#~ msgstr "ऊपर नीचे" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "क्या विंडो को टास्कबार में उड़ना चाहिए जब एयरप्लेन प्रभाव में न्यूनीकृत किया जाता है." + +#~ msgid "Window Grid Height" +#~ msgstr "विंडो जाल ऊँचाई" + +#~ msgid "Window Grid Width" +#~ msgstr "विंडो जाल चौड़ाई" + +#~ msgid "Window folding direction." +#~ msgstr "विंडो मोड़ दिशा." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "पिक्सेल में विंडो मोटाई. 0 से बड़ा पर सेटिंग छाया, धुंधलापन, और संजीवन के दौरान " +#~ "परावर्तन को निष्क्रिय करेगा." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "विंडो चौड़ाई के सापेक्षिक क्षैतिज फोल्ड का आयाम (फोल्ड में तरंग का आकार). नकारात्मक " +#~ "मान फोल्ड आउटवार्ड है." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "विंडो चौड़ाई के सापेक्षिक वक्र फोल्ड का आयाम (फोल्ड में तरंग का आकार). नकारात्मक मान " +#~ "आउटवार्ड फोल्ड करता है." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "विंडो ऊचाई के सापेक्ष लहर आयाम (लहर का आकार)." + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "चमकीलापन" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "चमकीलापन" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "चमकीलापन" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "धुंधला विंडो का चमकीलापन" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "चयनित विंडो का चमकीलापन" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "धुंधला विंडो का चमकीलापन" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "धुंधला विंडो का चमकीलापन" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "धुंधला विंडो का चमकीलापन" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "संतृप्ति" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "संतृप्ति" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "संतृप्ति" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "चयनित विंडो की संतृप्ति" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "धुंधले विंडो की संतृप्ति" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "धुंधले विंडो की संतृप्ति" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "धुंधले विंडो की संतृप्ति" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "विंडो अपारदर्शिता" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "विंडोज़ जिसे मूलभूत रूप से फिर आकार दिया जाना चाहिए" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "विंडोज़ जिसे मूलभूत रूप से फिर आकार दिया जाना चाहिए" + +#~ msgid "Close Windows In Scale" +#~ msgstr "विंडोज़ को मापक में बन्द करें" + #~ msgid "Animation Speed" #~ msgstr "संजीवन गति" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/hu.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/hu.po --- compiz-fusion-plugins-unsupported-0.7.6/po/hu.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/hu.po 1970-01-01 01:00:00.000000000 +0100 @@ -1,4901 +0,0 @@ -# translation of compiz-fusion-plugins.po to Hungarian -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# KAMI , 2008 -# -msgid "" -msgstr "" -"Project-Id-Version: compiz-fusion-plugins\n" -"Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" -"PO-Revision-Date: 2008-04-05 11:38+0200\n" -"Last-Translator: KAMI \n" -"Language-Team: Hungarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" - -msgid "3D Only On Mouse Rotate" -msgstr "Térhatás csak egérrel történő forgatáskor" - -msgid "3D Windows" -msgstr "Térhatású ablakok" - -msgid "Bevel Bottom Left" -msgstr "Bal alsó sarok lekerekítése" - -msgid "Bevel Bottom Right" -msgstr "Jobb alsó sarok lekerekítése" - -msgid "Bevel Corners" -msgstr "Sarkok lekerekítése" - -msgid "Bevel Top Left" -msgstr "Bal felső sarok lekerekítése" - -msgid "Bevel Top Right" -msgstr "Jobb felső sarok lekerekítése" - -msgid "Bevel bottom left corner" -msgstr "Bal alsó sarok lekerekítése" - -msgid "Bevel bottom right corner" -msgstr "Jobb alsó sarok lekerekítése" - -msgid "Bevel top left corner" -msgstr "Bal felső sarok lekerekítése" - -msgid "Bevel top right corner" -msgstr "Jobb felső sarok lekerekítése" - -msgid "" -"Change the amount of space between the windows (in percent of the cube size)." -msgstr "Hely az ablakok között (a kocka méretének százalékában megadva)." - -msgid "Color of an inactive window's depth" -msgstr "Inaktív ablak térbeli színe" - -msgid "Color of the active window's depth" -msgstr "Aktív ablak térbeli színe" - -msgid "Elevates windows while rotating the cube" -msgstr "Ablakok felemelése a kocka forgatása közben" - -msgid "" -"Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " -"cube via the mouse)" -msgstr "" -"Térhatású forgatás kezdeményezése kizárólag egérmozgatás hatására. (Például: " -"Forgatni kezdi a kockát egérrel.)" - -msgid "Minimum Cube Size" -msgstr "Minimális kockaméret" - -msgid "Minimum cube size (in percent)." -msgstr "Minimális kockaméret (százalékban megadva)." - -msgid "Misc. Options" -msgstr "További beállítások" - -msgid "Roundoff corners for consistency with rounded decorations" -msgstr "Sarkok lekerekítése a lekerekített elemekkel rendelkező díszítőkhöz" - -msgid "Window Color (Active)" -msgstr "Aktív ablak színe" - -msgid "Window Color (Inactive)" -msgstr "Inaktív ablak színe" - -msgid "Window Depth" -msgstr "Ablak mélység" - -msgid "Window Match" -msgstr "Ablak összerendelés" - -msgid "Window Space" -msgstr "Ablak helyköz" - -msgid "Window depth" -msgstr "Ablak mélység" - -msgid "Windows that should be handled by 3D" -msgstr "Térhatásúként kezelt ablakok" - -msgid "ADD Helper" -msgstr "Halványító" - -msgid "Bindings" -msgstr "Összerendelések" - -msgid "Brightness" -msgstr "Fényerő" - -msgid "Brightness of faded windows" -msgstr "Az elhalványított ablakok fényereje" - -msgid "" -"Make it slightly easier to concentrate by dimming all but the active window." -msgstr "" -"Segíti az aktív ablakra történő koncentrálást azzal, hogy többi ablakot " -"elhalványítja." - -msgid "Opacity" -msgstr "Átlátszatlanság" - -msgid "Opacity of faded windows" -msgstr "Elhalványított ablakok átlátszatlansága" - -msgid "Saturation" -msgstr "Színtelítettség" - -msgid "Saturation of faded windows" -msgstr "Elhalványított ablakok színtelítettsége" - -msgid "Toggle AddHelper" -msgstr "Halványító kapcsoló" - -msgid "Use this to enable/disable AddHelper on the fly." -msgstr "Halványító azonnali ki- és bekapcsolása." - -msgid "Window Types" -msgstr "Ablaktípusok" - -msgid "Window types that should be Opacified." -msgstr "Átlátszatlan ablaktípusok." - -msgid "Airplane" -msgstr "Repülőgép" - -msgid "Airplane Flying Path Length" -msgstr "A repülőgép repülési útjának hossza" - -msgid "" -"All effects are chosen randomly, ignoring the selected effect. If None is " -"selected for an event, that event won't be animated." -msgstr "" -"Minden esemény effektusa véletlenszerűen kerül kiválasztásra, figyelmen " -"kívül hagyva a beállított effektust. Amennyiben egy esemény számára a Nincs " -"lehetőség kerül kiválasztása, úgy az az esemény nem lesz effektussal ellátva." - -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Vízszintes gyűrődés amplitúdó (redőméret) az ablak szélességéhez képest " -"relatív értékben megadva. Negatív érték hatására a redők kifordulnak." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Hajlított gyűrődés amplitúdó (redőméret) az ablak szélességéhez képest " -"relatív értékben megadva. Negatív érték hatására a redők kifordulnak." - -msgid "Angle of window at the end of the animation." -msgstr "Az ablak iránya az animáció végére." - -msgid "Animation Selection" -msgstr "Animáció kiválasztása" - -msgid "Animation Time Step" -msgstr "Animációs időköz" - -msgid "Animation Time Step For Intense Effects" -msgstr "Teljesítményigényes effektusok animációs időköze" - -msgid "Animation duration in milliseconds for close effect." -msgstr "Az animációs effektus időtartama az ablak bezárása esetén." - -msgid "Animation duration in milliseconds for focus effect." -msgstr "Az animációs effektus időtartama az ablakra fókuszálás esetén." - -msgid "Animation duration in milliseconds for minimize effect." -msgstr "Az animációs effektus időtartama az ablakra fókuszálás esetén" - -msgid "Animation duration in milliseconds for open effect." -msgstr "Az animációs effektus időtartama az ablak megnyitása esetén." - -msgid "Animation duration in milliseconds for shade effect." -msgstr "Az animációs effektus időtartama az ablak felgördítése esetén." - -msgid "Animations" -msgstr "Animációk" - -msgid "Automatic" -msgstr "Automatikus" - -msgid "Away Angle" -msgstr "Távoli szög" - -msgid "Away Position" -msgstr "Távoli pozíció" - -msgid "Beam" -msgstr "Fénysugár" - -msgid "Beam Color" -msgstr "Fénysugár színe" - -msgid "Beam Life" -msgstr "Fénysugár élettartama" - -msgid "Beam Slowdown" -msgstr "Fénysugár lelassulása" - -msgid "Beam Spacing" -msgstr "Fénysugár térköz" - -msgid "Beam Up" -msgstr "Fénysugár" - -msgid "Beam Width" -msgstr "Fénysugár vastagság" - -msgid "Beam color." -msgstr "Fénysugár színe." - -msgid "Beam life." -msgstr "Fénysugár élettartama." - -msgid "Beam slowdown." -msgstr "Fénysugár lelassulása" - -msgid "Beam width." -msgstr "Fénysugár vastagsága." - -msgid "Burn" -msgstr "Leég" - -msgid "Close Animation" -msgstr "Bezárási animáció" - -msgid "Close Effect" -msgstr "Bezárási effektus" - -msgid "" -"Closeness of window to camera at the end of the animation (1.0: Close to " -"camera, -2.0: Away from camera)." -msgstr "" -"Ablak távolsága az animáció végén (1.0:Közeli ablak, -2.0: Távoli ablak)." - -msgid "" -"Comma separated list of option value assignments to override effect " -"settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1" -msgstr "" -"Érték hozzárendelések vesszővel elválasztva az animációk alapbeállításainak " -"felülbírálására. Például: fire_color=#0080ffff, fire_particles=700, " -"fire_smoke=1" - -msgid "Curved Fold" -msgstr "Hajlított redők" - -msgid "Curved Fold Amplitude" -msgstr "Hajlított redők amplitúdója" - -msgid "Dodge" -msgstr "Félreugrás" - -msgid "Dodge Gap Ratio" -msgstr "Félreugrás helyköze" - -msgid "Domino" -msgstr "Dominó" - -msgid "Domino Piece Falling Direction" -msgstr "Dominók mozgásának iránya" - -msgid "Down" -msgstr "Lefelé" - -msgid "Dream" -msgstr "Álom" - -msgid "Duration" -msgstr "Időtartam" - -msgid "Effect Settings" -msgstr "Effektus beállítások" - -msgid "Explode" -msgstr "Felrobban" - -msgid "Fade" -msgstr "Elhalványul" - -msgid "Falling direction for Domino pieces." -msgstr "A dominók mozgásának iránya." - -msgid "Fire" -msgstr "Tűzrajz" - -msgid "Fire Particle Color" -msgstr "Lángnyelv szín" - -msgid "Fire Particle Life" -msgstr "Lángnyelv élettartam" - -msgid "Fire Particle Size" -msgstr "Lángnyelv méret" - -msgid "Fire Particle Slowdown" -msgstr "Lángnyelv lassulás" - -msgid "Fire Smoke" -msgstr "Tűz füstje" - -msgid "Fire constant speed" -msgstr "Tűz állandó sebessége" - -msgid "Fire direction" -msgstr "Tűz iránya" - -msgid "Fire direction." -msgstr "Tűz iránya" - -msgid "Fire particle color." -msgstr "Lángnyelvek színe." - -msgid "Fire particle life." -msgstr "Lángnyelvek élettartama." - -msgid "Fire particle size." -msgstr "Lángnyelvek mérete." - -msgid "Fire particle slowdown." -msgstr "Lángnyelvek lassulása." - -msgid "Fire smoke." -msgstr "Füst" - -msgid "Fixed window interior during the Rollup animation." -msgstr "Kötött ablaktartalom Felgördítés animáció közben." - -msgid "Fly to TaskBar on Minimize" -msgstr "Repüljön a tálcára minimalizáláskor" - -msgid "Focus Animation" -msgstr "Fókusz animáció" - -msgid "Focus Effect" -msgstr "Fókusz effekt" - -msgid "Fold" -msgstr "Gyűrődés" - -msgid "Fold Direction" -msgstr "Redő iránya" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Véletlenszerű nyitási irány a Penge hatásnál." - -msgid "Glide 1" -msgstr "Siklás 1" - -msgid "Glide 2" -msgstr "Siklás 2" - -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Legyen véletlenszerű a tűz hatás színe, más néven Misztikus tűz." - -msgid "Hexagonal" -msgstr "Hatszögletű" - -msgid "Horizontal Folds" -msgstr "Vízszintes redők" - -msgid "Horizontal Folds Amplitude" -msgstr "Vízszintes redők amplitúdója" - -msgid "How spring-like the Sidekick animation should be." -msgstr "Mennyire legyen rugó-szerű a Szenzáció animáció." - -msgid "How spring-like the Zoom animation should be." -msgstr "Mennyire legyen rugó-szerű a Közelítés animáció." - -msgid "In" -msgstr "Bent" - -msgid "In-out" -msgstr "Bent és kint" - -msgid "Leaf Spread" -msgstr "Lombtakaró" - -msgid "Left" -msgstr "Balra" - -msgid "Left-right" -msgstr "Balra-jobbra" - -msgid "Length of airplane's flying path." -msgstr "A repülőgép repülési útjának hossza." - -msgid "Magic Lamp" -msgstr "Csodalámpa" - -msgid "Magic Lamp Grid Y Resolution" -msgstr "Csodalámpa rácsának vízszintes felbontás" - -msgid "Magic Lamp Max Wave Amplitude" -msgstr "Csodalámpa hullámok nagysága" - -msgid "Magic Lamp Max Waves" -msgstr "Csodalámpa maximális hullámok száma" - -msgid "Magic Lamp Min Wave Amplitude" -msgstr "Csodalámpa hullámok minimális nagysága" - -msgid "Magic Lamp Open Start Width" -msgstr "Csodalámpa megnyitása így történik" - -msgid "Magic Lamp Open/Close Moving End" -msgstr "Csodalámpa végpontjának mozgatása megnyitáskor és bezáráskor" - -msgid "Make fire effect duration be dependent on window height." -msgstr "A tűzeffektus időtartama az ablakmérettől függjön" - -msgid "Minimize Animation" -msgstr "Minimalizálási animáció" - -msgid "Minimize Effect" -msgstr "Minimalizálási effekt" - -msgid "Minimize/Unminimize Only" -msgstr "Csak minimalizáláskor és eredeti méretre visszaállításkor" - -msgid "Movement direction(s) for window pieces." -msgstr "Az ablakdarabok mozgásirányai" - -msgid "None" -msgstr "Nincs" - -msgid "Number Of Fire Particles" -msgstr "Lángnyelvek száma" - -msgid "Number of Horizontal Folds" -msgstr "Vízszintes redők száma" - -msgid "Number of fire particles." -msgstr "Lángnyelvek száma" - -#, no-c-format -msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." -msgstr "" -"Fordulatok száma a Szenzáció animáció alatt (10 százalék véletlenszerű " -"eltéréssel)." - -msgid "Off" -msgstr "Ki" - -msgid "On" -msgstr "Be" - -msgid "On open/close, move magic lamp ending point with the mouse pointer." -msgstr "" -"Csodalámpa effektus végpontjának mozgatása az egérmutató segítségével " -"megnyitáskor és bezáráskor." - -msgid "On open/close, move vacuum ending point with the mouse pointer." -msgstr "" -"Porszívó effektus végpontjának mozgatása az egérmutató segítségével " -"megnyitáskor és bezáráskor." - -msgid "Open Animation" -msgstr "Megnyitási animáció" - -msgid "Open Effect" -msgstr "Megnyitási effekt" - -msgid "Open/Close Only" -msgstr "Megnyitás és bezárás esetén" - -msgid "Options" -msgstr "Beállítások" - -msgid "Out" -msgstr "Kint" - -msgid "Pool" -msgstr "Gyűjtemény" - -msgid "" -"Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." -msgstr "" -"Véletlenszerű effektushasználat engedélyezése esetén a használandó effektus " -"a gyűjteményből kerül kiválasztásra. Kattintson az Alapállapot gombra a " -"teljes lista visszaállításához." - -msgid "Random" -msgstr "Véletlenszerű" - -msgid "Random Animations For All Events" -msgstr "Véletlenszerű animáció minden esemény hatására" - -msgid "Random Effects" -msgstr "Véletlenszerű effektusok" - -msgid "Randomly Colored Fire" -msgstr "Véletlenszerű tűzszín" - -msgid "Ratio of gaps between dodge start times to focus duration." -msgstr "Félreugrás animáció indítása és a fókuszálás közötti időköz." - -msgid "Razr" -msgstr "Penge" - -msgid "Razr Fold Opening Direction" -msgstr "Penge nyitási iránya" - -msgid "Rectangular" -msgstr "Négyszögletes" - -msgid "Right" -msgstr "Jobbra" - -msgid "Roll Up" -msgstr "Feltekeredik" - -msgid "Rollup Fixed Interior" -msgstr "Felgördítésnél rögzített ablaktartalom" - -msgid "Rotation Angle" -msgstr "Forgatás szöge" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Az animált ablakdarab forgatási szöge (fokban megadva)." - -msgid "Shade Animation" -msgstr "Felgördítés animáció" - -msgid "Shade Effect" -msgstr "Felgördítés effekt" - -msgid "Sidekick" -msgstr "Társ" - -msgid "Sidekick Number of Rotations" -msgstr "Fordulatok száma" - -msgid "Sidekick Springiness" -msgstr "Rugalmasság" - -msgid "Skewer" -msgstr "Nyársaló" - -msgid "Skewer Direction" -msgstr "Nyársalás iránya" - -msgid "Spacing between beams." -msgstr "Fénysugarak közti távolság." - -msgid "" -"Starting width of open effect and ending width of close effect for Magic " -"Lamp." -msgstr "Nyitó és záró effektus szélessége a Varázslámpa hatásnál." - -msgid "" -"Starting width of open effect and ending width of close effect for Vacuum." -msgstr "Nyitó és záró effektus szélessége a Vakum hatásnál." - -msgid "Tessellation Type" -msgstr "Mozaik típus" - -msgid "Tessellation type for exploding window pieces." -msgstr "Mozaik típusa a felrobbanó ablakdarabokhoz." - -msgid "Tessellation type for window pieces." -msgstr "Mozaik típusa az ablakdarabokhoz." - -msgid "" -"The amount of time in milliseconds between each render of the animation. The " -"higher the number, the jerkier the movements become." -msgstr "" -"Az animáció egyes fázisainak leképzése között eltelt idő ezredmásodpercben " -"megadva. Nagyobb értéket megadva az animáció szaggatottá válhat." - -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"A teljesítményigényes animáció (például: Leég, Fénysugár) egyes fázisainak " -"leképzése között eltelt idő ezredmásodpercben megadva. Nagyobb értéket " -"megadva az animáció szaggatottá válhat." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Az animált ablak rács mentén darabokra lesz bontva. Adja meg a rácscellák " -"számát az ablak magasságának függvényében." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Az animált ablak rács mentén darabokra lesz bontva. Adja meg a rácscellák " -"számát az ablak szélességének függvényében." - -msgid "The animation effect shown when closing a window." -msgstr "Az animációs effektus alkalmazása az ablak bezárása esetén." - -msgid "The animation effect shown when creating a window." -msgstr "Az animációs effektus alkalmazása az ablak megnyitása esetén." - -msgid "The animation effect shown when focusing a window." -msgstr "Az animációs effektus alkalmazása az ablakra fókuszálás esetén." - -msgid "The animation effect shown when minimizing a window." -msgstr "Az animációs effektus alkalmazása az ablak minimalizálása esetén." - -msgid "The animation effect shown when shading a window." -msgstr "Az animációs effektus alkalmazása az ablak felgördítése esetén." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Az animált ablak rács mentén darabokra lesz bontva. Adja meg a rácscellák " -"számát az ablak magasságának függvényében." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Az animált ablak rács mentén darabokra lesz bontva. Adja meg a rácscellák " -"számát az ablak szélességének függvényében." - -msgid "The maximum amplitude (size of the waves) Magic Lamp will have." -msgstr "Maximális kitérés (hullámok mérete) a Varázslámpa effektusnál." - -msgid "The maximum number of waves for Magic Lamp." -msgstr "Hullámok maximális száma a Varázslámpa effektusnál." - -msgid "The minimum amplitude (size of the waves) Magic Lamp will have." -msgstr "Minimális kitérés (hullámok mérete) a Varázslámpa effektusnál." - -msgid "" -"The number of horizontal folds that occur in the Horizontal Fold animation." -msgstr "Vízszintes redők száma a Vízszintes gyűrődés animációnál." - -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Maximális kitérés (hullámok mérete) arányosan az ablak magasságával." - -msgid "The width of the wave relative to the window height." -msgstr "Hullámok maximális mérete arányosan az ablak magasságával." - -msgid "The windows that will be animated." -msgstr "Animálandó ablakok" - -msgid "Thickness" -msgstr "vastagság" - -msgid "Thickness of Animated Polygons" -msgstr "Animált pontok vastagsága" - -msgid "Thickness of Exploding Polygons" -msgstr "Felrobbanó pontok vastagsága" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Animált ablakdarabok vastagsága (képpontban)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Robbanó ablakdarabok vastagsága (képpontban)." - -msgid "Up" -msgstr "Felfelé" - -msgid "Up-down" -msgstr "Fel és le" - -msgid "Use various animations as window effects" -msgstr "Különféle animációk használata ablakeffektusokhoz." - -msgid "Vacuum" -msgstr "Vákuum" - -msgid "Vacuum Grid Y Resolution" -msgstr "Vákuum háló függőleges felbontás" - -msgid "Vacuum Open Start Width" -msgstr "Vákuum kezdő szélessége" - -msgid "Vacuum Open/Close Moving End" -msgstr "Vákuum végpontjának mozgatása megnyitáskor és bezáráskor" - -msgid "" -"Vertex grid resolution for Magic Lamp (Y dimension only). This is the number " -"of points used to define the curves. The higher the number, the smoother the " -"curves. However there will be a loss of performance (CPU usage increases)." -msgstr "" -"Varázslámpa hálójának felbontása (csak függőlegesen). Ez a szám adja meg, " -"hogy a görbe hány pontból álljon. Magasabb szám, lágyabb görbét eredményez. " -"Viszont csökkenti a teljesítményt (magas CPU használat)." - -msgid "" -"Vertex grid resolution for Vacuum (Y dimension only). This is the number of " -"points used to define the curves. The higher the number, the smoother the " -"curves. However there will be a loss of performance (CPU usage increases)." -msgstr "" -"Vákuum hálójának felbontása (csak függőlegesen). Ez a szám adja meg, hogy a " -"görbe hány pontból álljon. Magasabb szám, lágyabb görbét eredményez. Viszont " -"csökkenti a teljesítményt (magas CPU használat)." - -msgid "Wave" -msgstr "Hullámzó" - -msgid "Wave Amplitude" -msgstr "Hullám magassága" - -msgid "Wave Width" -msgstr "Hullám szélessége" - -msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." -msgstr "" -"Minimalizálás során az ablak repüljön a tálcára a Repülőgép effektus esetén." - -msgid "" -"Whether the window should zoom to taskbar when minimized with Curved Fold " -"effect." -msgstr "" -"Minimalizálás során az ablak nagyításának célja a tálca legyen a Hajlított " -"redők effektus esetén." - -msgid "" -"Whether the window should zoom to taskbar when minimized with Dream effect." -msgstr "" -"Minimalizálás során az ablak nagyításának célja a tálca legyen a Álom " -"effektus esetén." - -msgid "" -"Whether the window should zoom to taskbar when minimized with Glide 1 effect." -msgstr "" -"Minimalizálás során az ablak nagyításának célja a tálca legyen a Siklás 1 " -"effektus esetén." - -msgid "" -"Whether the window should zoom to taskbar when minimized with Glide 2 effect." -msgstr "" -"Minimalizálás során az ablak nagyításának célja a tálca legyen a Siklás 2 " -"effektus esetén." - -msgid "" -"Whether the window should zoom to taskbar when minimized with Horizontal " -"Folds effect." -msgstr "" -"Minimalizálás során az ablak nagyításának célja a tálca legyen a Vízszintes " -"redők effektus esetén." - -msgid "Window Grid Height" -msgstr "Ablakrács magassága" - -msgid "Window Grid Width" -msgstr "Ablakrács szélessége" - -msgid "Window folding direction." -msgstr "Az ablakdarabok mozgásirányai" - -msgid "Window that should animate with this effect when focused." -msgstr "Az ablakok aktiváláskor ezt az animációt használják." - -msgid "Window that should animate with this effect when shaded." -msgstr "Az ablakok tálcára helyezéskor ezt az animációt használják." - -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Ablak vastagsága képpontban. 0-tól magasabb érték kikapcsolja az árnyékot, " -"elmosást, és a tükröződést animáció közben" - -msgid "Zoom" -msgstr "Nagyító" - -msgid "Zoom Springiness" -msgstr "Nagyítás rugalmassága" - -msgid "Zoom from Center" -msgstr "Nagyítás középről" - -msgid "Zoom from center when playing the Sidekick animation." -msgstr "Nagyítás középről kockaforgatás alatt" - -msgid "Zoom from center when playing the Zoom animation." -msgstr "Nagyítás középről \"nagyítás\" animáció alatt." - -msgid "Zoom to TaskBar on Minimize" -msgstr "Nagyítás a tálcára, minimalizálásnál" - -msgid "Colors" -msgstr "Szín" - -msgid "Cube Atlantis" -msgstr "Atlantisz" - -msgid "Dolphin size" -msgstr "Delfinek mérete" - -msgid "Dolphin size." -msgstr "Delfinek mérete." - -msgid "Enable colors" -msgstr "Színek engedélyezése" - -msgid "Fish size" -msgstr "Halak mérete" - -msgid "Number of fish" -msgstr "Halak száma" - -msgid "Number of fish inside the cube" -msgstr "Halak száma a kockában" - -msgid "Render some fish inside of the transparent cube" -msgstr "Néhány halat jelenít meg az áttetsző kockában" - -msgid "Shark size" -msgstr "Cápák mérete" - -msgid "Whale size" -msgstr "Bálnák mérete" - -msgid "Whale size." -msgstr "Bálnák mérete." - -msgid "A simple benchmark plugin" -msgstr "Egy egyszerű teljesítménymérő bővítmény" - -msgid "Benchmark" -msgstr "Teljesítményvizsgáló" - -msgid "Console Output" -msgstr "Konzol kimenet" - -msgid "Console output update time" -msgstr "Konzolkimenet frissítési időköze" - -msgid "Disable Compiz integrated FPS limiter" -msgstr "Compiz letiltása" - -msgid "Disable limiter" -msgstr "Korlátozó letiltása" - -msgid "Display FPS on screen" -msgstr "Másodpercenkénti képkockaszám megjelenítése a képernyőn" - -msgid "Enable" -msgstr "Bekapcsolás" - -msgid "Initiate" -msgstr "Kezdeti" - -msgid "Main" -msgstr "Általános" - -msgid "Print FPS to console" -msgstr "Másodpercenkénti képkockaszám megjelenítése a konzolon" - -msgid "Screen Output" -msgstr "Képernyőkimenet" - -msgid "Start benchmark" -msgstr "Teljesítményvizsgáló indítása" - -msgid "Update time" -msgstr "Frissítési időköz" - -msgid "X Position of benchmark window" -msgstr "A teljesítménymérő ablak vízszintes pozíciója" - -msgid "X position" -msgstr "Vízszintes pozíció" - -msgid "Y Position of benchmark window" -msgstr "A teljesítménymérő ablak függőleges pozíciója" - -msgid "Y position" -msgstr "Függőleges pozíció" - -msgid "Brightness Decrease" -msgstr "Fényerő csökkentése" - -msgid "Brightness Increase" -msgstr "Fényerő növelése" - -msgid "Brightness Step" -msgstr "Fényerő lépésköz" - -msgid "Brightness and Saturation" -msgstr "Fényerő és színtelítettség" - -msgid "Brightness and Saturation adjustments" -msgstr "Fényerő és színtelítettség szabályzása" - -msgid "Brightness settings" -msgstr "Fényerő beállítások" - -msgid "Brightness values for windows" -msgstr "Fényerő értéke ablakokhoz" - -msgid "Brightness window values" -msgstr "Fényerő értéke ablakokhoz" - -msgid "Brightness windows" -msgstr "Ablak fényerő" - -msgid "General" -msgstr "Általános" - -msgid "Saturation Decrease" -msgstr "Színtelítettség csökkentése" - -msgid "Saturation Increase" -msgstr "Színtelítettség növelése" - -msgid "Saturation Step" -msgstr "Színtelítettség lépésköz" - -msgid "Saturation settings" -msgstr "Színtelítettség beállítások" - -msgid "Saturation values for windows" -msgstr "Színtelítettség értéke ablakokhoz" - -msgid "Saturation window values" -msgstr "Színtelítettség értéke ablakokhoz" - -msgid "Saturation windows" -msgstr "Ablak színtelítettség" - -msgid "Window specific" -msgstr "Ablakfüggő" - -msgid "Windows that should have a different brightness by default" -msgstr "Alapértelmezettől eltérő fényerővel rendelkező ablakok" - -msgid "Windows that should have a different saturation by default" -msgstr "Alapértelmezettől eltérő színtelítettséggel rendelkező ablakok" - -msgid "Color filter" -msgstr "Színszűrő" - -msgid "Exclude windows" -msgstr "Kizárt ablakok" - -msgid "Filter colors for accessibility purposes" -msgstr "Színek szűrése a könnyebb kezelés érdekében" - -msgid "Filter window decorations" -msgstr "Ablakdíszítés szűrése" - -msgid "Filtered windows" -msgstr "Kiszűrt ablakok" - -msgid "Filters files" -msgstr "Fájlok szűrése" - -msgid "" -"List of plain text filter files that should be applied when filtering " -"windows or screen." -msgstr "" -"Egyszerű szöveges fájlok listája, amiket alkalmazni kell ha a képernyőn " -"kiszűrt ablakok vannak." - -msgid "" -"Select filter to use from filters list : either apply all filters or only " -"one specific filter (triggering this action switches filters one by one and " -"eventually comes back to the \"all filters\" mode)." -msgstr "" -"Válassza ki a szűrő listából melyeket szeretné használni: lehet mindet vagy " -"csak egy szűrőt alkalmazni (Ez a lehetőség egyesével próbálja ki a szűrőket " -"és néha visszaugrik a \"minden szűrő\" módra)." - -msgid "Switch filter" -msgstr "Szűrő váltása" - -msgid "Toggle filtering for currently focused window." -msgstr "Szűrő kapcsolása az aktív ablakon." - -msgid "Toggle filtering for every window on the screen." -msgstr "Szűrő kapcsolása minden ablakon." - -msgid "Toggle screen filtering" -msgstr "Képernyőszűrő kapcsoló" - -msgid "Toggle window filtering" -msgstr "Ablakszűrő kapcsoló" - -msgid "" -"Window decorations (borders and titlebar) will be filtered as well as window " -"contents if enabled." -msgstr "" -"Ablakdíszítés (keret és címsor) is szűrve lesz ugyanúgy mint az ablak " -"tartalma." - -msgid "Windows to be filtered by default." -msgstr "Alapértelmezés szerint szűrt ablakok" - -msgid "Windows to exclude from filtering." -msgstr "Ezek az ablakok ne legyenek szűrve." - -msgid "Activate Crash Handler." -msgstr "Hibakezelő engedélyezése." - -msgid "Compiz crash handler plugin" -msgstr "Compiz hibakezelő bővítmény" - -msgid "Crash Dump Directory" -msgstr "Hibakezelő mappája" - -msgid "Crash handler" -msgstr "Hibakezelő" - -msgid "Directory to dump the crash logs to." -msgstr "A hibakezelő naplójának mappája." - -msgid "Enable Crash Handler" -msgstr "Hibakezelő engedélyezése" - -msgid "Start Other Window Manager" -msgstr "Egyéb ablakkezelő elindítása" - -msgid "Start other window manager on Crash." -msgstr "Hiba esetén egyéb ablakkezelőt indít el." - -msgid "Window Manager Command Line" -msgstr "Ablakkezelő indítási parancsa" - -msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" -msgstr "Ablakkezelő indítási parancsa. NE ADJA MEG ITT A COMPIZT!" - -msgid "Adjust bottom face image to rotation" -msgstr "Alsó kép szerkesztése forgatáshoz" - -msgid "Adjust bottom image" -msgstr "Alsó kép szerkesztése" - -msgid "Adjust top face image to rotation" -msgstr "Alsó kép szerkesztése forgatáshoz" - -msgid "Adjust top image" -msgstr "Felső kép szerkesztése" - -msgid "Advance to next image for bottom face of the cube" -msgstr "Továbblépés a következő képhez a kocka alsó képének beállításához" - -msgid "Advance to next image for top face of the cube" -msgstr "Továbblépés a következő képhez a kocka felső képének beállításához" - -msgid "Appearance" -msgstr "Megjelenés" - -msgid "Behaviour" -msgstr "Viselkedés" - -msgid "Bottom image files" -msgstr "Alsó képfájl" - -msgid "Clamp bottom face image to border" -msgstr "Alsó kép rögzítése a szélekhez" - -msgid "" -"Clamp bottom face image to border. This is often the best if your image " -"doesn't fit the size of the cube or if it's transparent. It can lead to some " -"ugly dotted lines when enabled (especially with large enough images) though." -msgstr "" -"Alsó kép rögzítése a szélekhez. Az általában akkor a legjobb, ha a képed nem " -"megfelelő méretű, vagy átlátszó. Néhány kellemetlen pontozott vonal lehet " -"látható ha engedélyezett (különösen elég nagy képeknél)." - -msgid "Clamp top face image to border" -msgstr "Felső kép rögzítése a szélekhez" - -msgid "" -"Clamp top face image to border. This is often the best if your image doesn't " -"fit the size of the cube or if it's transparent. It can lead to some ugly " -"dotted lines when enabled (especially with large enough images) though." -msgstr "" -"Felső kép rögzítése a szélekhez. Az általában akkor a legjobb, ha a képed " -"nem megfelelő méretű, vagy átlátszó. Néhány kellemetlen pontozott vonal " -"lehet látható ha engedélyezett (különösen elég nagy képeknél)." - -msgid "Color of bottom face of the cube" -msgstr "A kocka alsó lapjának színe" - -msgid "Color of top face of the cube" -msgstr "A kocka felső lapjának színe" - -msgid "Cube Bottom Color" -msgstr "Kocka alsó szín" - -msgid "Cube Caps" -msgstr "Kocka fedőlapok" - -msgid "Cube Top Color" -msgstr "Kocka felső szín" - -msgid "Draw bottom face" -msgstr "Alsó lap megjelenítése" - -msgid "Draw bottom face of the cube" -msgstr "Megjeleníti a kocka alsó lapját" - -msgid "Draw top face" -msgstr "Felső lap megjelenítése" - -msgid "Draw top face of the cube" -msgstr "Megjeleníti a kocka felső lapját" - -msgid "Go back to previous image for bottom face of the cube" -msgstr "Megjeleníti a kocka alsó lapjának előző képét" - -msgid "Go back to previous image for top face of the cube" -msgstr "Megjeleníti a kocka felső lapjának előző képét" - -msgid "" -"List of PNG and SVG files that should be rendered on bottom face of cube" -msgstr "" -"Azon PNG és SVG képfájlok listája, amelyek megjelenhetnek a kocka alsó lapján" - -msgid "List of PNG and SVG files that should be rendered on top face of cube" -msgstr "" -"Azon PNG és SVG képfájlok listája, amelyek megjelenhetnek a kocka felső " -"lapján" - -msgid "Next bottom image" -msgstr "Következő alsó kép" - -msgid "Next top image" -msgstr "Következő felső kép" - -msgid "Prev bottom image" -msgstr "Előző alsó kép" - -msgid "Prev top image" -msgstr "Előző felső kép" - -msgid "Render images on top and bottom of the cube" -msgstr "Képek leképzése a kocka tetejére és aljára" - -msgid "Scale bottom image" -msgstr "Alsó kép nyújtása" - -msgid "Scale image to cover bottom face of cube" -msgstr "Alsó kép nyújtása úgy, hogy lefedje a kocka alsó lapját" - -msgid "Scale image to cover top face of cube" -msgstr "Felső kép nyújtása úgy, hogy lefedje a kocka felső lapját" - -msgid "Scale top image" -msgstr "Felső kép nyújtása" - -msgid "Top image files" -msgstr "Felső képfájlok" - -msgid "Above" -msgstr "Felülre" - -msgid "Auto zoom" -msgstr "Automatikus nagyítás" - -msgid "Auto zoom only on Mouse Rotate" -msgstr "Kizárólag egérrel történő forgatás esetén legyen automatikus nagyítás" - -msgid "Color of the ground (far)." -msgstr "Alapzat színe a távolban." - -msgid "Color of the ground (near)." -msgstr "Alapzat színe a közelben." - -msgid "Compiz cube reflection" -msgstr "Compiz kocka tükröződés" - -msgid "Cube Reflection" -msgstr "Kocka tükröződés" - -msgid "Distance" -msgstr "Távolság" - -msgid "Ground color(far)" -msgstr "Alapzat színe a távolban" - -msgid "Ground color(near)" -msgstr "Alapzat színe a közelben" - -msgid "Intensity" -msgstr "Intenzitás" - -msgid "Jumpy" -msgstr "Ugra-bugra" - -msgid "Jumpy reflection" -msgstr "Ugra-bugra tükröződés" - -msgid "Reflection ground size" -msgstr "Tükröződés mérete az alapzaton" - -msgid "Reflection ground size." -msgstr "Tükröződés mérete az alapzaton." - -msgid "Reflection intensity" -msgstr "Tükröződés intenzitása" - -msgid "Reflection mode" -msgstr "Tükröződés módja" - -msgid "Reflection mode." -msgstr "A tükröződés módja." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Automatikus nagyítás csak egérrel forgatáskor." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Automatikus nagyítás, hogy a kocka a elférjen a képernyőn." - -msgid "Animation used when switching to expo mode" -msgstr "Animáció használata közszemlére váltáskor" - -msgid "Aspect Ratio" -msgstr "Méretarány" - -msgid "Button binding for drag & drop of windows" -msgstr "Gyorsbillentyű a fogd-és-vidd az ablakokat funkcióhoz" - -msgid "Button binding to exit expo" -msgstr "Gyorsbillentyű a közszemléből kilépéshez" - -msgid "Button binding to switch to next viewport in expo" -msgstr "Gyorsbillentyű közszemlében nézetváltáshoz" - -msgid "Curve" -msgstr "Hajlítás" - -msgid "Curve strength" -msgstr "Hajlítás erőssége" - -msgid "Deformation" -msgstr "Alakváltozás" - -msgid "Deformation of the expo wall" -msgstr "Közszemle fal alakváltozása" - -msgid "Distance between viewports" -msgstr "Távolság a munkalapok között" - -msgid "Distance of the expo wall" -msgstr "Közszemle fal távolsága" - -msgid "Double click time" -msgstr "Dupla kattintás ideje" - -msgid "Drag&drop" -msgstr "Fogd és vidd" - -msgid "Duration of the zoomout animation" -msgstr "Nagyítás animáció hossza" - -msgid "Engage wall expo mode button binding" -msgstr "Gomb alkalmazása közszemléhez " - -msgid "Engage wall expo mode edge binding" -msgstr "Képernyőszél érzékenység közszemléhez" - -msgid "Engage wall expo mode key binding" -msgstr "Billentyű alkalmazása közszemléhez" - -msgid "Exit expo" -msgstr "Kilépés közszemléből" - -msgid "Expo" -msgstr "Közszemle" - -msgid "Expo Animation" -msgstr "Közszemle animációja" - -msgid "Expo Plugin" -msgstr "Közszemle bővítmény" - -msgid "Expo button" -msgstr "Közszemle gomb" - -msgid "Expo edge" -msgstr "Közszemle indítóél" - -msgid "Expo key" -msgstr "Közszemle indítógomb" - -msgid "Expo mode aspect ratio" -msgstr "Közszemle mód képaránya" - -msgid "Fade + Zoom" -msgstr "Halványít és nagyít" - -msgid "Generate mipmaps in expo mode" -msgstr "MIP térképek létrehozása a közszemléhez" - -msgid "Hide panels/docks in expo" -msgstr "Panelek elrejtése közszemle módban" - -msgid "Hide panels/docks in expo." -msgstr "Panelek elrejtése közszemle módban." - -msgid "Immediate moves" -msgstr "Azonnali mozgások" - -msgid "Inactive viewport brightness." -msgstr "Inaktív munkalap fényereje." - -msgid "Inactive viewport saturation." -msgstr "Inaktív munkalap színtelítettsége." - -msgid "Mipmaps" -msgstr "MIP térképek" - -msgid "Multi Output Mode" -msgstr "Többkimenetes mód" - -msgid "Next viewport" -msgstr "Következő munkalap" - -msgid "One big wall" -msgstr "Egy nagy fal" - -msgid "One wall per output" -msgstr "Egy nagy fal kimenetenként" - -msgid "Previous viewport" -msgstr "Előző munkalap" - -msgid "Reflection" -msgstr "Tükröződés" - -msgid "Reflection Scale" -msgstr "Tükröződés mérete" - -msgid "Scale factor of the expo wall reflection" -msgstr "Közszemle fal tükröződésének nagyítása" - -msgid "" -"Selects how the expo wall is displayed if multiple output devices are used." -msgstr "" -"Válassza ki hogyan jelenjen meg a közszemle fal több megjelenítő " -"használatakor." - -msgid "" -"Selects if windows movements in expo mode should be immediate - this among " -"other things disables wobbliness" -msgstr "" -"Válassza ki, hogy közszemlében az ablakok mozgatása azonnali legyen - ez más " -"dolgok között bizonytalanságot okozhat." - -msgid "Show a reflection of the viewports on the ground" -msgstr "Mutassa a nézetek tükröződését a talajon" - -msgid "Strength of the deformation in curve mode" -msgstr "Az alakváltozás nagysága hajlított módban" - -msgid "Tilt" -msgstr "Csempe" - -msgid "Timeframe to execute a double click" -msgstr "Idővonal a dupla kattintás végrehajtásához" - -msgid "Viewport distance" -msgstr "Munkalapok távolsága" - -msgid "Vortex" -msgstr "Csavarodás" - -msgid "Zoom time" -msgstr "Nagyítási idő" - -#, fuzzy -msgid "Activate Demanding Attention Window" -msgstr "Megadott ablak aktiválása" - -msgid "Activate Window" -msgstr "Ablak aktiválása" - -msgid "Activate a given window" -msgstr "Megadott ablak aktiválása" - -msgid "Activate next window which has the \"demands attention\" flag set." -msgstr "" - -msgid "Extra WM Actions" -msgstr "További ablakkezelő műveletek" - -msgid "Provides less commonly used WM actions" -msgstr "Néhány kevésbé ismert ablakkezelő műveletet biztosít" - -msgid "Toggle Always-On-Top" -msgstr "Mindig felül" - -msgid "Toggle Fullscreen" -msgstr "Váltás teljes képernyőre" - -msgid "Toggle Redirect" -msgstr "Átirányítás váltása" - -msgid "Toggle Sticky" -msgstr "Ragadósra váltás" - -msgid "Toggle always on top for the active window" -msgstr "Mindig felül váltása az aktív ablakhoz" - -msgid "Toggle window fullscreen" -msgstr "Ablak teljes képernyőre" - -msgid "Toggle window redirect" -msgstr "Ablak átirányítása" - -msgid "Toggle window stickyness" -msgstr "Ablak ragadósságának állítása" - -msgid "Always fit to window on focus track" -msgstr "Mindig alkalmazkodjon az ablakhoz fókuszkövetésnél" - -msgid "" -"Always keep the zoomed area in sync with where the mouse is, and vice versa. " -"Use this if you don't intend to draw a scaled pointer or hide the original " -"pointer. The zoomed area will move as you move your mouse." -msgstr "" -"Mindig maradjon a nagyított terület szinkronban az egér alatti területtel, " -"és visszafelé. Válaszd ezt ha nem akarsz nagyított kurzort látni, vagy " -"rejteni akarod azt. A nagyított terület úgy fog mozogni mint a kurzor." - -msgid "Animation" -msgstr "Animáció" - -msgid "" -"Attempt to keep the zoomed mouse visible by warping it when it is moved " -"outside the zoom area." -msgstr "Maradjon a nagyított kurzor látható ha elhagyja a nagyító területet." - -msgid "Center the mouse" -msgstr "Kurzor középre" - -msgid "Enable focus tracking" -msgstr "Fókuszkövetés engedélyezése" - -msgid "Enable this to get a gradually larger mouse pointer as you zoom in" -msgstr "Engedélyezd, hogy arányosan nagyobb egérmutatót kapj ha közelítesz." - -msgid "" -"Enable this to target the focused window when jumping to a specific zoom " -"level. Disable to target mouse." -msgstr "" -"Engedélyezd, hogy az aktív ablakra ugorj ha beállítasz egy bizonyos " -"nagyítást. Egérkövetés nem lehetséges." - -msgid "Enhanced Zoom Desktop" -msgstr "Kibővített asztal nagyítás" - -msgid "Enhanced zoom functions for the visually impaired and other users" -msgstr "Kibővített nagyítási funkciók elsősorban látássérült emberek számára" - -msgid "Filter Linear" -msgstr "Lineáris szűrő" - -msgid "Fit the window to the zoom level" -msgstr "Ablak kitöltése a nagyítás mértékéhez" - -msgid "" -"Fit the zoomed area to the window when the zoomed area moves as a result of " -"focus tracking." -msgstr "" -"Nagyító terület kitöltése az ablakban amikor a nagyított terület mozog, mint " -"a fókuszkövetés eredménye." - -msgid "" -"Fit the zoomed area to the window when the zoomed area moves as a result of " -"focus tracking. Even when not initially zoomed in." -msgstr "" -"Nagyított terület kiterjesztése az ablakba amikor mozog, mint a " -"fókuszkövetés eredménye. Ha kezdetben nincs közelítve." - -msgid "Fit zoom level to window on focus change" -msgstr "Nagyítás mértékének kiterjesztése az ablakhoz fókusz váltáskor" - -msgid "Fit zoomed area to window" -msgstr "Nagyított terület kiterjesztése az ablakba" - -msgid "Fitting" -msgstr "Kitöltés" - -msgid "Focus Tracking" -msgstr "Fókuszkövetés" - -msgid "Follow Focus Delay" -msgstr "Kövesse a fókusz késleltetését" - -msgid "Hide original mouse pointer" -msgstr "Eredeti egérkurzor elrejtése" - -msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" -msgstr "" -"Eredeti egérkurzor elrejtése amikor az egér nagyítva illetve átméretezve van" - -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Milyen gyakran ellenőrizze a kurzor helyzetét ezredmásodpercben megadva. " -"Állítsa kisebbre, hogy a szaggatott mozgást elkerülje." - -msgid "Mouse Behaviour" -msgstr "Egér viselkedés" - -msgid "Mouse Poll Interval" -msgstr "Egér lekérdezési időköz" - -msgid "Mouse Restrain Margin" -msgstr "Egér korlátozásának távolsága" - -msgid "Mouse panning" -msgstr "Egérkövetés" - -msgid "Move the zoom area when focus changes." -msgstr "Nagyítási terület mozgatása ha a fókusz változik." - -msgid "" -"Move the zoomed area this much whenever you pan the zoomed area with keys." -msgstr "" -"Nagyított terület mozgatása amikor billentyűkkel változtatod a nagyított " -"területet." - -msgid "" -"Only attempt to center newly focused windows if the mouse hasn't moved in " -"this amount of seconds. Use this to avoid jumping when using sloppy focus." -msgstr "" -"Csak akkor állítsa középre az új fókuszban lévő ablakot ha ennyi másodpercig " -"az egér nem mozog. Használd, hogy elkerüld az ugrálást azonnali fókusznál." - -msgid "Pan (move) the zoom area down" -msgstr "Kövesse (mozgassa) a nagyított területet lefelé" - -msgid "Pan (move) the zoom area left" -msgstr "Kövesse (mozgassa) a nagyított területet balra" - -msgid "Pan (move) the zoom area right" -msgstr "Kövesse (mozgassa) a nagyított területet jobbra" - -msgid "Pan (move) the zoom area up" -msgstr "Kövesse (mozgassa) a nagyított területet fölfelé" - -msgid "Pan Factor" -msgstr "Követési lépték" - -msgid "Pan Zoom Down" -msgstr "Nagyítás követése lefelé" - -msgid "Pan Zoom Left" -msgstr "Nagyítás követése balra" - -msgid "Pan Zoom Right" -msgstr "Nagyítás követése jobbra" - -msgid "Pan Zoom Up" -msgstr "Nagyítás követése fölfelé" - -msgid "Pan the zoom area when the mouse cursor moves outside the visible area." -msgstr "Nagyítási terület követése ha az egér elhagyja a látható területet." - -msgid "Panning" -msgstr "Követés" - -msgid "Puts the mouse in the middle of the screen (Regardless of zoom level)" -msgstr "" -"Egérmutató képernyő közepére helyezése (nagyítási mértékre való tekintet " -"nélkül)" - -msgid "Resize the window so it matches the current zoom level." -msgstr "Ablak újraméretezése így alkalmazkodik a nagyítási mértékhez." - -msgid "Restrain the mouse to the zoom area" -msgstr "Egérmutató korlátozása a nagyítási területre" - -msgid "Scale the mouse pointer" -msgstr "Egérmutató méretezése" - -msgid "Specific Zoom" -msgstr "Megadott nagyítás" - -msgid "Specific zoom factor 1" -msgstr "Megadott 1. nagyítási arány" - -msgid "Specific zoom factor 2" -msgstr "Megadott 2. nagyítási arány" - -msgid "Specific zoom factor 3" -msgstr "Megadott 3. nagyítási arány" - -msgid "Speed" -msgstr "Sebesség" - -msgid "Sync Mouse" -msgstr "Egér szinkronizálása" - -msgid "Target Focused Window on Specific level" -msgstr "Megadott nagyítási mérték alkalmazása aktív ablakra" - -msgid "The size of the margin to add when attempting to restrain the mouse." -msgstr "Margó szélessége amikor megpróbálja korlátozni az egeret." - -msgid "Timestep" -msgstr "Időköz" - -msgid "Toggle zoom area lock" -msgstr "Nagyítási terület zárolása" - -msgid "Toggles a lock on the zoom area so it doesn't change on various events" -msgstr "Nagyítási terület zárolása, hogy ne tudjon változni eseményeknél" - -msgid "Use linear filter when zoomed in" -msgstr "Lineáris szűrő használata nagyításnál" - -msgid "Zoom Area Movement" -msgstr "Nagyított terület mozgása" - -msgid "Zoom In" -msgstr "Nagyítás" - -msgid "Zoom In/Out" -msgstr "Nagyítás/Kicsinyítés" - -msgid "Zoom Out" -msgstr "Kicsinyítés" - -msgid "Zoom Specific Level 1" -msgstr "Megadott 1. nagyítási arány" - -msgid "Zoom Specific Level 2" -msgstr "Megadott 2. nagyítási arány" - -msgid "Zoom Specific Level 3" -msgstr "Megadott 3. nagyítási arány" - -msgid "Zoom Speed" -msgstr "Nagyítás sebessége" - -msgid "Zoom Timestep" -msgstr "Nagyítás időköz" - -msgid "Zoom factor" -msgstr "Nagyítási arány" - -msgid "Zoom in/out by this factor. Higher value means quicker zooming." -msgstr "" -"Nagyítás/Kicsinyítés mértéke. Magasabb érték gyorsabb nagyítást eredményez." - -msgid "Zoom level to go to when triggering hotkey 1" -msgstr "Nagyítás mértéke az első gyorsbillentyű hatására" - -msgid "Zoom level to go to when triggering hotkey 2" -msgstr "Nagyítás mértéke az második gyorsbillentyű hatására" - -msgid "Zoom level to go to when triggering hotkey 3" -msgstr "Nagyítás mértéke az harmadik gyorsbillentyű hatására" - -msgid "Zoom to the specific zoom level 1" -msgstr "Nagyítás a megadott első nagyítási szint szerint" - -msgid "Zoom to the specific zoom level 2" -msgstr "Nagyítás a megadott második nagyítási szint szerint" - -msgid "Zoom to the specific zoom level 3" -msgstr "Nagyítás a megadott harmadik nagyítási szint szerint" - -msgid "" -"Zooms in/out so the focused window is zoomed to the maximum while still " -"being fully visible." -msgstr "" -"Nagyítás/Kicsinyítés, hogy az aktív ablak maximálisan nagyítva legyen, de " -"teljesen látható maradjon." - -msgid "Easily access your desktop" -msgstr "Asztal könnyű kezelése" - -msgid "Fade Time" -msgstr "Elhalványítási idő" - -msgid "Fade time (in ms)" -msgstr "Elhalványítás ideje (ezredmásodpercben megadva)" - -msgid "Fade to Desktop" -msgstr "Asztal megjelenítése elhalványítva" - -msgid "Windows that should be faded to desktop" -msgstr "Ablakok asztalra halványítva" - -msgid "Alter window opacity based on color." -msgstr "Ablak szín alapú láthatósága" - -msgid "Color Opacity" -msgstr "Szín láthatósága" - -msgid "Toggle Window Fake ARGB" -msgstr "Ablak ál ARGB alapján" - -msgid "Toggle window fake ARGB." -msgstr "Ablak ál ARGB alapján." - -msgid "Background brightness" -msgstr "Háttér fényereje" - -msgid "Background brightness during paint" -msgstr "Háttér fényereje rajzolás alatt" - -msgid "Clear" -msgstr "Törlés" - -msgid "Clear (button)" -msgstr "Törlés (gomb)" - -msgid "Clear (key)" -msgstr "Törlés (billentyű)" - -msgid "Initiate (button)" -msgstr "Indítás (gomb)" - -msgid "Initiate (key)" -msgstr "Indítás (billentyű)" - -msgid "Initiate fire drawing" -msgstr "Tűzrajzolás indítása" - -msgid "Maximum number of active particles" -msgstr "Aktív lángnyelvek maximális száma" - -msgid "Number of particles" -msgstr "Lángnyelvek száma" - -msgid "Paint fire on the screen" -msgstr "Tűz rajzolása képernyőre" - -msgid "Paint fire or other particles on the screen" -msgstr "Tűz vagy más részecskék rajzolása a képernyőre" - -msgid "Cube Gears" -msgstr "Kocka fogaskerekek" - -msgid "Render gears inside of the transparent cube" -msgstr "Fogaskerekeket jelenít meg az átlátszó kockában" - -msgid "Animation Options" -msgstr "Animációs beállítások" - -msgid "Autotab windows on creation" -msgstr "Ablakok automatikus lapkezelése létrehozáskor" - -msgid "Autotab windows with themselves on window creation" -msgstr "Ablakok automatikus lapkezelése létrehozáskor" - -msgid "Border Radius" -msgstr "Határ sugara" - -msgid "Border Width" -msgstr "Határ vastagsága" - -msgid "Border color of the tab bar" -msgstr "Lapok eszköztár határának színe" - -msgid "Brightness of selected windows" -msgstr "A kijelölt ablakok fényereje" - -msgid "Change Tab Left" -msgstr "Váltás a balra oldali lapra" - -msgid "Change Tab Right" -msgstr "Váltás a jobb oldali lapra" - -msgid "Change tab animation duration" -msgstr "Lapok animációjának hossza" - -msgid "Close Group" -msgstr "Csoport bezárása" - -msgid "Create mipmaps for thumbnails" -msgstr "Előnézetekhez MIP térkép használata" - -msgid "Create mipmaps for thumbnails in the tab bar" -msgstr "Előnézetekhez MIP térkép készítése a lapokon" - -msgid "" -"Distance (in pixels) between the tab bar and the dragged slot for applying " -"the spring model. If the distance is larger than that value, the model isn't " -"applied." -msgstr "" -"Távolság (képpontban) a Lapok eszköztár és az áthúzott elem között a " -"rugómodell alkalmazásához. Amennyiben a távolság nagyobb az itt megadott " -"értéknél a modell nem kerül alkalmazásra." - -msgid "Duration (in s) of the animation that happens when changing tabs" -msgstr "Lapváltás animációjának hossza (másodpercben megadva)" - -msgid "Duration (in s) of the tab bar fading animation when showing/hiding it" -msgstr "Lapátmenet animációjának hossza (másodpercben megadva)" - -msgid "Duration (in s) of the tab bar pulse animation" -msgstr "Lapváltás - villogás animáció hossza (másodpercben megadva)" - -msgid "Duration (in s) of the tab bar reflex animation" -msgstr "Lapok \"reflex\" animációjának hossza (másodpercben megadva)" - -msgid "Duration (in s) of the text fading animation when showing/hiding it" -msgstr "Szöveg átmenet - animációjának hossza (másodpercben megadva)" - -msgid "Enable Glow" -msgstr "Ragyogás engedélyezése" - -msgid "Enable grouped window glowing" -msgstr "Csoportosított ablakok ragyogásának engedélyezése" - -msgid "Fade time for tab bar animations" -msgstr "Elhalványítás ideje Lapok eszköztár animációknál " - -msgid "Fade time for text animations" -msgstr "Elhalványítás-animáció hossza szövegnél" - -msgid "Fill color of the selection rectangle" -msgstr "A kiválasztó téglalap kitöltőszíne" - -msgid "Fill color of the tab bar" -msgstr "Lapok kitöltőszíne" - -msgid "Font Color" -msgstr "Betűszín" - -msgid "Font Size" -msgstr "Betűméret" - -msgid "Glass" -msgstr "Üveg" - -msgid "Glow" -msgstr "Ragyogás" - -msgid "Glow Color Change" -msgstr "Ragyogás színváltás" - -msgid "Glow Size" -msgstr "Ragyogás méret" - -msgid "Glow Type" -msgstr "Ragyogás típus" - -msgid "Glow ring" -msgstr "Ragyogás széle" - -msgid "Gradient" -msgstr "Átmenetes" - -msgid "Group Window Match" -msgstr "Ablakcsoportok egyezése" - -msgid "Group Windows" -msgstr "Ablakok csoportosítása" - -msgid "Group and Tab Windows" -msgstr "Ablakok csoportosítás és elrendezése" - -msgid "Group the windows after selection" -msgstr "Ablakok csoportosítása kijelölés után" - -msgid "Grouping" -msgstr "Csoportosítás" - -msgid "Hover time for slot dragging" -msgstr "Áthúzás követési idő" - -msgid "" -"If one window in the group is (un)maximized, all other group windows are (un)" -"maximized as well." -msgstr "" -"Ha a csoport egyik ablaka (Max/min)imalizálva van akkor a többi ablak is " -"(Max/min)imalizálva legyen." - -msgid "" -"If one window in the group is (un)minimized, all other group windows are (un)" -"minimized as well." -msgstr "" -"Ha a csoport egyik ablaka (Max/min)imalizálva van akkor a többi ablak is " -"(Max/min)imalizálva legyen." - -msgid "" -"If one window in the group is (un)shaded, all other group windows are (un)" -"shaded as well." -msgstr "" -"Ha a csoport egyik ablaka (Max/min)imalizálva van akkor a többi ablak is " -"(Max/min)imalizálva legyen." - -msgid "" -"If one window in the group is activated, all other group windows are raised " -"as well." -msgstr "Ha a csoport egyik ablaka aktiválva van akkor mindegyik legyen aktív." - -msgid "" -"If one window in the group is moved, all other group windows are moved as " -"well." -msgstr "" -"Ha a csoport egyik ablaka mozgatva van akkor mindegyik legyen mozgatva." - -msgid "" -"If one window in the group is resized, all other group windows are resized " -"as well." -msgstr "" -"Ha a csoport egyik ablaka át lett méretezve akkor mindegyik legyen " -"átméretezve." - -msgid "If there is only 1 window left in the group, it will be ungrouped." -msgstr "Ha a csoportban egy ablak maradt akkor a csoport legyen szétbontva." - -msgid "" -"If you don't like the current glow color, you can change it with this key." -msgstr "" -"Ha a ragyogásnak most nem tetszik a színe akkor ezzel a billentyűvel " -"megváltoztathatod azt" - -msgid "" -"If you have selected some windows, this automatically groups them (Doesn't " -"work with selection mode 'Normal')." -msgstr "" -"Ha kijelöltél néhány ablakot, automatikusan csoportosítsa őket (Nem működik " -"'Normál' kijelölési módnál)." - -msgid "Ignore Group" -msgstr "Csoport kihagyása" - -msgid "Key bindings" -msgstr "Billentyűk" - -msgid "Line Color" -msgstr "Vonal színe" - -msgid "Line color of the selection rectangle" -msgstr "A kiválasztott téglalap körvonalának színe" - -msgid "Maximize/unmaximize with group" -msgstr "Maximalizálás/Előrző méret csoportokkal" - -msgid "Metal" -msgstr "Fémes" - -msgid "Minimize with group" -msgstr "Tálcára helyezés csoporttal" - -msgid "" -"Mouse pointer movement speed limit (in pixels/second) for the spring model" -msgstr "Egérmutató sebességkorlátozása (képpont/másodperc) a rugó modellnél" - -msgid "Move every window in the group" -msgstr "Minden ablak mozgatása a csoportban" - -msgid "Murrina" -msgstr "Murrina" - -msgid "Opacity of selected windows" -msgstr "Kijelölt ablakok elhalványítása" - -msgid "Play animations on the tab bar e.g. on fade in." -msgstr "Animáció lejátszása a lapoknál például: elhalványításnál" - -msgid "Precision" -msgstr "Pontosság" - -msgid "" -"Precision of the selection (percentage of the visible window area which must " -"be selected for the selection to be recognized)." -msgstr "" -"Kijelölés pontossága (a látható ablakterület százalékában megadva, amelyet " -"ki kell jelölni ahhoz, hogy az ablak kiválasztásra kerüljön)." - -msgid "Raise every window in the group" -msgstr "Minden ablak emelése a csoportban" - -msgid "Rectangular glow" -msgstr "Négyszög alakú ragyogás" - -msgid "Remove Group Window" -msgstr "Csoport ablak eltávolítása" - -msgid "Remove window from group after dropping it outside a tab bar" -msgstr "" -"Ablak eltávolítása a csoportból miután kidobtuk azt a Lapok eszköztárról" - -msgid "Resize every window in the group" -msgstr "Csoport minden ablakának átméretezése" - -msgid "Saturation of selected windows" -msgstr "Kijelölt ablakok színtelítettsége" - -msgid "Select" -msgstr "Kiválasztás" - -msgid "Select Single Window" -msgstr "Ablak kiválasztása" - -msgid "Selection" -msgstr "Kiválasztás" - -msgid "Selection Color" -msgstr "Kiválasztás színe" - -msgid "Shade with group" -msgstr "Felgördítés a csoporttal" - -msgid "Simple" -msgstr "Egyszerű" - -msgid "Slot Drag Spring K" -msgstr "Áthúzás rúgóállandója (K)" - -msgid "Slot Dragging" -msgstr "Áthúzás" - -msgid "Slot drag friction" -msgstr "Áthúzás súrlódása" - -msgid "Space" -msgstr "Helyköz" - -msgid "Speed limit for spring model" -msgstr "Sebességkorlátozás a rugómodellhez" - -msgid "Spring Konstant used for slot dragging" -msgstr "Áthúzás rugóállandója (K)" - -msgid "Spring friction for slot dragging" -msgstr "Rugó súrlódása áthúzásnál" - -msgid "Tab Bar Show Delay" -msgstr "Lapok eszköztár megjelenítésének késleltetése" - -msgid "Tab Base Color" -msgstr "Lap alapszíne" - -msgid "Tab Border Color" -msgstr "Lap keretszíne" - -msgid "Tab Group" -msgstr "Lapcsoport" - -msgid "Tab Highlight Color" -msgstr "Lapok eszköztár kijelölő színe" - -msgid "Tab Style" -msgstr "Lapok stílusa" - -msgid "Tab bar visibility time after tab change" -msgstr "Lapok eszköztár megjelenítési ideje lapváltás után" - -msgid "Tabbing" -msgstr "Lapozás" - -msgid "Tabbing Speed" -msgstr "Lapozási sebesség" - -msgid "Tabbing Timestep" -msgstr "Lapozási időköz" - -msgid "Tabbing speed" -msgstr "Lapozási sebesség" - -msgid "Tabbing timestep" -msgstr "Lapozási időköz" - -msgid "The color of the window title in the tab bar" -msgstr "Az ablak címsorának színe a Lapok eszköztáron" - -msgid "The key for closing all windows in the group." -msgstr "Billentyűzetkombináció a csoport összes ablakának bezárásához." - -msgid "The key for grouping windows." -msgstr "Billentyűzetkombináció az ablakok csoportosításához." - -msgid "" -"The key for ignoring the group. If this key is pressed, you can do actions " -"for a single window in the group only." -msgstr "" -"Billentyűzetkombináció a csoportban végzendő műveletekhez. A " -"billentyűzetkombináció alkalmazásával a műveletek a csak megadott ablakra " -"lesznek érvényesek a kizárólag a csoporton belül." - -msgid "The key for removing the selected window from its group." -msgstr "" -"Billentyűzetkombináció a kiválasztott ablak csoportból történő " -"eltávolításához." - -msgid "The key for selecting the current window." -msgstr "Billentyűzetkombináció az aktuális ablak kiválasztásához." - -msgid "The key for starting selecting windows." -msgstr "Billentyűzetkombináció az ablakkiválasztás elkezdéséhez." - -msgid "The key for switching to the tab left of the current one." -msgstr "Billentyűzetkombináció a balra oldali lapra történő váltáshoz." - -msgid "The key for switching to the tab right of the current one." -msgstr "Billentyűzetkombináció a jobb oldali lapra történő váltáshoz." - -msgid "The key for toggling the tab mode for the current group." -msgstr "Billentyűzetkombináció a lapmód váltásához az aktuális csoportban." - -msgid "The key for ungrouping the current group." -msgstr "Billentyűzetkombináció az aktuális csoport szétbontásához." - -msgid "The radius for the tab bar edges" -msgstr "Elhalványítás ideje Lapok eszköztár animációinál " - -msgid "The size of the grouped window glow" -msgstr "Csoportosított ablakok ragyogásának mérete" - -msgid "The size of the window thumbs in the task bar" -msgstr "A tálcán megjelenő előnézeti ablak mérete" - -msgid "The size of the window title font in the tab bar" -msgstr "A lapok eszköztáron megjelenő címsor mérete" - -msgid "The space between the thumbs" -msgstr "Előnézetek közti távolság" - -msgid "The style of the tab bar" -msgstr "Lapok eszköztár stílusa" - -msgid "The type of the glow" -msgstr "Ragyogás típusa" - -msgid "The width of the tab bar outline" -msgstr "Lapok eszköztár vonalvastagsága" - -msgid "Thumb Size" -msgstr "Előnézet mérete" - -msgid "Time (in s) before the tab bar is shown after hovering the title bar" -msgstr "" -"Lapok eszköztár megjelenítésének késleltetése a címsor kijelölése után " -"(másodpercben megadva)" - -msgid "Time (in s) the tab bar is visibly after a tab change" -msgstr "" -"Lapváltás után a Lapok eszköztár megjelenítési ideje (másodpercben megadva)" - -msgid "Time for tab bar pulse animation" -msgstr "A lapváltás - villogás animáció hossza (másodpercben)" - -msgid "Time for tab bar reflex animation" -msgstr "Lapok eszköztár Reflex animációjának hossza (másodpercben)" - -msgid "" -"Timespan (in s) after which a grouped window is activated if a window of " -"another group is dragged over it" -msgstr "" -"Csoport aktiválásának késleltetése (másodpercben megadva) miután egy másik " -"csoportot ejtettek rá" - -msgid "Ungroup Windows" -msgstr "Ablakcsoport-bontás" - -msgid "Ungroup the windows if only one window is left" -msgstr "Csoport szétbontása, ha csak egy tagja van" - -msgid "Untab the group when closing the top tab window instead of changing tab" -msgstr "" -"Csoport szétbontása amikor a főlap bezárásra kerül ahelyett, hogy lapváltás " -"történne" - -msgid "Untab when closing top tab" -msgstr "Szétbontás a főlap bezárásakor" - -msgid "Use tab bar animations" -msgstr "Lapok eszköztár animációjának megjelenítése" - -msgid "Window Title Font" -msgstr "Ablak címsorának betűtípusa" - -msgid "Windows that should be allowed to be grouped" -msgstr "Csoportosítható ablakok" - -msgid "With this plugin you can group and tab windows" -msgstr "Ezzel a bővítménnyel csoportosíthatja és lapokra szervezheti ablakait" - -msgid "Y distance for spring model" -msgstr "Függőleges távolság a rugómodellhez" - -msgid "Compression Quality" -msgstr "Tömörítés minősége" - -msgid "JPEG" -msgstr "JPEG" - -msgid "JPEG image format plugin" -msgstr "JPEG képformátum bővítmény" - -msgid "Quality of compression when saving JPEG images" -msgstr "Tömörítés minősége JPEG képfájl mentésekor" - -msgid "Background/Window brightness." -msgstr "Háttér és ablak fényereje." - -msgid "Background/Window saturation." -msgstr "Háttér és ablak telítettsége." - -msgid "Fade In/Out Time" -msgstr "Áttűnési idő" - -msgid "Fade In/Out Time." -msgstr "Áttűnési idő." - -msgid "Login" -msgstr "Bejelentkezés" - -msgid "Login Window Match" -msgstr "Egyeztetés a bejelentkezési ablakkal" - -msgid "Login Window match" -msgstr "Egyeztetés a bejelentkezési ablakkal" - -msgid "Login/Logout" -msgstr "Bejelentkezés és kijelentkezés" - -msgid "Login/Logout effect" -msgstr "Bejelentkezési és kijelentkezési effektus" - -msgid "Logout" -msgstr "Kijelentkezés" - -msgid "Logout Window Match" -msgstr "Egyeztetés a kijelentkezési ablakkal" - -msgid "Logout Window match" -msgstr "Egyeztetés a kijelentkezési ablakkal" - -msgid "Window opacity." -msgstr "Ablak átlátszatlanság." - -msgid "Border color" -msgstr "Keretszín" - -msgid "Border width" -msgstr "Keret vastagsága" - -msgid "Border widtht." -msgstr "A keret vastagsága." - -msgid "Box height." -msgstr "Terület magassága" - -msgid "Box width." -msgstr "Terület szélessége" - -msgid "Clip mask" -msgstr "Kivágás maszkja" - -msgid "Clip mask." -msgstr "Kivágás maszkja." - -msgid "Fisheye" -msgstr "Halszem" - -msgid "Height" -msgstr "Magasság" - -msgid "Image overlay" -msgstr "Átfedő kép" - -msgid "Keep fully on screen" -msgstr "Képernyőn tartás" - -msgid "Keep fully on screen." -msgstr "Az ablak teljesen a képernyőn marad." - -msgid "Magnifier" -msgstr "Nagyító" - -msgid "Magnifier box" -msgstr "Nagyított terület" - -msgid "Magnifier image" -msgstr "Nagyított kép" - -msgid "Magnifier image." -msgstr "Nagyított kép" - -msgid "Mode" -msgstr "Üzemmód" - -msgid "Mode." -msgstr "Üzemmód." - -msgid "Radius" -msgstr "Sugár" - -msgid "Radius of the magnification area." -msgstr "A nagyított terület sugara." - -msgid "Width" -msgstr "Szélesség" - -msgid "X offset of the cursor" -msgstr "Kurzor vízszintes eltolása" - -msgid "X offset of the cursor." -msgstr "Kurzor vízszintes eltolása." - -msgid "Y offset of the cursor" -msgstr "Kurzor függőleges eltolása" - -msgid "Y offset of the cursor." -msgstr "Kurzor függőleges eltolása." - -msgid "Zoom factor for keyboard initiated magnifier." -msgstr "Billentyűzetről indított nagyító nagyítása." - -msgid "Ignore already overlapping windows in the calculations" -msgstr "Átfedett ablakok figyelmen kívül hagyása" - -msgid "Ignore sticky windows in the calculations" -msgstr "Ragadós ablakok figyelmen kívül hagyása" - -msgid "Maximumize" -msgstr "Maximalizálás" - -msgid "Maximumizes windows (resize them to fit the available screenspace)." -msgstr "Maximum ablak méret (a képernyő szabad helyének kitöltésével)." - -msgid "" -"Treat sticky windows as non-existant when calculating space to use for the " -"maximumize window." -msgstr "Maximalizált ablak helyét ne csökkentsék a ragadós ablakok." - -msgid "" -"Treat windows that are already overlapping with the current window as non-" -"existant when calculating space to use for the maximumize window." -msgstr "Maximalizált ablak helyét ne csökkentsék az átfedett ablakok." - -msgid "" -"Trigger a resize of the window currently focused so it fits as much of the " -"available screenspae as possible." -msgstr "Fokuszált ablak átméretezése a rendelkezésre álló hely kiöltésével." - -msgid "Trigger maximumize" -msgstr "Maximalizálás indítása" - -msgid "Accumulation buffer" -msgstr "Képkockatár" - -msgid "Activate" -msgstr "Aktiválás" - -msgid "Execute Motion Blur if the screen is transformed." -msgstr "Bemozdítás effektus alkalmazása az átalakított képen." - -msgid "Motion Blur Strength" -msgstr "Bemozdítás erőssége" - -msgid "Motion Blur mode" -msgstr "Bemozdítás" - -msgid "Motion Blur on Transformed Screen" -msgstr "Bemozdítás az Átalakított képen" - -msgid "Motion Blur render mode." -msgstr "Bemozdítás leképzési mód." - -msgid "Motion Blur strength." -msgstr "A Bemozdítás effektus erőssége." - -msgid "Motion blur" -msgstr "Bemozdítás" - -msgid "Motion blur effect" -msgstr "Bemozdítás effektus" - -msgid "Texture Copy" -msgstr "Textúra másolás" - -msgid "Toggle Motion Blur" -msgstr "Bemozdítás kapcsoló" - -msgid "Toggle motion Blur effect." -msgstr "Bemozdítás effektus kapcsolása." - -msgid "Visibility/Performance" -msgstr "Látvány/Teljesítmény" - -msgid "Action" -msgstr "Művelet" - -msgid "Action that is to be invoked." -msgstr "Művelet, amit el kell végezni." - -msgid "Assign mousegestures to any existing action" -msgstr "Rendeljen hozzá egérmozdulat bármelyik elérhető művelethez" - -msgid "Detect Diagonal Movements" -msgstr "Átlós mozgások érzékelése" - -msgid "Gesture" -msgstr "Egérmozdulat" - -msgid "Gesture assignment" -msgstr "Egérmozdulat hozzárendelés" - -msgid "Gestures" -msgstr "Egérmozdulatok" - -msgid "" -"If this option is selected, diagonal movements are detected, which may lead " -"to a decreased detection accuracy." -msgstr "" -"Ha ez a lehetőség kiválasztásra kerül, akkor az átlós mozgások érzékelésével " -"a érzékelés pontossága csökkenhet." - -msgid "Mouse gesture to assign an action to." -msgstr "Művelethez hozzárendelendő egérmozdulat." - -msgid "Mousegestures" -msgstr "Egérmozdulatok" - -msgid "Plugin" -msgstr "Bővítmény" - -msgid "Plugin the action belongs to." -msgstr "Bővítményhez tartozó műveletek." - -msgid "Start gesture" -msgstr "Mozdulat indítása" - -msgid "Misc" -msgstr "Egyebek" - -msgid "Mouse position polling" -msgstr "Egérpozíció lekérdezése" - -msgid "Updates the mouse pointer position from the xserver" -msgstr "Az egérpozíció lekérdezése az X kiszolgálótól." - -msgid "Begin Gesture" -msgstr "Mozdulat kezdete" - -msgid "Begin Mouse Gesture" -msgstr "Egérmozdulat kezdete" - -msgid "Mouse switch" -msgstr "Egérváltó" - -msgid "Switch viewport in response to mouse gesture" -msgstr "Munkalap váltása egérmozdulattal" - -msgid "Also negate window decorations, not only the window contents." -msgstr "" - -msgid "Exclude Windows" -msgstr "Kizárt ablakok" - -msgid "Neg Windows" -msgstr "Inverz ablakok" - -#, fuzzy -msgid "Negate Decorations" -msgstr "Ablakdíszítés tükröződése" - -msgid "Negative" -msgstr "Inverz" - -msgid "Toggle Screen Negative" -msgstr "Képernyő inverzbe váltása" - -msgid "Toggle Window Negative" -msgstr "Képernyő inverzbe váltása" - -msgid "Toggle active window negative" -msgstr "Aktív ablak inverzbe váltása" - -msgid "Toggle screen negative" -msgstr "Képernyő inverzbe váltása" - -msgid "Used to set a window or screen negative" -msgstr "Az ablak vagy a képernyő inverzbe váltására szolgál" - -msgid "Windows to be negative by default" -msgstr "Alapértelmezés szerint inverz ablakok" - -msgid "Windows to exclude from negating" -msgstr "Ezek az ablakok ne jelenjenek meg inverzben" - -msgid "Debug" -msgstr "Hibakeresés" - -msgid "Display errors and other messages using libnotify." -msgstr "" -"Hibaüzenetek és egyéb információk megjelenítése a libnotify könyvtár " -"segítségével." - -msgid "Error" -msgstr "Hiba" - -msgid "Error Notifications" -msgstr "Értesítés hibáról" - -msgid "Fatal" -msgstr "Végzetes" - -msgid "Hide Timeout" -msgstr "Elrejtési idő" - -msgid "Info" -msgstr "Információ" - -msgid "Maximum Log Level" -msgstr "Maximális naplózási szint" - -msgid "The maximum log level to display" -msgstr "Maximális naplózási szint kerüljön megjelenítésre" - -msgid "" -"Timeout (in seconds) before hiding the notification, set to -1 for system " -"default and 0 for indefinite" -msgstr "" -"Időköz (másodpercben megadva), amíg az értesítések látszanak. Az rendszer " -"alapértelmezett értékének használatához -1 értéket adjon meg, " -"meghatározatlan értékhez pedig 0 értéket adjon meg." - -msgid "Warning" -msgstr "Figyelmeztetés" - -msgid "Active Opacity" -msgstr "Aktív átlátszatlanság" - -msgid "" -"Bypass delay when Opacify is reducing the opacity on one or more windows " -"already." -msgstr "" -"Késleltetés elhagyása, amikor az átlátszatlanság már csökken egy vagy több " -"ablak esetében." - -msgid "Bypass delay when the new active window is the focused window." -msgstr "Késleltetés elhagyása, amikor az új aktív ablak már fókuszban van." - -msgid "Delay until Opacification" -msgstr "Késleltetés átlátszatlanság változtatásakor" - -msgid "" -"Do not wait if the window we are hovering is the focused window. This allows " -"us to instantly see the focused window. You probably want to disable this if " -"you are not using 'Click to Focus'." -msgstr "" -"Ne várjon, ha a követendő ablak már fókuszban van. Ezzel a lehetőséggel a " -"fókuszált ablak azonnal láthatóvá válik. Kattintáskor történő fókuszálás " -"mellőzése esetén érdemes ezt a szolgáltatást kikapcsolni." - -msgid "Make windows easily visible by hovering the mouse over them" -msgstr "Ablakok láthatóvá tétele az egérmutató ráhúzásával" - -msgid "Only increase opacity if a window is blocking" -msgstr "Átlátszatlanság növelése blokkolt ablakoknál" - -msgid "" -"Only increase the opacity on the targeted window if it has one or more " -"windows blocking it from view." -msgstr "" -"Csak akkor növekedjen meg az ablak átlátszatlansága, ha egy vagy több ablak " -"blokkolja a láthatóságát." - -msgid "Opacify" -msgstr "Átlátszatlanság" - -msgid "Opacity Levels" -msgstr "Átlátszatlansági szintek" - -msgid "Passive Opacity" -msgstr "Passzív átlátszatlanság" - -msgid "Reset opacity to original values when toggling" -msgstr "Átlátszatlanság kapcsolásánál az eredeti értékének alkalmazása" - -msgid "" -"Reset the opacity of all windows modified by opacify when toggling Opacify " -"with the defined key-combination." -msgstr "" -"Az átlátszatlanság visszaállítása az eredeti értékekre az összes ablaknál, " -"amelynél az átlátszatlanság a megadott billentyűzetkombinációval át lett " -"kapcsolva." - -msgid "" -"The delay (in ms) before Opacify changes opacity after the active window has " -"changed." -msgstr "" -"Aktív ablak váltása utáni késleltetés (másodpercben megadva), mielőtt az " -"átlátszatlanság megváltozik." - -msgid "" -"The maximum opacity percentage a window blocking the current targeted window " -"can have. A blocking window will have either this opacity or the preset " -"opacity, whichever is lower." -msgstr "" -"Az aktuális célablakot blokkoló ablak maximális átlátszatlansága százalékban " -"megadva. A Blokkoló ablak átlátszatlansága vagy az itt megadott érték, vagy " -"az előre beállított átlátszatlanság érték közül az alacsonyabb érték." - -msgid "" -"The minimum opacity percentage to ensure a targeted window has. A target " -"window will have either this opacity or the preset opacity, whichever is " -"higher." -msgstr "" -"Az aktuális célablak minimális átlátszatlansága százalékban megadva. A " -"célablak átlátszatlansága vagy az itt megadott érték, vagy az előre " -"beállított átlátszatlanság érték közül az magasabb érték." - -msgid "" -"This enables you to let Opacify instantly opacify new windows when you're " -"already making one or more windows invisible. Makes for faster behavior " -"while looking through layers of hidden windows." -msgstr "" -"Ezzel az opcióval az új ablakok azonnal átlátszatlanok lesznek, amikor már " -"egy vagy több ablakot láthatatlanná tett. Ez a viselkedés gyorsabb, ha az " -"elrejtett ablakok között kell keresni." - -msgid "Toggle Opacify" -msgstr "Átlátszatlanság kapcsoló" - -msgid "Toggle Opacify on by default" -msgstr "Átlátszatlanság bekapcsolása alapértelmezésként" - -msgid "" -"Use this to enable/disable Opacify on the fly. Previously opacified windows " -"will not be reset once you disable it like this." -msgstr "" -"Ezzel az opcióval az átlátszatlanság azonnal be- és kikapcsolható. Előzőleg " -"átlátszatlanná tett ablakokat nem kell visszaállítani, ha ezzel a módszerrel " -"tiltja le őket." - -msgid "Windows that should be opacified." -msgstr "Átlátszatlan ablaktípusok." - -msgid "" -"With this enabled, opacify will be on when you load Opacify, which is " -"usually when you start Compiz." -msgstr "" -"Ezzel az opcióval az átlátszatlanság alkalmazása az Átlátszatlanság " -"bővítmény indításakor történik meg. Ez rendszerint a Compiz indításakor " -"esedékes." - -msgid "Animation speed" -msgstr "Animáció sebessége" - -msgid "Animation timestep" -msgstr "Animációs időköz" - -msgid "Avoid Offscreen" -msgstr "Csak a képernyőn" - -msgid "Avoids putting window borders offscreen" -msgstr "" -"Az opció bekapcsolásával meggátolható, hogy az ablak a képernyőn kívülre " -"kerüljön." - -msgid "Move window arbitrarily by passing x, y and type." -msgstr "Tetszőleges ablakmozgatás a koordináták és a típus megadásával." - -msgid "Move window to a certain viewport" -msgstr "Ablak áthelyezése a megadott munkalapra" - -msgid "Move window to the bottom edge" -msgstr "Ablak áthelyezése alulra" - -msgid "Move window to the bottom left corner" -msgstr "Ablak áthelyezése a bal alsó sarokba" - -msgid "Move window to the bottom right corner" -msgstr "Ablak áthelyezése a jobb alsó sarokba" - -msgid "Move window to the center" -msgstr "Ablak áthelyezése középre" - -msgid "Move window to the last position" -msgstr "Ablak áthelyezése az előző helyzetbe" - -msgid "Move window to the left edge" -msgstr "Ablak áthelyezése a bal oldalra" - -msgid "Move window to the pointer position" -msgstr "Ablak áthelyezése a egérmutatóhoz" - -msgid "Move window to the right edge" -msgstr "Ablak áthelyezése a jobb oldalra" - -msgid "Move window to the top edge" -msgstr "Ablak áthelyezése a felülre" - -msgid "Move window to the top left corner" -msgstr "Ablak áthelyezése a bal felső sarokba" - -msgid "Move window to the top right corner" -msgstr "Ablak áthelyezése a jobb felső sarokba" - -msgid "Move window to the viewport on the bottom" -msgstr "Ablak áthelyezése az alsó munkalapra" - -msgid "Move window to the viewport on the left" -msgstr "Ablak áthelyezése a bal oldali munkalapra" - -msgid "Move window to the viewport on the right" -msgstr "Ablak áthelyezése a jobb oldali munkalapra" - -msgid "Move window to the viewport on the top" -msgstr "Ablak áthelyezése a felső munkalapra" - -msgid "Move window to viewport 1" -msgstr "Áthelyezés az 1. munkalapra" - -msgid "Move window to viewport 10" -msgstr "Áthelyezés a 10. munkalapra" - -msgid "Move window to viewport 11" -msgstr "Áthelyezés a 11. munkalapra" - -msgid "Move window to viewport 12" -msgstr "Áthelyezés a 12. munkalapra" - -msgid "Move window to viewport 2" -msgstr "Áthelyezés a 2. munkalapra" - -msgid "Move window to viewport 3" -msgstr "Áthelyezés a 3. munkalapra" - -msgid "Move window to viewport 4" -msgstr "Áthelyezés a 4. munkalapra" - -msgid "Move window to viewport 5" -msgstr "Áthelyezés az 5. munkalapra" - -msgid "Move window to viewport 6" -msgstr "Áthelyezés a 6. munkalapra" - -msgid "Move window to viewport 7" -msgstr "Áthelyezés a 7. munkalapra" - -msgid "Move window to viewport 8" -msgstr "Áthelyezés a 8. munkalapra" - -msgid "Move window to viewport 9" -msgstr "Áthelyezés a 9. munkalapra" - -msgid "" -"Number of pixels from the bottom edge where the window will come to rest" -msgstr "" -"Az alsó éltől való távolság képpontban, amelyen az ablakok nem léphetnek túl" - -msgid "Number of pixels from the left edge where the window will come to rest" -msgstr "" -"Az bal oldali éltől való távolság képpontban, amelyen az ablakok nem " -"léphetnek túl" - -msgid "Number of pixels from the right edge where the window will come to rest" -msgstr "" -"Az jobb oldali éltől való távolság képpontban, amelyen az ablakok nem " -"léphetnek túl" - -msgid "Number of pixels from the top edge where the window will come to rest" -msgstr "" -"Az felső éltől való távolság képpontban, amelyen az ablakok nem léphetnek túl" - -msgid "Pad Bottom" -msgstr "Helykitöltő lent" - -msgid "Pad Left" -msgstr "Helykitöltő balra" - -msgid "Pad Right" -msgstr "Helykitöltő balra" - -msgid "Pad Top" -msgstr "Helykitöltő fent" - -msgid "Padding" -msgstr "Helykitöltés" - -msgid "Put" -msgstr "Elhelyezés" - -msgid "Put Bottom" -msgstr "Elhelyezés alulra" - -msgid "Put Bottom Left" -msgstr "Elhelyezés balra alulra" - -msgid "Put Bottom Right" -msgstr "Elhelyezés jobbra alulra" - -msgid "Put Center" -msgstr "Elhelyezés középre" - -msgid "Put Left" -msgstr "Elhelyezés balra" - -msgid "Put On Viewport" -msgstr "Elhelyezés a munkalapon" - -msgid "Put On Viewport 1" -msgstr "Elhelyezés az 1. munkalapon" - -msgid "Put On Viewport 10" -msgstr "Elhelyezés a 10. munkalapon" - -msgid "Put On Viewport 11" -msgstr "Elhelyezés a 11. munkalapon" - -msgid "Put On Viewport 12" -msgstr "Elhelyezés a 12. munkalapon" - -msgid "Put On Viewport 2" -msgstr "Elhelyezés a 2. munkalapon" - -msgid "Put On Viewport 3" -msgstr "Elhelyezés a 3. munkalapon" - -msgid "Put On Viewport 4" -msgstr "Elhelyezés a 4. munkalapon" - -msgid "Put On Viewport 5" -msgstr "Elhelyezés az 5. munkalapon" - -msgid "Put On Viewport 6" -msgstr "Elhelyezés a 6. munkalapon" - -msgid "Put On Viewport 7" -msgstr "Elhelyezés a 7. munkalapon" - -msgid "Put On Viewport 8" -msgstr "Elhelyezés a 8. munkalapon" - -msgid "Put On Viewport 9" -msgstr "Elhelyezés a 9. munkalapon" - -msgid "Put Pointer" -msgstr "Elhelyezés egérrel" - -msgid "Put Right" -msgstr "Elhelyezés jobbra" - -msgid "Put Top" -msgstr "Elhelyezés felülre" - -msgid "Put Top Left" -msgstr "Elhelyezés balra felülre" - -msgid "Put Top Right" -msgstr "Elhelyezés jobbra felülre" - -msgid "Put pointer uses the center of the window" -msgstr "Egérmutató elhelyezése az ablak közepére" - -msgid "Put to adjacent viewport" -msgstr "Elhelyezés szomszédos munkalapra" - -msgid "Put to arbitrary viewport" -msgstr "Elhelyezés bármelyik munkalapra" - -msgid "Put window" -msgstr "Ablak elhelyezése" - -msgid "Put within viewport" -msgstr "Elhelyezés a munkalapon belül" - -msgid "Restore Position" -msgstr "Helyzet visszaállítása" - -msgid "Unfocus Window" -msgstr "Ablakfókusz eltávolítás" - -msgid "Unfocus windows that are moved off the viewport" -msgstr "Ablakfókusz eltávolítás, ha az ablak a munkalapon kívülre kerül" - -msgid "Viewport Bottom" -msgstr "Munkalap lent" - -msgid "Viewport Left" -msgstr "Munkalap balra" - -msgid "Viewport Right" -msgstr "Munkalap jobbra" - -msgid "Viewport Top" -msgstr "Munkalap fent" - -msgid "Window Center" -msgstr "Középre az ablakot" - -msgid "Alpha Dependence Threshold" -msgstr "Alfafüggés határértéke" - -msgid "Alpha dependence threshold." -msgstr "Alfafüggés határértéke." - -msgid "Draw Reflection for decorations." -msgstr "Ablakdíszítés tükröződések megjelenítése." - -msgid "Draw Reflection for windows." -msgstr "Ablak tükröződések megjelenítése." - -msgid "Draws reflections" -msgstr "Tükröződések megjelenítése" - -msgid "Move the reflection on window move." -msgstr "Tükröződések mozgatása az ablakokkal együtt." - -msgid "Moving reflection" -msgstr "Mozgó tükröződések" - -msgid "Reflection Image" -msgstr "Tükröződés képe" - -msgid "Reflection Image file" -msgstr "Tükröződés képfájl" - -msgid "Reflection Window Match" -msgstr "Tükröződő ablakok egyeztetése" - -msgid "Reflection for Decorations" -msgstr "Ablakdíszítés tükröződése" - -msgid "Reflection for Windows" -msgstr "Ablakok tükröződése" - -msgid "Window match" -msgstr "Ablakok egyeztetése" - -msgid "Color 1 of the gradient background." -msgstr "A háttér színátmenetének első színe." - -msgid "Color 2 of the gradient background." -msgstr "A háttér színátmenetének második színe." - -msgid "Color 3 of the gradient background." -msgstr "A háttér színátmenetének harmadik színe." - -msgid "Color of text on resize popup." -msgstr "A szöveg színe az átméretező ablakon." - -msgid "Display info on resize similar to metacity" -msgstr "Ablakátméretezési információk megjelenítése a Metacity módján" - -msgid "Fade time (in ms) for popup window" -msgstr "A felbukkanó ablakok áttűnési ideje (ezredmásodpercben megadva)" - -msgid "Gradient Color 1" -msgstr "Színátmenet első színe" - -msgid "Gradient Color 2" -msgstr "Színátmenet második színe" - -msgid "Gradient Color 3" -msgstr "Színátmenet harmadik színe" - -msgid "Resize Info" -msgstr "Átméretezési információ" - -msgid "" -"Show resize info for all windows as opposed to just windows with a resize " -"increment of greater than 1." -msgstr "" -"Átméretezési információ megjelenítése minden ablakhoz, így nem csak azoknál " -"az ablakoknál jelenik meg ez az információ, ahol az átméretezés lépésköze " -"nagyobb, mint 1." - -msgid "Show resize info for all windows." -msgstr "Átméretezési információ megjelenítése minden ablakhoz." - -msgid "Text color." -msgstr "Szöveg színe." - -msgid "Above ring" -msgstr "Gyűrű felett" - -msgid "Allow Mouse Selection" -msgstr "Egérrel történő választás engedélyezése" - -msgid "" -"Allow the selection of windows by just clicking on them while the switcher " -"is active." -msgstr "" -"Egérrel történő ablakválasztás engedélyezése miközben az ablakváltó aktív." - -msgid "" -"Amount of opacity (in percent) for windows in the ring which are not selected" -msgstr "" -"Átlátszatlanság mértéke (százalékban megadva) a nem kiválasztott ablakokhoz " -"a gyűrűben." - -msgid "Background Color" -msgstr "Háttérszín" - -msgid "Background color for the window title" -msgstr "Az ablak címsorának háttérszíne" - -msgid "Below ring" -msgstr "Gyűrű alatt" - -msgid "Big" -msgstr "Nagy" - -msgid "Bold Font" -msgstr "Félkövér betűstílus" - -msgid "Centered on screen" -msgstr "Középen a képen" - -msgid "" -"Changes the minimum brightness factor for windows in the ring. The farer " -"away windows are, the less bright are they." -msgstr "" -"Megadja a minimális fényerőt arányát a gyűrűben lévő ablakokhoz. A távolabb " -"lévő ablakok fényereje kisebb." - -msgid "" -"Changes the minimum scale factor for windows in the ring. The farer away " -"windows are, the smaller are they." -msgstr "" -"Megadja a minimális mérete arányát a gyűrűben lévő ablakokhoz. A távolabb " -"lévő ablakok kisebbek." - -msgid "Darken Background" -msgstr "Háttér elsötétítése" - -msgid "Darken background when showing the ring" -msgstr "Háttér elsötétítése a gyűrű megjelenítésekor" - -msgid "Emblem" -msgstr "Embléma" - -msgid "Font color for the window title" -msgstr "Az ablak címsorának betűszíne" - -msgid "Font size for the window title" -msgstr "Az ablak címsorának betűmérete" - -msgid "Inactive Window Opacity" -msgstr "Inaktív ablakok átlátszósága" - -msgid "Maximum horizontal size of a thumbnail in the ring" -msgstr "Előnézet maximális vízszintes mérete a gyűrűben" - -msgid "Maximum vertical size of a thumbnail in the ring" -msgstr "Előnézet maximális függőleges mérete a gyűrűben" - -msgid "Minimum Brightness Factor" -msgstr "Minimális fényerőarány" - -msgid "Minimum Scale Factor" -msgstr "Minimális méretarány" - -msgid "Next Window" -msgstr "Következő ablak" - -msgid "Next Window (All Workspaces)" -msgstr "Következő ablak (összes munkaterület)" - -msgid "Next Window (Group)" -msgstr "Következő ablak (csoportok)" - -msgid "Overlay Icon" -msgstr "Átfedő ikon" - -msgid "Overlay an icon on windows in the ring" -msgstr "Ikon átfedése az ablakon a gyűrűben" - -msgid "Previous Window" -msgstr "Előző ablak" - -msgid "Previous Window (All Workspaces)" -msgstr "Előző ablak (összes munkaterület)" - -msgid "Previous Window (Group)" -msgstr "Előző ablak (csoportok)" - -msgid "Ring Height" -msgstr "Gyűrű magasság" - -msgid "Ring Switcher" -msgstr "Gyűrűk ura" - -msgid "Ring Width" -msgstr "Gyűrű szélesség" - -msgid "Ring Windows" -msgstr "Gyűrű ablak" - -msgid "Ring appearance" -msgstr "Gyűrű megjelenés" - -msgid "Ring height (in percent of the screen height)" -msgstr "Gyűrű függőleges mérete (a képernyő méretének százalékában)" - -msgid "Ring speed" -msgstr "Gyűrű sebesség" - -msgid "Ring timestep" -msgstr "Gyűrű időköz" - -msgid "Ring width (in percent of the screen width)" -msgstr "Gyűrű vízszintes mérete (a képernyő méretének százalékában)" - -msgid "Rotate Ring Clockwise on Next" -msgstr "Gyűrű forgatása az óramutató járása szerint" - -msgid "Rotate ring clockwise for next window instead of counterclockwise" -msgstr "" -"Gyűrű forgatása a következő ablakhoz az óramutató járása szerint ahelyett, " -"hogy azzal ellentétesen forogna." - -msgid "Selects if the window title should be displayed in bold font or not." -msgstr "Megadja, hogy az ablakok címsora félkövér betűvel legyen vagy sem." - -msgid "Selects where to place the window title." -msgstr "Megadja, hogy az ablakok címsora hova kerüljön." - -msgid "Show Minimized" -msgstr "Minimalizált ablakok megjelenítése" - -msgid "Show Window Title" -msgstr "Ablak címsorának megjelenítése" - -msgid "" -"Show switcher if not visible and select next window of the current " -"application." -msgstr "" -"Ablakváltó megjelenítése ha nem látható és a jelenlegi alkalmazás ablakai " -"közül a következő ablak kiválasztása." - -msgid "Show switcher if not visible and select next window out of all windows." -msgstr "" -"Ablakváltó megjelenítése ha nem látható és az összes ablak közül a következő " -"ablak kiválasztása." - -msgid "Show switcher if not visible and select next window." -msgstr "" -"Ablakváltó megjelenítése ha nem látható és a következő ablak kiválasztása." - -msgid "" -"Show switcher if not visible and select previous window of the current " -"application." -msgstr "" -"Ablakváltó megjelenítése ha nem látható és a jelenlegi alkalmazás ablakai " -"közül az előző ablak kiválasztása." - -msgid "" -"Show switcher if not visible and select previous window out of all windows." -msgstr "" -"Ablakváltó megjelenítése ha nem látható és az összes ablak közül az előző " -"ablak kiválasztása." - -msgid "Show switcher if not visible and select previous window." -msgstr "Ablakváltó megjelenítése ha nem látható és az előző ablak kiválasztása" - -msgid "Show window title of currently selected window." -msgstr "A kiválasztott ablak címsorának megjelenítése." - -msgid "Show windows that are minimized, shaded or in show desktop mode." -msgstr "" -"Minimalizált, felgörgetett és asztal megjelenítése módban is látható ablakok " -"megjelenítése." - -msgid "Text Placement" -msgstr "Szövegelhelyezés módja" - -msgid "Thumbnail Height" -msgstr "Előnézet magassága" - -msgid "Thumbnail Width" -msgstr "Előnézet szélessége" - -msgid "Window title display" -msgstr "Ablak címsorának megjelenítése" - -msgid "Windows that should be shown in ring" -msgstr "A gyűrűben megjelenítendő ablaktípusok" - -msgid "All windows" -msgstr "Minden ablak" - -msgid "Background color of the window title" -msgstr "Az ablak címsorának háttérszíne" - -msgid "Close Windows In Scale" -msgstr "Áttekintő nézetben elrejtendő ablaktípusok" - -msgid "Close windows while in scale mode" -msgstr "Ablaktípusok, amelyek áttekintő nézetben nem jelennek meg" - -msgid "Color used for highlighting the hovered window" -msgstr "Követett ablak kijelölőszíne" - -msgid "Draw Window Highlight" -msgstr "Ablakkijelölő megjelenítése" - -msgid "Font color of the window title" -msgstr "Az ablak címsorának betűszíne" - -msgid "Font size for window title display" -msgstr "Az ablak címsorának betűmérete" - -msgid "Highlight Color" -msgstr "Kijelölés színe" - -msgid "Highlighted window only" -msgstr "Csak a kijelölt ablakot" - -msgid "Highlights the hovered window with the given color" -msgstr "Kijelöli a követett ablakot a megadott színnel." - -msgid "No display" -msgstr "Nincs megjelenítve" - -msgid "Normal" -msgstr "Szokványos" - -msgid "Organic - EXPERIMENTAL" -msgstr "Organikus - KÍSÉRLETI" - -msgid "Scale Addons" -msgstr "Áttekintés bővítmény" - -msgid "Selects the mode to layout the windows in scale mode" -msgstr "Megadja az ablakelrendezés módját áttekintő módban" - -msgid "Size of the border around the window title" -msgstr "Keret vastagsága az ablak címsora körül" - -msgid "Some useful additions to the scale plugin" -msgstr "Néhány hasznos kiegészítés az Áttekintés bővítményhez" - -msgid "Title Border Size" -msgstr "Címsor keret méret" - -msgid "Use bold font for window title display" -msgstr "Félkövér betűstílus az ablak címsorának megjelenítéséhez" - -msgid "Window Highlight" -msgstr "Ablak kijelölése" - -msgid "Window Layout Mode" -msgstr "Ablakelrendezés módja" - -msgid "Window Title" -msgstr "Ablak címsor" - -msgid "Window Title Display" -msgstr "Ablak címsorának megjelenítése" - -msgid "Window title display in scale mode" -msgstr "Ablak címsorának megjelenítése áttekintő módban" - -msgid "Zoom Windows In Scale" -msgstr "Ablakok átméretezése áttekintéskor" - -msgid "Zoom windows while in scale mode" -msgstr "Ablakok nagyítása áttekintő nézetben" - -msgid "Filter Case Insensitive" -msgstr "Címszűrés nem különböztet meg kis- és nagybetűket" - -msgid "Filter Type Timeout" -msgstr "Címszűrés gépelési idő" - -msgid "Scale Window Title Filter" -msgstr "Áttekintő nézet címszűrő" - -msgid "Show Filter Text" -msgstr "Címszűrő szöveg megjelenítése" - -msgid "Show filter text." -msgstr "Megjeleníti a begépelt címszűrő keresést." - -msgid "Time (in ms) after which the filter typing is automatically ended" -msgstr "Címszűrő keresés befejezése (másodpercben megadva)" - -msgid "Use case insensitive string matching when filtering." -msgstr "Címszűrés nem különböztet meg kis- és nagybetűket a keresés során." - -msgid "Window title filter facility for the scale plugin" -msgstr "Ablakcím-szűrő szolgáltatás az áttekintő nézetben" - -msgid "" -"Embeds a Guile scheme interpreter and provides bindings for meaningful " -"Compiz integration." -msgstr "" -"Használja a Guile sémaértelmezőt és lehetőséget biztosít a tökéletes Compiz " -"integrációhoz." - -msgid "Scheme Interpreter" -msgstr "Sémaértelmező" - -msgid "Toggle Prompt Visible" -msgstr "Prompt megjelenítés váltása" - -msgid "Toggle prompt visible." -msgstr "Prompt megjelenítés váltása." - -msgid "Directory" -msgstr "Mappa" - -msgid "Initiate screencasting" -msgstr "Képernyőkép mentésének indítása" - -msgid "Put screenshot images in this directory" -msgstr "Képernyőkép mentése a következő mappába" - -msgid "ScreenCast plugin" -msgstr "Képernyőkép mentése bővítmény" - -msgid "ScreenCasting" -msgstr "Képernyőkép mentése" - -msgid "" -"Also try to save and restore legacy apps that don't support the X session " -"management protocol. This setting only should be used in KDE, as only KDE's " -"session manager also saves those applications." -msgstr "" -"Örökölt alkalmazások állapotának elmentése és visszatöltése. Az örökölt " -"alkalmazások nem támogatják a X kiszolgáló munkamenet-kezelő protokollját. " -"Ez a beállítás csak a KDE ablakkezelőben alkalmazható, ahol a KDE munkamenet-" -"kezelője is elmenti az alkalmazások állapotát." - -msgid "Save Legacy Apps" -msgstr "Mentés örökölt alkalmazásoknál is" - -msgid "Session Management" -msgstr "Munkamenet kezelés" - -msgid "Talk to session manager and save/load window state" -msgstr "Ablak állapotának elmentése és visszatöltése a munkamenet-kezelővel" - -msgid "Animation duration" -msgstr "Animáció időtartama" - -msgid "Duration of the animation in milliseconds." -msgstr "Animáció hossza (ezredmásodpercben megadva)." - -msgid "Increase the scale factor making the window bigger." -msgstr "A méretezés arányszámának növelésével az ablak nagyobbá válik." - -msgid "Make the window bigger" -msgstr "Legyen az ablak nagyobb" - -msgid "Make the window smaller" -msgstr "Legyen az ablak kisebb" - -msgid "Reduces the scale factor making the window smaller." -msgstr "A méretezés arányszámának csökkentésével az ablak kisebbé válik." - -msgid "Reset the window to original size" -msgstr "Ablak eredeti méretének visszaállítása" - -msgid "Resets the currently focused window to original size" -msgstr "Fókuszált ablak visszaállítása az eredeti méretére" - -msgid "Scale a window down to a portion of it's size." -msgstr "Ablak lekicsinyítése az ablakméret függvényében." - -msgid "" -"Scale a window down to a ration of the screen size. Respectively half, a " -"third or a sixth of the screen." -msgstr "" -"Ablak lekicsinyítése az képernyőméret függvényében. Átméretezés a képernyő " -"méretének felére, harmadára vagy hatodára." - -msgid "Scale interval" -msgstr "Méretezés lépésköze" - -msgid "Shelf" -msgstr "Széle" - -msgid "" -"The number to divide the scale factor by or multiply it with when " -"(respectively) increasing and decreasing the scale level manually. Higher " -"number means finer changes." -msgstr "" -"A szám amellyel elosztásra vagy megszorzásra kerül a nagyítás mértéke, " -"amikor a méretezést kézzel változtatja. A magasabb értékek finomabb " -"változtatást eredményeznek." - -msgid "Trigger scale down" -msgstr "Kicsinyítés indító" - -msgid "Trigger scale down to screen" -msgstr "Kicsinyítés a képernyőre indító" - -msgid "" -"Visually scales a window down to allow easy monitoring without true/" -"traditional resizing." -msgstr "" -"Képletesen lekicsinyíti az ablakokat a könnyebb áttekinthetőség érdekében a " -"hagyományos átméretezés helyett." - -msgid "Background intensity" -msgstr "Háttér intenzitása" - -msgid "Background intensity." -msgstr "Háttér intenzitása." - -msgid "Below" -msgstr "Alatt" - -msgid "Click duration" -msgstr "Kattintás időtartama" - -msgid "Cover" -msgstr "Árnyék" - -msgid "Cover movement offset." -msgstr "Árnyékmozgatás eltolása" - -msgid "Cover offset" -msgstr "Árnyék eltolása" - -msgid "Disabled" -msgstr "Letiltva" - -msgid "Fade in/out speed" -msgstr "Áttűnés sebessége" - -msgid "Fade speed" -msgstr "Elhalványulás sebessége" - -msgid "Flip" -msgstr "Pattog" - -msgid "Flip angle" -msgstr "Pattogás szöge" - -msgid "Generate mipmaps" -msgstr "MIP térképek létrehozása" - -msgid "Hide all non Desktop windows during switching" -msgstr "Az összes nem asztali ablak elrejtése váltás közben" - -msgid "Hide non Desktop windows" -msgstr "Összes nem asztali ablak elrejtése" - -msgid "Initiate (All Workspaces)" -msgstr "Indítás (összes munkaterület)" - -msgid "Initiate switcher (All Workspaces)." -msgstr "Ablakváltó indítása (összes munkaterület)" - -msgid "Initiate switcher." -msgstr "Ablakváltó indítása" - -msgid "Max window size" -msgstr "Maximum ablak méret" - -msgid "Maximum click duration in miliseconds." -msgstr "Maximális kattintási hossz ezredmásodpercben." - -msgid "Maximum window size (in percent of the screen width)" -msgstr "Maximum ablak méret (a képernyő méretének százalékában)" - -msgid "Mouse movement speed" -msgstr "Egérmozgás sebessége" - -msgid "Mouse speed" -msgstr "Egérmozgatás sebessége" - -msgid "On activated output" -msgstr "Csak az aktív kimeneten" - -msgid "One big switcher" -msgstr "Egy nagy váltó" - -msgid "Overlay an icon on windows in the shift switcher" -msgstr "Ikon átfedése az ablakon a Fortélyos váltóban" - -msgid "Rotation angle of the flip animation" -msgstr "Forgatás szöge" - -msgid "" -"Selects how the switcher is displayed if multiple output devices are used." -msgstr "" -"Válassza ki hogyan jelenjen meg a ablakváltó több megjelenítő használatakor." - -msgid "Shift Switcher" -msgstr "Fortélyos váltó" - -msgid "Shift Switcher Plugin" -msgstr "Fortélyos váltó bővítmény" - -msgid "Shift Windows" -msgstr "Ablakok váltása" - -msgid "Shift animation speed" -msgstr "Váltás animációs sebessége" - -msgid "Shift speed" -msgstr "Váltás sebessége" - -msgid "Shift timestep" -msgstr "Váltás időköz" - -msgid "Switcher mode" -msgstr "Váltás módja" - -msgid "Switcher mode." -msgstr "Az ablakváltás módja." - -msgid "Terminate" -msgstr "Megszakítás" - -msgid "Terminate switcher." -msgstr "Váltás leállítása." - -msgid "Windows that should be shown in the shift switcher" -msgstr "Fortélyos váltóban megjelenő ablakok" - -msgid "Access your desktop easily" -msgstr "Asztal könnyű elérése" - -msgid "Direction of window movement" -msgstr "Ablak mozgásának iránya" - -msgid "Left/Right" -msgstr "Balra/jobbra" - -msgid "Movement Direction" -msgstr "Mozgatás iránya" - -msgid "Show desktop" -msgstr "Asztal megjelenítése" - -msgid "To Corners" -msgstr "Sarkokba" - -msgid "Up/Down" -msgstr "Fel/le" - -msgid "Window Opacity" -msgstr "Ablak átlátszatlanság" - -msgid "Window Part Size" -msgstr "Ablakrészek mérete" - -msgid "Window movement speed" -msgstr "Ablakmozgatás sebessége" - -msgid "Window movement timestep" -msgstr "Ablakmozgatás időköze" - -msgid "Window opacity when showdesktop'd" -msgstr "Ablakok átlátszatlansága a munkaasztal megjelenítésekor" - -msgid "Window part size when showdesktop'd" -msgstr "Ablakrészek mérete a munkaasztal megjelenítésekor" - -msgid "" -"Window types that should be moved out of sight when entering showdesktop mode" -msgstr "A munkaasztal megjelenítésekor az útból elmozgatandó ablaktípusok" - -msgid "Additive blending" -msgstr "Összegző keverés" - -msgid "Additive blending of particles" -msgstr "Lángnyelvek összegző keverése." - -msgid "Darken backgound" -msgstr "Háttér elsötétítése" - -msgid "Darken background under particles" -msgstr "Háttér elsötétítése a lángnyelvek mögött." - -msgid "Emiters" -msgstr "Sugárzók" - -msgid "Have random colors for the particles" -msgstr "Legyen véletlenszerű a lángnyelvek színe" - -msgid "Increases the visibility of the mouse pointer" -msgstr "Egérmutató láthatóságának növelése" - -msgid "Number Of Particles" -msgstr "Lángnyelvek száma" - -msgid "Number of particle emiters." -msgstr "Részecskesugárzók száma." - -msgid "Number of particles." -msgstr "Lángnyelvek száma." - -msgid "Particle Color" -msgstr "Részecskeszín" - -msgid "Particle Life" -msgstr "Részecske élettartam" - -msgid "Particle Options" -msgstr "Részecske beállítások" - -msgid "Particle Size" -msgstr "Részecske méret" - -msgid "Particle Slowdown" -msgstr "Részecske lassulás" - -msgid "Particle color." -msgstr "Részecske színe." - -msgid "Particle life." -msgstr "Részecske élettartama." - -msgid "Particle size." -msgstr "Részecske mérete." - -msgid "Particle slowdown." -msgstr "Részecske lassulása." - -msgid "Randomly Colored Particles" -msgstr "Véletlenszerű lángnyelvszín" - -msgid "Ring radius" -msgstr "Élek sugara" - -msgid "Rotation speed" -msgstr "Forgás sebessége" - -msgid "Rotation speed." -msgstr "Forgás sebessége" - -msgid "Show mouse" -msgstr "Egérkurzor megjelenítése" - -msgid "Toggle the mouse pointer trail." -msgstr "Egérkurzor-követés kapcsoló." - -msgid "Alt" -msgstr "Alt" - -msgid "Avoid Snap Modifier" -msgstr "Ragadósság módosítás tiltása" - -msgid "Choose 'Resistance', 'Attraction' or 'Full Mode'." -msgstr "Válasszon a 'Élvonzás', 'Élek ellenállása' vagy a 'Élek' mód között." - -msgid "Control" -msgstr "Control" - -msgid "Edge Attraction Distance" -msgstr "Élvonzás távolsága" - -msgid "Edge Resistance Distance" -msgstr "Élek ellenállásának távolsága" - -msgid "Edge attraction" -msgstr "Élvonzás távolsága" - -msgid "Edge resistance" -msgstr "Élek ellenállásának távolsága" - -msgid "Edges" -msgstr "Élek" - -msgid "Enables windows edges resistance" -msgstr "Legyen az ablakéleknek ellenállása" - -msgid "Meta" -msgstr "Meta" - -msgid "Screen edges" -msgstr "Képernyőélekhez" - -msgid "Shift" -msgstr "Shift" - -msgid "Snap Type" -msgstr "Ragadósság" - -msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." -msgstr "Igazítás a 'Képernyőélekhez', 'Ablakélekhez' vagy 'Mindkettőhöz'." - -msgid "Snapping Windows" -msgstr "Ragadós ablakok" - -msgid "The distance until edge attraction takes place." -msgstr "Az a hatótávolság ahonnan az élvonzás működésbe lép." - -msgid "The distance until edge resistance takes place." -msgstr "Az a hatótávolság ahonnan az ablakélek ellenállása működésbe lép." - -msgid "Use this bindings to avoid snapping." -msgstr "Ezeknek a kötéseknek a használata a ragadósság elkerüléséhez." - -msgid "Window edges" -msgstr "Ablakélekhez" - -msgid "Bottom to Top" -msgstr "Lentről felfelé" - -msgid "" -"Delay (in ms) between screen updates. Decreasing this value may make snow " -"fall more smoothly, but will also increase CPU usage." -msgstr "" -"Képernyőfrissítések közötti késleltetés (ezredmásodpercben megadva). Az " -"érték csökkentésével a hóesés sokkal finomabb lesz, de ez növeli a " -"processzorhasználatot." - -msgid "Enable Blending" -msgstr "Elmosás engedélyezése" - -msgid "Enable Textures" -msgstr "Textúrák engedélyezése" - -msgid "Enables alpha blending of snowflakes." -msgstr "Hópelyhek alfa értékének elmosása." - -msgid "Enables textured snowflakes. If not selected, color gradients are used." -msgstr "" -"Bekapcsolja a hópelyhek textúrázását. Ha ez a lehetőség nincsen bekapcsolva, " -"színátmenet kerül alkalmazásra." - -msgid "Flakes rotate if checked." -msgstr "A pelyhek forognak, ha ez a lehetőség be van jelölve." - -msgid "How deep into the screen snowflakes can be drawn before being removed" -msgstr "Milyen mélyen kerüljenek a hópelyhek megjelenítésre a képernyőn." - -msgid "" -"How far outside the screen resolution snow flakes can be before being " -"removed. Needed because of FOV." -msgstr "" -"A látható képernyő szélétől milyen messze jelenjenek meg még hópelyhek " -"mielőtt eltávolításra kerülnének. Erre a FOV miatt van szükség." - -msgid "Key Bindings" -msgstr "Összerendelések" - -msgid "Left to Right" -msgstr "Balról jobbra" - -msgid "Number Of Snowflakes" -msgstr "Hópihék száma" - -msgid "Number of snowflakes" -msgstr "Hópihék száma" - -msgid "Right to Left" -msgstr "Jobbról balra" - -msgid "Rotate Flakes" -msgstr "Hópihék forgatása" - -msgid "Screen Boxing" -msgstr "Túllógás" - -msgid "Screen Depth" -msgstr "Képernyő mélység" - -msgid "Select snow flake movement direction" -msgstr "Válassza ki a hópihék mozgási irányát." - -msgid "Settings" -msgstr "Beállítások" - -msgid "Size Of Snowflakes" -msgstr "Hópihék mérete" - -msgid "Size of snowflakes" -msgstr "Hópihék mérete" - -msgid "Snow" -msgstr "Hóesés" - -msgid "Snow Direction" -msgstr "Havazás iránya" - -msgid "Snow Over Windows" -msgstr "Havazás az ablakokon keresztül" - -msgid "Snow Speed" -msgstr "Havazás sebessége" - -msgid "Snow Textures" -msgstr "Hópihe textúra" - -msgid "Snow Toggle" -msgstr "Havazás kapcsoló" - -msgid "Snow for Compiz" -msgstr "Havazás a Compiz ablakkezelőhöz" - -msgid "Snow is drawn above windows" -msgstr "A havazás megjelenik az ablakok előtt is." - -msgid "Snow textures" -msgstr "Hópihe textúra" - -msgid "Snow toggle key" -msgstr "Havazás kapcsoló" - -msgid "Speed of falling snow" -msgstr "A hulló hó sebessége" - -msgid "Textures" -msgstr "Textúrák" - -msgid "Top to Bottom" -msgstr "Lefelé" - -msgid "Update Delay" -msgstr "Frissítési időköz" - -msgid "A simple splash plugin" -msgstr "Egy egyszerű indítókép bővítmény" - -msgid "Background File" -msgstr "Háttérkép-fájl" - -msgid "Background brightness." -msgstr "A háttér fényereje." - -msgid "Background image File." -msgstr "A háttér képfájlja." - -msgid "Background saturation." -msgstr "A háttér telítettsége." - -msgid "Display In/Out Time." -msgstr "Áttűnési idő." - -msgid "Display Time" -msgstr "Megjelenítési idő" - -msgid "Images" -msgstr "Képek" - -msgid "Initiate Splash" -msgstr "Indítókép megjelenítése" - -msgid "Logo File" -msgstr "Logó képfájl" - -msgid "Logo image File." -msgstr "Logó képfájl" - -msgid "Show on first start" -msgstr "Megjelenítés első indításkor" - -msgid "Show splash on first start." -msgstr "Indítókép megjelenítése az első indításkor." - -msgid "Splash" -msgstr "Indítókép" - -msgid "Start Splash." -msgstr "Indítókép megjelenítése." - -msgid "Render text to texture" -msgstr "Szöveg textúrára leképzése" - -msgid "Text" -msgstr "Szöveg" - -msgid "Enable Titles" -msgstr "Címsorok engedélyezése" - -msgid "Fade In/Out Duration" -msgstr "Áttűnés időtartama" - -msgid "Fade In/Out Duration in seconds." -msgstr "Áttűnés időtartama másodpercekben." - -msgid "Generate Mipmaps" -msgstr "MIP térképek létrehozása" - -msgid "Generate mipmaps when possible for higher quality scaling." -msgstr "" -"MIP térképek készítése, hacsak lehetséges, a jobb minőségű skálázás érdekében" - -msgid "Paint Thumbnails Always on Top." -msgstr "Előnézet megjelenítése mindig felül." - -msgid "Paint Window Like Background" -msgstr "Ablak megjelenítése megegyezik a háttérével" - -msgid "Paint Window Like Background instead of Glow." -msgstr "" -"Ablak megjelenítése megegyezik a háttérével ragyogás leképzése helyett." - -msgid "Set it if the Taskbar shows only Windows of Current Viewport." -msgstr "" -"Állítsa be ezt a lehetőséget, ha a Tálca csak az aktuális munkalapon lévő " -"ablakokat jeleníti meg." - -msgid "Should be the window title Bold." -msgstr "Ablak címsorának megjelenítése félkövér betűstílussal." - -msgid "Show Delay" -msgstr "Megjelenítés késleltetése" - -msgid "Show Window Title in Thumbnail." -msgstr "Ablak címsorának megjelenítése az előnézeti képen." - -msgid "Size of Thumbnail Border." -msgstr "Az előnézeti kép keretmérete." - -msgid "Taskbar" -msgstr "Tálca" - -msgid "Taskbar Shows Only Windows of Current Viewport" -msgstr "A tálca csak az aktuális munkalapon lévő ablakokat jeleníti meg" - -msgid "Thumbnail Background and Border Glow Color." -msgstr "Előnézet háttérszíne és a keret ragyogásának színe." - -msgid "Thumbnail Border Glow Color" -msgstr "Előnézet keret ragyogásának színe" - -msgid "Thumbnail Border Size" -msgstr "Előnézet keretméret" - -msgid "Thumbnail Window Size" -msgstr "Előnézet ablakméret" - -msgid "Thumbnail window size." -msgstr "Az előnézeti ablak mérete." - -msgid "Thumbnails Always on Top" -msgstr "Előnézet mindig felül" - -msgid "Time (in ms) before Thumbnail is shown." -msgstr "Késleltetés (ezredmásodpercben) mielőtt a előnézet megjelenik." - -msgid "Window Previews" -msgstr "Ablak előnézetek" - -msgid "Window thumbnails at the taskbar" -msgstr "Ablakok előnézete megjelenítése a tálcán" - -msgid "Window title" -msgstr "Ablak címsor" - -msgid "Window title Font Color." -msgstr "Ablak címsor betűszín." - -msgid "Window title Font Size." -msgstr "Ablak címsor betűméret." - -msgid "Animation Duration" -msgstr "Animáció időtartama" - -msgid "Cascade" -msgstr "Lépcsőzetes" - -msgid "Cascade Delta" -msgstr "Térköz" - -msgid "Cascade Windows" -msgstr "Lépcsőzetes ablakelrendezés" - -msgid "Choose the tiling type you want when using toggle." -msgstr "Igazítás típusa a kapcsoló használatakor." - -msgid "Distance between windows when using cascade" -msgstr "Távolság az ablakok között Lépcsőzetes ablakelrendezés esetén." - -msgid "Drop From Top" -msgstr "Fentről" - -msgid "Duration (in ms) of the tiling animation" -msgstr "Igazítás animáció hossza (másodpercben megadva)" - -msgid "Excluded Windows" -msgstr "Mellőzött ablakok" - -msgid "Filled Outline" -msgstr "Kitöltött körvonal" - -msgid "Join Windows (EXPERIMENTAL)" -msgstr "Ablakok összefűzése (KÍSÉRLETI STÁDIUMBAN)" - -msgid "Left Occupancy" -msgstr "Balra rendezett" - -msgid "" -"Move and resize all visible windows both vertically and horizontally, so " -"that the occupy whole screen and are in a grid." -msgstr "" -"Minden látható ablak áthelyezése és átméretezése, így azok a teljes méretűek " -"lesznek és a egész képernyőt elfoglalják és egy rácson helyezkednek el." - -msgid "" -"Move and resize all visible windows so that they have full height, same " -"width and occupy whole screen." -msgstr "" -"Minden látható ablak áthelyezése és átméretezése, így azok a teljes méretűek " -"lesznek és a egész képernyőt elfoglalják." - -msgid "" -"Move and resize all visible windows so that they have full width, same " -"height and occupy whole screen." -msgstr "" -"Minden látható ablak áthelyezése és átméretezése, így azok a teljes méretűek " -"lesznek és a egész képernyőt elfoglalják." - -msgid "" -"Move and resize all visible windows with the delta value set for cascading." -msgstr "" -"Minden látható ablak áthelyezése és átméretezése, így azok a lépcsőzetes " -"ablakelrendezés térköze szerinti távolságot veszik fel." - -msgid "" -"Occupancy percentage for window placed left. This number is percentage of " -"screen width, which the active window will have it as width when tiled. " -"Applies to Left tiling type." -msgstr "" -"A balra rendezett ablak helyfoglalása százalékban megadva. A megadott érték " -"a képernyő szélessége százalékos arányban, amely az aktív ablak " -"rendelkezésére áll balra rendezett beállítás esetén." - -msgid "Restore Windows" -msgstr "Ablakok visszaállítása" - -msgid "Restore windows to their original position they had before tiling." -msgstr "Visszaállítja az ablakokat az igazítás előtti, eredeti helyükre." - -msgid "Selects the animation used while tiling" -msgstr "Válassza ki az igazítás során alkalmazott animációt" - -msgid "Slide" -msgstr "Csúszás" - -msgid "Tile" -msgstr "Csempe" - -msgid "Tile Horizontally" -msgstr "Darabolás vízszintesen" - -msgid "Tile Vertically" -msgstr "Darabolás függőlegesen" - -msgid "Tile Windows" -msgstr "Ablakok darabolása" - -msgid "Tile Windows Horizontally" -msgstr "Ablakok darabolása vízszintesen" - -msgid "Tile Windows Vertically" -msgstr "Ablakok darabolása függőlegesen" - -msgid "Tile windows" -msgstr "Ablakok darabolása" - -msgid "Tiling Animation Type" -msgstr "Darabolás animációjának típusa" - -msgid "Tiling Method For Toggle" -msgstr "Igazítás üzemmódja váltáskor" - -msgid "Toggle Tiling" -msgstr "Igazítás váltás" - -msgid "Toggle between tile and restore" -msgstr "Váltás az igazítás és a visszaállítás között" - -msgid "" -"Tries to join the windows together when horizontal, vertical or left tiling " -"is enabled so that when you resize a window surrounding windows resize " -"accordingly. This may cause problems if you dont leave them enough space." -msgstr "" -"Megpróbálja az ablakokat összefűzni egymással, ha a vízszintes, a függőleges " -"vagy a balra rendezett igazítás be van kapcsolva. Következésképpen amikor " -"átméretezi az ablakot a körülötte lévő ablakok is átméretezésre kerülnek. Ez " -"problémát jelenthet ha nincs elég hely a képernyőn." - -msgid "Windows which should be excluded from tiling" -msgstr "Igazításból kizárt ablakok" - -msgid "" -"Adjust the opacity, saturation and brightness of windows based on when they " -"last had focus." -msgstr "" -"Ablakok átlátszatlanságának, fényerejének és színtelítettségének beállítása " -"az ablak legutóbbi fókuszált állapota szerint." - -msgid "Brightness Level of Focused Windows" -msgstr "Fókuszált ablak fényereje" - -msgid "Brightness Level of Unfocused Windows" -msgstr "Nem fókuszált ablak fényereje" - -msgid "" -"Brightness of the currently focused window. Windows will get brightness " -"levels between the focused and minimum." -msgstr "" -"Az éppen fókuszált ablak fényereje. Az ablak fényereje a fókuszált és a " -"minimális közötti értéket veszi fel." - -msgid "" -"Brightness of the least focused window. Windows will get brightness levels " -"between the focused and minimum." -msgstr "" -"A legutoljára fókuszált ablak fényereje. Az ablak fényereje a fókuszált és a " -"minimális közötti értéket veszi fel." - -msgid "Number of Windows to Track" -msgstr "Követendő ablakok száma" - -msgid "" -"Number of windows Trailfocus will keep track of. Windows that had focus this " -"amount of windows ago or more will be considered completly unfocused." -msgstr "" -"A Fókuszkövető által követett ablakok száma. Ablakok, amelyek ennél régebben " -"kaptak csak fókuszt úgy viselkednek, mintha egyáltalán nem kaptak volna " -"fókuszt." - -msgid "Opacity Level of Focused Windows" -msgstr "Fókuszált ablak átlátszatlansága" - -msgid "Opacity Level of Unfocused Windows" -msgstr "Nem fókuszált ablak átlátszatlansága" - -msgid "" -"Opacity of the currently focused window. Windows will get opacity levels " -"between the focused and minimum." -msgstr "" -"Az éppen fókuszált ablak átlátszatlansága. Az ablak átlátszatlansága a " -"fókuszált és a minimális közötti értéket veszi fel." - -msgid "" -"Opacity of the least focused window. Windows will get opacity levels between " -"the focused and minimum." -msgstr "" -"A legutoljára fókuszált ablak átlátszatlansága. Az ablak átlátszatlansága a " -"fókuszált és a minimális közötti értéket veszi fel." - -msgid "Saturation Level of Focused Windows" -msgstr "Fókuszált ablak színtelítettsége" - -msgid "Saturation Level of Unfocused Windows" -msgstr "Nem fókuszált ablak színtelítettsége" - -msgid "" -"Saturation of the currently focused window. Windows will get saturation " -"levels between the focused and minimum." -msgstr "" -"Az éppen fókuszált ablak színtelítettsége. Az színtelítettsége a fókuszált " -"és a minimális közötti értéket veszi fel." - -msgid "" -"Saturation of the least focused window. Windows will get saturation levels " -"between the focused and minimum." -msgstr "" -"A legutoljára fókuszált ablak színtelítettsége. Az színtelítettsége a " -"fókuszált és a minimális közötti értéket veszi fel." - -msgid "" -"This defines when Trailfocus will start fading windows. This lets you set up " -"trailfocus to treat the N first Windows as fully focused." -msgstr "" -"Megadja, hogy a Követőfókusz mikor halványítsa el az ablakot. Ezzel " -"megadható, hogy az első N számú ablak teljesen fókuszált legyen." - -msgid "Trailfocus" -msgstr "Követőfókusz" - -msgid "Window to Start Fading" -msgstr "Elhalványítandó ablak" - -msgid "Window types that should be handled by Trailfocus" -msgstr "Követőfókusz által kezelt ablaktípusok" - -msgid "Action name for initiate" -msgstr "Indítandó akció neve" - -msgid "Action name for initiate/terminate" -msgstr "Az indítandó vagy leállítandó akció neve" - -msgid "Begin Viewport Switch" -msgstr "Munkalapváltás indítása" - -msgid "Begin entering viewport number" -msgstr "Adja meg a munkalap számát" - -msgid "Desktop-based Viewport Switching" -msgstr "Munkaasztal-alapú munkalap váltás" - -msgid "Go to specific viewport" -msgstr "Váltás a megadott munkalapra" - -msgid "Initiate plugin action" -msgstr "Bővítmény akció indítása" - -msgid "Initiate viewport changes through several events" -msgstr "Események hatására induljon a munkalapváltás" - -msgid "Initiate/Terminate the selected plugin action" -msgstr "Kiválasztott bővítmény akció indítása vagy leállítása" - -msgid "Move Down" -msgstr "Mozgás lefelé" - -msgid "Move Left" -msgstr "Mozgás balra" - -msgid "Move Next" -msgstr "Mozgás a következőre" - -msgid "Move Prev" -msgstr "Mozgás az előzőre" - -msgid "Move Right" -msgstr "Mozgás jobbra" - -msgid "Move Up" -msgstr "Mozgás felfelé" - -msgid "Move down" -msgstr "Mozgás a lenti munkalapra" - -msgid "Move to the left" -msgstr "Mozgás a jobb oldali munkalapra" - -msgid "Move to the next viewport" -msgstr "Mozgás a következő munkalapra" - -msgid "Move to the previous viewport" -msgstr "Mozgás az előző munkalapra" - -msgid "Move to the right" -msgstr "Mozgás a bal oldali munkalapra" - -msgid "Move up" -msgstr "Mozgás a fenti munkalapra" - -msgid "Number-Based Viewport Switching" -msgstr "Munkalapváltás szám alapján" - -msgid "Plugin for initiate action" -msgstr "Bővítmény az akció indításához" - -msgid "Plugin for initiate/action action" -msgstr "Bővítmény az akció indításához" - -msgid "Switch to Viewport 1" -msgstr "Váltás az 1. munkalapra" - -msgid "Switch to Viewport 10" -msgstr "Váltás a 10. munkalapra" - -msgid "Switch to Viewport 11" -msgstr "Váltás a 11. munkalapra" - -msgid "Switch to Viewport 12" -msgstr "Váltás a 12. munkalapra" - -msgid "Switch to Viewport 2" -msgstr "Váltás a 2. munkalapra" - -msgid "Switch to Viewport 3" -msgstr "Váltás a 3. munkalapra" - -msgid "Switch to Viewport 4" -msgstr "Váltás a 4. munkalapra" - -msgid "Switch to Viewport 5" -msgstr "Váltás az 5. munkalapra" - -msgid "Switch to Viewport 6" -msgstr "Váltás a 6. munkalapra" - -msgid "Switch to Viewport 7" -msgstr "Váltás a 7. munkalapra" - -msgid "Switch to Viewport 8" -msgstr "Váltás a 8. munkalapra" - -msgid "Switch to Viewport 9" -msgstr "Váltás a 9. munkalapra" - -msgid "Switch to viewport 1" -msgstr "Váltás az 1. munkalapra" - -msgid "Switch to viewport 10" -msgstr "Váltás a 10. munkalapra" - -msgid "Switch to viewport 11" -msgstr "Váltás a 11. munkalapra" - -msgid "Switch to viewport 12" -msgstr "Váltás a 12. munkalapra" - -msgid "Switch to viewport 2" -msgstr "Váltás a 2. munkalapra" - -msgid "Switch to viewport 3" -msgstr "Váltás a 3. munkalapra" - -msgid "Switch to viewport 4" -msgstr "Váltás a 4. munkalapra" - -msgid "Switch to viewport 5" -msgstr "Váltás az 5. munkalapra" - -msgid "Switch to viewport 6" -msgstr "Váltás a 6. munkalapra" - -msgid "Switch to viewport 7" -msgstr "Váltás a 7. munkalapra" - -msgid "Switch to viewport 8" -msgstr "Váltás a 8. munkalapra" - -msgid "Switch to viewport 9" -msgstr "Váltás a 9. munkalapra" - -msgid "Viewport Switcher" -msgstr "Munkalapváltó" - -msgid "Allow Wrap-Around" -msgstr "Körbefuttatás engedélyezése" - -msgid "Allow wrap-around when moving the wall up/down/left/right" -msgstr "" -"Körbefuttatás engedélyezése amikor fel, le, jobbra és balra mozgatja a falat." - -msgid "Arrow Colors" -msgstr "Nyíl színe" - -msgid "Background Gradient" -msgstr "Háttér-színátmenet" - -msgid "Base Color" -msgstr "Alapszín" - -msgid "Desktop Wall" -msgstr "Munkaasztal fal" - -msgid "Desktop Wall Plugin" -msgstr "Munkaasztal fal bővítmény" - -msgid "Duration (in s) for wall sliding viewport switching animation" -msgstr "" -"A fal csúszó munkalapváltó animációjának időtartama (másodpercben megadva)" - -msgid "" -"Duration (in s) the switch target preview should remain visible after " -"switching ends." -msgstr "" -"Váltások előnézetének megjelenítési időtartama (másodpercben megadva) a " -"váltás befejezése után." - -msgid "Edge Flip DnD" -msgstr "Élváltás húzásra" - -msgid "Edge Flip Move" -msgstr "Élváltás mozgatásra" - -msgid "Edge Flip Pointer" -msgstr "Élváltás egérmutatóval" - -msgid "Edge Flipping" -msgstr "Élváltás" - -msgid "Edge Radius" -msgstr "Élek sugara" - -msgid "Edge flipping" -msgstr "Élváltás" - -msgid "First color for the background gradient of the switcher window." -msgstr "Első színe az ablakváltó ablak háttérszín-átmenetének." - -msgid "First color for the thumb gradient of the switcher window." -msgstr "Első színe az ablakváltó ablak előnézeti kép színátmenetének." - -msgid "First color for the thumb highlight gradient of the switcher window." -msgstr "Első színe az ablakváltó ablak kijelölt előnézeti kép színátmenetének." - -msgid "First color of the arrow of the switcher window." -msgstr "Első színe az ablakváltó ablak nyilának színátmenetéhez." - -msgid "Flip Down" -msgstr "Lefelé pattan" - -msgid "Flip Left" -msgstr "Balra pattan" - -msgid "Flip Right" -msgstr "Jobbra pattan" - -msgid "Flip Up" -msgstr "Felfelé pattan" - -msgid "Flip down" -msgstr "Lefelé pattan" - -msgid "Flip left" -msgstr "Balra pattan" - -msgid "Flip right" -msgstr "Jobbra pattan" - -msgid "Flip up" -msgstr "Felfelé pattan" - -msgid "Flip viewport when dragging an object to a screen edge" -msgstr "Objektum kép szélére húzása esetén forgatás a következő nézőpontig" - -msgid "Flip viewport when moving a window to a screen edge" -msgstr "Egy ablak kép szélére húzása esetén forgatás a következő nézőpontig" - -msgid "Flip viewport when moving the pointer to a screen edge" -msgstr "Mutató kép szélére húzása esetén forgatás a következő nézőpontig" - -msgid "Highlight Gradient" -msgstr "Kijelölés gradiense" - -msgid "How should a multimonitor configuration be handled" -msgstr "Többmonitoros üzemmód kezelési módja" - -msgid "Move Down With Window" -msgstr "Áthelyezés lefelé az ablakkal együtt" - -msgid "Move Left With Window" -msgstr "Áthelyezés balra az ablakkal együtt" - -msgid "Move Right With Window" -msgstr "Áthelyezés jobbra az ablakkal együtt" - -msgid "Move Up With Window" -msgstr "Áthelyezés felfelé az ablakkal együtt" - -msgid "Move along the wall down" -msgstr "Ablak áthelyezése lefelé a fal mentén" - -msgid "Move along the wall to the left" -msgstr "Ablak áthelyezése a balra a fal mentén" - -msgid "Move along the wall to the next viewport" -msgstr "Áthelyezés a fal mentén a következő munkalapra" - -msgid "Move along the wall to the previous viewport" -msgstr "Áthelyezés a fal mentén az előző munkalapra" - -msgid "Move along the wall to the right" -msgstr "Ablak áthelyezése a jobbra a fal mentén" - -msgid "Move along the wall up" -msgstr "Ablak áthelyezése felfelé a fal mentén" - -msgid "Move with window along the wall down" -msgstr "Áthelyezés az ablakkal együtt a fal mentén lefelé" - -msgid "Move with window along the wall to the left" -msgstr "Áthelyezés az ablakkal együtt a fal mentén balra" - -msgid "Move with window along the wall to the right" -msgstr "Áthelyezés az ablakkal együtt a fal mentén jobbra" - -msgid "Move with window along the wall up" -msgstr "Áthelyezés az ablakkal együtt a fal mentén felfelé" - -msgid "Move with window within wall" -msgstr "Áthelyezés az ablakkal együtt a falon" - -msgid "Move within wall" -msgstr "Áthelyezés a falon belül" - -msgid "Multimonitor behavior" -msgstr "Többmonitoros viselkedés" - -msgid "Outline Color" -msgstr "Vonal színe" - -msgid "Outline color of the switcher window." -msgstr "Ablakváltó vonalának színe" - -msgid "Preview Scale" -msgstr "" - -msgid "Radius of the rounded edge" -msgstr "Lekerekített élek sugara" - -msgid "Second color for the background gradient of the switcher window." -msgstr "Második színe az ablakváltó ablak háttérszín-átmenetének." - -msgid "Second color for the thumb gradient of the switcher window." -msgstr "Második színe az ablakváltó ablak előnézeti kép színátmenetének." - -msgid "Second color for the thumb highlight gradient of the switcher window." -msgstr "" -"Második színe az ablakváltó ablak kijelölt előnézeti kép színátmenetének." - -msgid "Second color of the arrow of the switcher window." -msgstr "Második színe az ablakváltó ablak nyilának színátmenetéhez." - -msgid "Shadow Color" -msgstr "Árnyék színe" - -msgid "Show Live Viewport Previews" -msgstr "Élő munkalap előnézetek megjelenítése" - -msgid "Show Viewport Switcher Preview" -msgstr "Élő munkalapváltó előnézetek megjelenítése" - -msgid "Show live viewport previews in switcher window" -msgstr "Élő munkalap előnézetek megjelenítése a ablakváltó ablakban" - -msgid "Show switcher window while switching viewports" -msgstr "Ablakváltó ablak megjelenítése munkalapváltás közben." - -#, no-c-format -msgid "Size of the preview in %" -msgstr "" - -msgid "Switch Target Preview Visibility Time" -msgstr "Célválasztó előnézet megjelenítési ideje" - -msgid "Switch all" -msgstr "Összes átkapcsolása" - -msgid "Switch separately" -msgstr "Váltás külön" - -msgid "Third color for the background gradient of the switcher window." -msgstr "Harmadik színe az ablakváltó ablak háttérszín-átmenetének." - -msgid "Thumb Gradient" -msgstr "Előnézet színátmenet" - -msgid "Viewport Switch Preview" -msgstr "Munkalapváltó előnézet" - -msgid "Viewport Switching" -msgstr "Munkalapváltás" - -msgid "Wall Sliding Duration" -msgstr "Fal váltásának időtartama" - -msgid "Width of the border between the previews" -msgstr "" - -msgid "Background fill type." -msgstr "Háttérkép kitöltésének típusa." - -msgid "Backgrounds" -msgstr "Háttérképek" - -msgid "Center Tiled" -msgstr "Mozaik középre" - -msgid "Centered" -msgstr "Középre helyezett" - -msgid "Color 1" -msgstr "Szín 1" - -msgid "Color 2" -msgstr "Szín 2" - -msgid "Draw the desktop wallpaper" -msgstr "Asztalháttérkép megjelenítése" - -msgid "Fill or first gradient color." -msgstr "Kitöltés vagy a színátmenet első színe." - -msgid "Fill type" -msgstr "Kitöltés típusa" - -msgid "Horizontal gradient" -msgstr "Vízszintes színátmenet" - -msgid "Image" -msgstr "Képfájl" - -msgid "Image file." -msgstr "Képfájl" - -msgid "Image position." -msgstr "Kép elhelyezkedése" - -msgid "Position" -msgstr "Pozíció" - -msgid "Scale and Crop" -msgstr "Kifeszített" - -msgid "Scaled" -msgstr "Képernyő kitöltése" - -msgid "Second gradient color." -msgstr "Színátmenet második színe" - -msgid "Solid fill" -msgstr "Homogén szín" - -msgid "Tiled" -msgstr "Mozaik" - -msgid "Vertical gradient" -msgstr "Függőleges színátmenet" - -msgid "Wallpaper" -msgstr "Háttérkép" - -msgid "Background Brightness" -msgstr "Háttér fényereje" - -msgid "Background Saturation" -msgstr "Háttér telítettsége" - -msgid "Background in Widget Mode" -msgstr "Háttér Szerkentyű módban" - -msgid "Brightness of non-widget windows in widget modes." -msgstr "Nem szerkentyű ablakok fényereje Szerkentyű módban." - -msgid "End Widget Mode on Click" -msgstr "Egérkattintással kilépés a Szerkentyű módból" - -msgid "End widget mode when a non-widget window is clicked." -msgstr "Kilépés a Szerkentyű módból, ha nem szerkentyű ablakra kattint." - -#, fuzzy -msgid "Focus Widget Layer" -msgstr "Szerkentyű réteg" - -msgid "Focus a window in the widget layer when activating the layer" -msgstr "" - -msgid "Saturation of non-widget windows in widget modes." -msgstr "Nem szerkentyű ablakok színtelítettsége Szerkentyű módban." - -msgid "Show or hide widget windows" -msgstr "Szerkentyű ablakok megjelenítése és elrejtése" - -msgid "Show widget windows on a separate layer" -msgstr "Szerkentyű ablakok megjelenítése külön rétegként" - -msgid "Time (in s) for fading into/out of the widget layer." -msgstr "Szerkentyű réteg halványításának ideje (másodpercben megadva)" - -msgid "Toggle Widget Display" -msgstr "Szerkentyű megjelenítés kapcsoló" - -msgid "Widget Layer" -msgstr "Szerkentyű réteg" - -msgid "Widget Windows" -msgstr "Szerkentyű ablakok" - -msgid "Windows that always should be treated as widgets" -msgstr "Szerkentyűknek minősülő ablakok" - -msgid "Above others windows" -msgstr "Más ablakok felett" - -msgid "Below others windows" -msgstr "Más ablakok alatt" - -msgid "Don't show application in pager" -msgstr "" -"Azon programok listája, amely futásuk alatt sem jelenhetnek meg a " -"munkaterület váltón" - -msgid "Don't show application in taskbar" -msgstr "" -"Azon programok listája, amely futásuk alatt sem jelenhetnek meg a tálcán" - -msgid "Fixed Size Windows" -msgstr "Rögzített méretű ablakok" - -msgid "Fullscreen" -msgstr "Teljes képernyős üzemmód" - -msgid "Fullscreen windows" -msgstr "Teljes képernyős ablakok" - -msgid "Height values" -msgstr "Magasságértékek" - -msgid "Matches" -msgstr "Összerendelések" - -msgid "No ARGB visuals" -msgstr "Hiányzó ARGB kiterjesztések " - -msgid "No focus" -msgstr "Nincs fókuszban" - -msgid "Non closable windows" -msgstr "Nem bezárható ablak" - -msgid "Non maximizable windows" -msgstr "Nem maximalizálható ablak" - -msgid "Non minimizable windows" -msgstr "Nem minimalizálható ablak" - -msgid "Non movable windows" -msgstr "Nem áthelyezhető ablak" - -msgid "Non resizable windows" -msgstr "Nem átméretezhető ablak" - -msgid "Set window as non closable" -msgstr "Beállítás nem bezárható ablaknak" - -msgid "Set window as non maximizable" -msgstr "Beállítás nem maximalizálható ablaknak" - -msgid "Set window as non minimizable" -msgstr "Beállítás nem minimalizálható ablaknak" - -msgid "Set window as non movable" -msgstr "Beállítás nem áthelyezhető ablaknak" - -msgid "Set window as non resizable" -msgstr "Beállítás nem átméretezhető ablaknak" - -msgid "Set windows rules" -msgstr "Ablakszabályok beállítása" - -msgid "Size rules" -msgstr "Méretszabályok" - -msgid "Sized Windows" -msgstr "Átméretezett ablak" - -msgid "Skip pager" -msgstr "Elrejtés a munkaterület-váltóról" - -msgid "Skip taskbar" -msgstr "Tálca kihagyása" - -msgid "Sticky" -msgstr "Ragadós" - -msgid "Sticky windows" -msgstr "Ragadós ablakok" - -msgid "Width values" -msgstr "Szélesség érték" - -msgid "Window Rules" -msgstr "Ablakszabályok" - -msgid "Windows that should be resized by default" -msgstr "Átméretezendő ablakok" - -msgid "Windows that should be treated as not supporting transparency" -msgstr "Ablakok, amelyek nem támogatják az átlátszóságot." - -msgid "Windows will not have focus" -msgstr "Ablakok fókuszának tiltása" - -msgid "\"On all desktops\" sticky match" -msgstr "Minden asztalon legyenek \\\"ragadós ablakok\\\"" - -msgid "AIGLX Fragment Parameter Fix" -msgstr "AIGLX helytelen paraméter-használat javítás" - -msgid "Firefox Menu Fix" -msgstr "Firefox menük javítása" - -msgid "Fix broken glProgramEnvParameter4f implementation." -msgstr "Hibás glProgramEnvParameter4f megvalósítás javítása." - -msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." -msgstr "" -"Az fglrx meghajtóprogram hibás GLX_MESA_copy_sub_buffer megvalósítás " -"javítása." - -msgid "Fix screen updates in XGL with fglrx." -msgstr "Képernyőfrissítés javítása XGL ablakkezelőben." - -msgid "Fix window type of Firefox and Thunderbird menus." -msgstr "Ablaktípus javítás az Firefox és Thunderbird programok menüihez." - -msgid "Fix window type of OpenOffice.org menus." -msgstr "Ablaktípus javítás az OpenOffice.org program menüihez." - -msgid "Fix window type of notification daemon windows." -msgstr "Ablaktípus javítás az értesítési ablakokhoz." - -msgid "Fix window type of various Java windows." -msgstr "Ablaktípus javítás számos Java ablakfajtához." - -msgid "Fix window type of various Qt windows." -msgstr "Ablaktípus javítás számos Qt ablakfajtához." - -msgid "Java Window Fix" -msgstr "Java ablakok javítása" - -msgid "Legacy Fullscreen Support" -msgstr "Örökölt teljes képernyős programok támogatása" - -msgid "Make \"on all desktops\" windows \"sticky\"" -msgstr "Minden asztalon legyenek \"ragadós ablakok\"" - -msgid "" -"Make \"on all desktops\" windows sticky. Sticky windows are visible on all " -"viewports." -msgstr "" -"Minden asztalon legyenek \"ragadós ablakok\". A ragadós ablakok láthatóak " -"minden asztalon." - -msgid "Make Wine and legacy applications fullscreen properly." -msgstr "Teljes képernyős Wine és örökölt alkalmazások helyes megjelenítése." - -msgid "Metacity-like workarounds." -msgstr "Metacity témához szánt hibajavítások" - -msgid "Notification Daemon Fix" -msgstr "Értesítés démon javítása" - -msgid "OpenOffice.org Menu Fix" -msgstr "OpenOffice.org menük javítása" - -msgid "Qt Window Fix" -msgstr "Qt ablakok javítása" - -msgid "Window stickyness" -msgstr "Ragadós ablak" - -msgid "Windows on all desktops that should be made sticky" -msgstr "Az ablakok legyenek ragadósak az összes munkaasztalon" - -msgid "Workarounds" -msgstr "Hibajavítások" - -#~ msgid "Animation Speed" -#~ msgstr "Animáció sebessége" - -#~ msgid "Change the speed of the 3D animation" -#~ msgstr "Térbeli animáció sebességének megváltoztatása" - -#~ msgid "Enable true alpha blending for transparent wallpapers" -#~ msgstr "Valódi átlátszóságkezelés átlátszó háttérképekhez." - -#~ msgid "Enable true blending" -#~ msgstr "Valódi átlátszóságkezelés engedélyezése" - -#~ msgid "" -#~ "The background specifications (as explained in DOCUMENTATION) to use." -#~ msgstr "" -#~ "A háttér specifikáció használata. (Erről részletesebben a dokumentációban " -#~ "olvashat.)" - -#~ msgid "Tile backgrounds as opposed to stretching" -#~ msgstr "Háttérkép mozaik elrendezése a kitöltés helyett" - -#~ msgid "Tilt view" -#~ msgstr "Dőlt nézet" - -#~ msgid "Tilt window view in expo mode" -#~ msgstr "Dőlt ablaknézet közszemlén" - -#~ msgid "Move window to x, y" -#~ msgstr "Ablak pozicionálása" - -#~ msgid "Put Exact" -#~ msgstr "Elhelyezés pontosan" - -#~ msgid "Misc. options" -#~ msgstr "További beállítások" - -#~ msgid "Show minimized windows" -#~ msgstr "Minimalizált ablakok megjelenítése" - -#~ msgid "Tile or Stretch" -#~ msgstr "Mozaik vagy kitöltés" - -#~ msgid "Enhanced zoom functions for visually imparied and others" -#~ msgstr "Kibővített nagyítási funkciók" - -#~ msgid "Mouse Behavior" -#~ msgstr "Egér viselkedés" - -#~ msgid "Zoom Movement" -#~ msgstr "Nagyítás léptéke" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/it.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/it.po --- compiz-fusion-plugins-unsupported-0.7.6/po/it.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/it.po 2008-09-17 14:29:33.000000000 +0100 @@ -8,13 +8,13 @@ # Fabio Fiorentini (Ahren / FaBBio) , 2007. # Andrea De Iacovo (Firstbit) , 2007. # Emiliano Perulli , 2007. -# Milo Casagrande , 2007-2008 +# Milo Casagrande , 2007-2008 # # # **** Glossario **** # # -# enable -> usato sempre come 'attivare' +# enable -> usato sempre come 'abilitare' # viewport -> area di lavoro (fino a quando non sia effettivamente una concezione diversa) # bevel, to -> smussare # workaround -> alternativa @@ -47,9 +47,9 @@ msgstr "" "Project-Id-Version: plugins 0.0.1\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:51+0530\n" -"PO-Revision-Date: 2008-04-07 21:15+0200\n" -"Last-Translator: Milo Casagrande \n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" +"PO-Revision-Date: 2008-09-08 21:23+0200\n" +"Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,6 +160,12 @@ msgid "Brightness of faded windows" msgstr "Luminosità delle finestre in dissolvenza" +msgid "Enable ADD Helper on start" +msgstr "Abilitare «Aiuto concentrazione» all'avvio" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Abilita l'aiuto alla concentrazione al primo avvio." + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -183,7 +189,8 @@ msgid "Use this to enable/disable AddHelper on the fly." msgstr "" -"Usare questo comando per attivare/disattivare «Aiuto concentrazione» al volo." +"Usare questo comando per abilitare/disabilitare «Aiuto concentrazione» al " +"volo." msgid "Window Types" msgstr "Tipi di finestre" @@ -191,12 +198,6 @@ msgid "Window types that should be Opacified." msgstr "Tipi di finestre da opacizzare." -msgid "Airplane" -msgstr "Aeroplano" - -msgid "Airplane Flying Path Length" -msgstr "Lunghezza percorso aeroplano" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -204,21 +205,6 @@ "Tutti gli effetti sono scelti casualmente, ignorando l'effetto selezionato. " "Se per un evento è selezionato «Nessuno», l'evento non avrà animazioni." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Ampiezza (dimensione delle onde nella piega) di «Ripiegatura orizzontale» " -"relativa alla larghezza della finestra. Valori negativi portano le pieghe in " -"avanti." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Ampiezza (misura delle onde nella piega) della piega curvata relativamente " -"alla larghezza della finestra. Valori negativi portano le pieghe in avanti." - msgid "Angle of window at the end of the animation." msgstr "Angolo della finestra alla fine dell'animazione." @@ -228,10 +214,6 @@ msgid "Animation Time Step" msgstr "Intervallo animazione" -# (ndt) non so dove compaia questo suggerimento... -msgid "Animation Time Step For Intense Effects" -msgstr "Intervallo animazione per l'effetto intenso" - msgid "Animation duration in milliseconds for close effect." msgstr "Durata in millisecondi dell'animazione per l'effetto di chiusura." @@ -250,57 +232,12 @@ msgid "Animations" msgstr "Animazioni" -msgid "Automatic" -msgstr "Automatico" - msgid "Away Angle" msgstr "Angolo lontano" msgid "Away Position" msgstr "Posizione lontana" -msgid "Beam" -msgstr "Fascio di luce" - -msgid "Beam Color" -msgstr "Colore fascio di luce" - -msgid "Beam Life" -msgstr "Durata fascio di luce" - -msgid "Beam Slowdown" -msgstr "Rallentamento fascio di luce" - -msgid "Beam Spacing" -msgstr "Spaziatura fasci di luce" - -# (NdT) non vedo perchè chiamarlo in modo diverso -# tra la selezione e la modifica dell'effetto -msgid "Beam Up" -msgstr "Fascio di luce" - -msgid "Beam Width" -msgstr "Larghezza fascio di luce" - -# (NdT) suggerimento -msgid "Beam color." -msgstr "Colore del fascio di luce." - -# (NdT) suggerimento -msgid "Beam life." -msgstr "Durata del fascio di luce." - -# (NdT) suggerimento -msgid "Beam slowdown." -msgstr "Rallentamento del fascio di luce." - -# (NdT) suggerimento -msgid "Beam width." -msgstr "Larghezza fascio di luce." - -msgid "Burn" -msgstr "Brucia" - msgid "Close Animation" msgstr "Animazione di chiusura" @@ -312,7 +249,7 @@ "camera, -2.0: Away from camera)." msgstr "" "Vicinanza della finestra alla fotocamera alla fine dell'animazione (1.0: " -"Vicino alla fotocamera; -2.0: Lontano dalla fotocamera)" +"vicino alla fotocamera; -2.0: lontano dalla fotocamera)" msgid "" "Comma separated list of option value assignments to override effect " @@ -324,8 +261,8 @@ msgid "Curved Fold" msgstr "Ripiegatura curva" -msgid "Curved Fold Amplitude" -msgstr "Ampiezza ripiegatura curva" +msgid "Curved Fold Amplitude Multiplier" +msgstr "Moltiplicatore ampiezza ripiegatura curva" msgid "Dodge" msgstr "Balzo" @@ -333,15 +270,6 @@ msgid "Dodge Gap Ratio" msgstr "Rapporto balzo" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Direzione caduta pezzi del domino" - -msgid "Down" -msgstr "Giù" - msgid "Dream" msgstr "Sogno" @@ -351,80 +279,24 @@ msgid "Effect Settings" msgstr "Impostazioni effetto" -msgid "Explode" -msgstr "Esplodi" - msgid "Fade" msgstr "Dissolvenza" -msgid "Falling direction for Domino pieces." -msgstr "Direzione di caduta dei pezzi del domino." - -# (NdT) anche qui... perché non usare lo stesso -# nome dell'effetto quando si deve modificare? -msgid "Fire" -msgstr "Brucia" - -msgid "Fire Particle Color" -msgstr "Colore fiamme" - -msgid "Fire Particle Life" -msgstr "Durata fiamme" - -msgid "Fire Particle Size" -msgstr "Dimensione fiamme" - -msgid "Fire Particle Slowdown" -msgstr "Velocità fiamme" - -msgid "Fire Smoke" -msgstr "Fuoco e fumo" - -msgid "Fire constant speed" -msgstr "Velocità costante del fuoco" - -msgid "Fire direction" -msgstr "Direzione del fuoco" - -msgid "Fire direction." -msgstr "Direzione del fuoco." - -msgid "Fire particle color." -msgstr "Colore delle fiamme." - -msgid "Fire particle life." -msgstr "Durata delle fiamme." - -msgid "Fire particle size." -msgstr "Dimensione delle fiamme." - -msgid "Fire particle slowdown." -msgstr "Velocità di evoluzione delle fiamme." - -# (NdT) suggerimento -msgid "Fire smoke." -msgstr "Aggiunge il fumo al fuoco." - msgid "Fixed window interior during the Rollup animation." msgstr "Interno della finestra fisso durante l'animazione di arrotolamento." -msgid "Fly to TaskBar on Minimize" -msgstr "Vola nella barra delle applicazioni alla minimizzazione." - msgid "Focus Animation" msgstr "Animazione di selezione" msgid "Focus Effect" msgstr "Effetto di selezione" -msgid "Fold" -msgstr "Ripiegatura" - -msgid "Fold Direction" -msgstr "Direzione pieghe" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Direzione di apertura dei pezzi nell'effetto «Rasoio»." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" +"L'ampiezza della curvatura (dimensione) è moltiplicata per questo numero. " +"Valori negativi ripiegano all'indietro." msgid "Glide 1" msgstr "Planata 1" @@ -432,43 +304,17 @@ msgid "Glide 2" msgstr "Planata 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Colora le fiamme in modo casuale, l'effetto viene anche chiamato «Fuoco " -"mistico»." - -msgid "Hexagonal" -msgstr "Esagonale" - msgid "Horizontal Folds" msgstr "Ripiegatura orizzontale" -msgid "Horizontal Folds Amplitude" -msgstr "Ampiezza ripiegatura orizzontale" +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "Moltiplicatore ampiezza ripiegatura orizzontale" msgid "How spring-like the Sidekick animation should be." msgstr "Quanto deve essere simile a una molla l'animazione." msgid "How spring-like the Zoom animation should be." -msgstr "Quanto dovrebbe essere simile a una molla l'animazione." - -msgid "In" -msgstr "Dentro" - -msgid "In-out" -msgstr "Dentro/Fuori" - -msgid "Leaf Spread" -msgstr "Caduta foglie" - -msgid "Left" -msgstr "Sinistra" - -msgid "Left-right" -msgstr "Sinistra/Destra" - -msgid "Length of airplane's flying path." -msgstr "Lunghezza del percorso di volo dell'aeroplano." +msgstr "Quanto deve essere simile a una molla l'animazione." msgid "Magic Lamp" msgstr "Lampada magica" @@ -495,11 +341,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Movimento finale in apertura/chiusura" -msgid "Make fire effect duration be dependent on window height." -msgstr "" -"Rende la durata dell'effetto del fuoco dipendente dall'altezza della " -"finestra." - msgid "Minimize Animation" msgstr "Animazione di minimizzazione" @@ -509,21 +350,12 @@ msgid "Minimize/Unminimize Only" msgstr "Minimizza/Deminimizza solamente" -msgid "Movement direction(s) for window pieces." -msgstr "Direzione dei pezzi della finestra." - msgid "None" msgstr "Nessuno" -msgid "Number Of Fire Particles" -msgstr "Numero particelle di fuoco" - msgid "Number of Horizontal Folds" msgstr "Numero pieghe orizzontali" -msgid "Number of fire particles." -msgstr "Numero delle particelle di fuoco." - # (NdT) suggerimento #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." @@ -557,18 +389,15 @@ msgid "Options" msgstr "Opzioni" -msgid "Out" -msgstr "Fuori" - msgid "Pool" msgstr "Elenco effetti" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Elenco degli effetti da cui scegliere se è selezionato l'effetto «Casuale». " -"Fare clic sul pulsante di ripristino per ripristinare l'elenco." +"Fare clic sul pulsante di ripristino per usare tutti gli effetti." msgid "Random" msgstr "Casuale" @@ -579,38 +408,16 @@ msgid "Random Effects" msgstr "Effetti casuali" -msgid "Randomly Colored Fire" -msgstr "Fuoco mistico" - # (NdT) suggerimento msgid "Ratio of gaps between dodge start times to focus duration." msgstr "Intervallo tra il balzo e il focus sulla finestra." -msgid "Razr" -msgstr "Rasoio" - -# (NdT) opzione disponibile solo con l'effetto Rasoio -msgid "Razr Fold Opening Direction" -msgstr "Direzione apertura" - -msgid "Rectangular" -msgstr "Rettangolare" - -msgid "Right" -msgstr "Destra" - msgid "Roll Up" msgstr "Arrotola" msgid "Rollup Fixed Interior" msgstr "Interno fisso" -msgid "Rotation Angle" -msgstr "Angolo di rotazione" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Angolo di rotazione dei pezzi animati della finestra (in gradi)." - msgid "Shade Animation" msgstr "Animazione sfumatura" @@ -632,15 +439,6 @@ msgid "Sidekick Springiness" msgstr "Elasticità" -msgid "Skewer" -msgstr "Distorsione" - -msgid "Skewer Direction" -msgstr "Direzione distorsione" - -msgid "Spacing between beams." -msgstr "Spazio tra i fasci di luce." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -654,44 +452,13 @@ "Larghezza iniziale alla creazione e larghezza finale al concludersi " "dell'effetto «Vuoto»." -msgid "Tessellation Type" -msgstr "Tassellatura" - -msgid "Tessellation type for exploding window pieces." -msgstr "Tipo di tassellatura per i pezzi dell'esplosione della finestra." - -msgid "Tessellation type for window pieces." -msgstr "Tipo di tassellatura per i pezzi della finestra." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" -"Tempo in millisecondi tra ogni aggiornamento dell'animazione. Più alto è il " +"Tempo in millisecondi tra ogni aggiornamento dell'animazione. Più alto il " "valore, più l'animazione va a scatti." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Tempo in millisecondi tra ogni aggiornamento dell'animazione (come «Brucia», " -"«Raggio luminoso»). Più il valore, più l'animazione va a scatti." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"La finestra animata sarà divisa in pezzi lungo una griglia. Specifica il " -"numero di celle per l'altezza della finestra." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"La finestra animata sarà divisa in pezzi lungo una griglia. Specifica il " -"numero di celle per la lunghezza della finestra." - msgid "The animation effect shown when closing a window." msgstr "Animazione mostrata alla chiusura di una finestra." @@ -707,20 +474,6 @@ msgid "The animation effect shown when shading a window." msgstr "Animazione mostrata alla sfumatura di una finestra." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"La finestra che esplode sarà divisa in pezzi lungo una griglia. Specifica il " -"numero di celle per l'altezza della finestra." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"La finestra che esplode sarà divisa in pezzi lungo una griglia. Specifica il " -"numero di celle per la larghezza della finestra." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" "La massima ampiezza (dimensione delle onde) che avrà l'effetto «Lampada " @@ -738,37 +491,12 @@ msgstr "" "Il numero di pieghe orizzontali dell'animazione «Ripiegatura orizzontale»." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" -"L'ampiezza delle onde (dimensione) relativa all'altezza della finestra." - msgid "The width of the wave relative to the window height." msgstr "La larghezza dell'onda relativa all'altezza della finestra." msgid "The windows that will be animated." msgstr "Le finestre che verranno animate." -msgid "Thickness" -msgstr "Spessore" - -msgid "Thickness of Animated Polygons" -msgstr "Spessore dei poligoni animati" - -msgid "Thickness of Exploding Polygons" -msgstr "Spessore dei poligoni dell'esplosione" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Spessore dei pezzi della finestra animata (in pixel)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Spessore dei pezzi della finestra che esplode (in pixel)." - -msgid "Up" -msgstr "Su" - -msgid "Up-down" -msgstr "Su/Giù" - msgid "Use various animations as window effects" msgstr "Usa varie animazioni come effetti per le finestre" @@ -809,17 +537,18 @@ msgid "Wave" msgstr "Onde" -msgid "Wave Amplitude" -msgstr "Ampiezza onde" +msgid "Wave Amplitude Multiplier" +msgstr "Moltiplicatore ampiezza onde" msgid "Wave Width" msgstr "Larghezza onde" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Indica se la finestra deve volare nella barra delle applicazioni quando " -"minimizzata con l'effetto «Aeroplano»." +"L'ampiezza delle onde (dimensione) è moltiplicata per questo numero. Valori " +"negativi ripiegano all'indietro." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -853,15 +582,6 @@ "Indica se la finestra deve essere ingrandita verso la barra delle " "applicazioni quando viene minimizzata con l'effetto «Ripiegatura orizzontale»." -msgid "Window Grid Height" -msgstr "Altezza griglia finestra" - -msgid "Window Grid Width" -msgstr "Larghezza griglia finestra" - -msgid "Window folding direction." -msgstr "Direzione ripiegatura finestra." - msgid "Window that should animate with this effect when focused." msgstr "Finestra che dovrebbe animarsi con questo effetto quando ha il focus." @@ -869,14 +589,6 @@ msgstr "" "Finestra che dovrebbe essere animata con questo effetto quando sfumata." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Spessore delle finestre in pixel. Impostando questo parametro a un valore " -"maggiore di 0 disabiliterà le ombre, la sfocatura e i riflessi durante le " -"animazioni." - # (ndt) in questo caso lasciato zoom # perché ingrandisce e rimpicciolisce la finestra # come uno zoom fotografico @@ -912,7 +624,7 @@ # (ndt) opzione msgid "Enable colors" -msgstr "Attiva colori" +msgstr "Abilitare colori" msgid "Fish size" msgstr "Dimensione pesce" @@ -933,7 +645,7 @@ msgstr "Dimensione balena" msgid "Whale size." -msgstr "Dimensione balena." +msgstr "Dimensione della balena." msgid "A simple benchmark plugin" msgstr "Un semplice plug-in per effettuare benchmark" @@ -961,7 +673,7 @@ # (NdT) opzione msgid "Enable" -msgstr "Attivare" +msgstr "Abilitare" # (NdT) questo è il nome di un'azione msgid "Initiate" @@ -998,65 +710,11 @@ msgid "Y position" msgstr "Posizione Y" -msgid "Brightness Decrease" -msgstr "Diminuzione luminosità" - -msgid "Brightness Increase" -msgstr "Aumento luminosità" +msgid "Bicubic filter" +msgstr "Filtro bicubico" -msgid "Brightness Step" -msgstr "Passo luminosità" - -msgid "Brightness and Saturation" -msgstr "Luminosità e saturazione" - -msgid "Brightness and Saturation adjustments" -msgstr "Regolazioni luminosità e saturazione" - -msgid "Brightness settings" -msgstr "Impostazioni luminosità" - -msgid "Brightness values for windows" -msgstr "Valori luminosità per le finestre" - -msgid "Brightness window values" -msgstr "Valori luminosità finestre" - -msgid "Brightness windows" -msgstr "Luminosità finestre" - -msgid "General" -msgstr "Generale" - -msgid "Saturation Decrease" -msgstr "Diminuzione saturazione" - -msgid "Saturation Increase" -msgstr "Aumento saturazione" - -msgid "Saturation Step" -msgstr "Passo saturazione" - -msgid "Saturation settings" -msgstr "Impostazioni saturazione" - -msgid "Saturation values for windows" -msgstr "Valori saturazione per le finestre" - -msgid "Saturation window values" -msgstr "Valori saturazione finestre" - -msgid "Saturation windows" -msgstr "Saturazione finestre" - -msgid "Window specific" -msgstr "Specifico alla finestra" - -msgid "Windows that should have a different brightness by default" -msgstr "Finestre con luminosità diversa in modo predefinito" - -msgid "Windows that should have a different saturation by default" -msgstr "Finestre con saturazione diversa in modo predefinito" +msgid "Bicubic texture filtering" +msgstr "Filtro texture bicubico" # (NdT) nome del plug-in msgid "Color filter" @@ -1113,7 +771,7 @@ "Window decorations (borders and titlebar) will be filtered as well as window " "contents if enabled." msgstr "" -"Se attivato, le decorazioni della finestra (bordi e barra del titolo) e i " +"Se abilitato, le decorazioni della finestra (bordi e barra del titolo) e i " "contenuti saranno filtrati." # (NdT) suggerimento @@ -1142,7 +800,7 @@ # (NdT) opzione msgid "Enable Crash Handler" -msgstr "Attivare «Gestore crash»" +msgstr "Abilitare «Gestore crash»" # (NdT) opzione msgid "Start Other Window Manager" @@ -1160,7 +818,10 @@ # (NdT) suggerimento msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "" -"Comando per avviare un gestore di finestre alternativo. Non scrivere «compiz»!" +"Comando per avviare un gestore di finestre alternativo. Non scrivere «compiz»." + +msgid "Above" +msgstr "Sopra" # (NdT) suggerimento msgid "Adjust bottom face image to rotation" @@ -1187,6 +848,18 @@ msgid "Appearance" msgstr "Aspetto" +msgid "Aspect ratio" +msgstr "Proporzioni" + +msgid "Aspect ratio of the deformed cube" +msgstr "Proporzioni del cubo deformato" + +msgid "Auto zoom" +msgstr "Zoom automatico" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zoom automatico solo alla rotazione col mouse" + msgid "Behaviour" msgstr "Comportamento" @@ -1223,19 +896,56 @@ msgid "Color of bottom face of the cube" msgstr "Colore della faccia inferiore del cubo" +msgid "Color of the ground (far)." +msgstr "Colore della base (lontano)." + +msgid "Color of the ground (near)." +msgstr "Colore della base (vicino)." + # (NdT) suggerimento msgid "Color of top face of the cube" msgstr "Colore della faccia superiore del cubo" +msgid "Compiz cube reflection and deformation" +msgstr "Riflesso e deformazione del cubo di Compiz" + msgid "Cube Bottom Color" msgstr "Colore inferiore del cubo" -msgid "Cube Caps" -msgstr "Immagini ai capi del cubo" +# (ndt) opzione +msgid "Cube Reflection and Deformation" +msgstr "Riflesso e deformazione del cubo" msgid "Cube Top Color" msgstr "Colore superiore del cubo" +msgid "Cube caps" +msgstr "Capi del cubo" + +msgid "Cylinder" +msgstr "Cilindro" + +msgid "Deform caps" +msgstr "Deformare i capi" + +msgid "Deform cube caps." +msgstr "Deforma i capi del cubo." + +msgid "Deform only on mouse rotate" +msgstr "Deformare solo alla rotazione col mouse" + +msgid "Deformation" +msgstr "Deformazione" + +msgid "Deformation in unfold cube mode." +msgstr "Deformazione all'apertura del cubo." + +msgid "Deformation mode." +msgstr "Modalità di deformazione" + +msgid "Distance" +msgstr "Distanza" + # (NdT) opzione msgid "Draw bottom face" msgstr "Disegnare la faccia inferiore" @@ -1252,12 +962,39 @@ msgid "Draw top face of the cube" msgstr "Disegna la faccia superiore del cubo" +# (NdT) opzione +msgid "Enabled" +msgstr "Abilitato" + +msgid "Give cube a reflective ground." +msgstr "Fornisce al cubo una base riflettente." + msgid "Go back to previous image for bottom face of the cube" msgstr "Torna all'immagine precedente per la faccia inferiore del cubo" msgid "Go back to previous image for top face of the cube" msgstr "Torna all'immagine precedente per la faccia superiore del cubo" +msgid "Ground color(far)" +msgstr "Colore della base (lontano)" + +msgid "Ground color(near)" +msgstr "Colore della base (vicino)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" +"Inizializza la deformazione del cilindro solo se la rotazione è guidata dal " +"mouse." + +msgid "Intensity" +msgstr "Intensità" + +msgid "Jumpy" +msgstr "Saltellante" + +msgid "Jumpy reflection" +msgstr "Riflesso saltellante" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "Elenco di file PNG e SVG da usare per la faccia inferiore del cubo" @@ -1265,6 +1002,20 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "Elenco di file PNG e SVG da usare per la faccia superiore del cubo" +msgid "Maintain bottom aspect ratio" +msgstr "Mantenere proporzioni inferiori" + +# (NdT) suggerimento +msgid "Maintain bottom cap image aspect ratio." +msgstr "Mantiene le proporzioni dell'immagine inferiore." + +msgid "Maintain top aspect ratio" +msgstr "Mantenere proporzioni superiori" + +# (NdT) suggerimento +msgid "Maintain top cap image aspect ratio." +msgstr "Mantiene le proporzioni dell'immagine superiore." + msgid "Next bottom image" msgstr "Immagine inferiore successiva" @@ -1277,8 +1028,25 @@ msgid "Prev top image" msgstr "Immagine superiore precedente" -msgid "Render images on top and bottom of the cube" -msgstr "Applica delle immagini alle facce superiore e inferiore del cubo" +msgid "Reflection" +msgstr "Riflesso" + +msgid "Reflection ground size" +msgstr "Dimensione base riflesso" + +# (ndt) suggerimento +msgid "Reflection ground size." +msgstr "Dimensione della base del riflesso." + +# (ndt) suggerimento +msgid "Reflection intensity" +msgstr "Intensità del riflesso" + +msgid "Reflection mode" +msgstr "Modalità riflesso" + +msgid "Reflection mode." +msgstr "La modalità del riflesso." # (NdT) opzione msgid "Scale bottom image" @@ -1296,76 +1064,38 @@ msgid "Scale top image" msgstr "Scalare immagine superiore" +msgid "Sphere" +msgstr "Sfera" + msgid "Top image files" msgstr "File immagine superiore" -msgid "Above" -msgstr "Sopra" +msgid "Unfold cube deformation" +msgstr "Deformazione apertura cubo" -msgid "Auto zoom" -msgstr "Zoom automatico" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Esegue lo zoom automatico solo alla rotazione col mouse." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zoom automatico solo alla rotazione col mouse" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Esegue lo zoom automatico per mostrare tutto il cubo sullo schermo." -msgid "Color of the ground (far)." -msgstr "Colore della base (lontano)." +msgid "Cube Caps" +msgstr "Capi del cubo" -msgid "Color of the ground (near)." -msgstr "Colore della base (vicino)." +msgid "Render images on top and bottom of the cube" +msgstr "Applica delle immagini alle facce superiore e inferiore del cubo" msgid "Compiz cube reflection" -msgstr "Riflesso del cubo di Compiz" +msgstr "Riflesso del cubo" msgid "Cube Reflection" msgstr "Riflesso del cubo" -msgid "Distance" -msgstr "Distanza" - -msgid "Ground color(far)" -msgstr "Colore della base (lontano)" - -msgid "Ground color(near)" -msgstr "Colore della base (vicino)" - -msgid "Intensity" -msgstr "Intensità" - -msgid "Jumpy" -msgstr "Saltellante" - -msgid "Jumpy reflection" -msgstr "Riflesso saltellante" - -msgid "Reflection ground size" -msgstr "Dimensione base riflesso" - -# (ndt) suggerimento -msgid "Reflection ground size." -msgstr "Dimensione della base del riflesso." - -# (ndt) suggerimento -msgid "Reflection intensity" -msgstr "Intensità del riflesso" - -msgid "Reflection mode" -msgstr "Modalità riflesso" - -msgid "Reflection mode." -msgstr "La modalità del riflesso." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Esegue lo zoom automatico solo alla rotazione col mouse." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Esegue lo zoom automatico per mostrare tutto il cubo sullo schermo." - msgid "Animation used when switching to expo mode" msgstr "Animazione da usare nel passaggio alla modalità «Expo»" msgid "Aspect Ratio" -msgstr "Proporzioni aspetto" +msgstr "Proporzioni" msgid "Button binding for drag & drop of windows" msgstr "Associazione pulsante per il drag & drop delle finestre" @@ -1384,9 +1114,6 @@ msgid "Curve strength" msgstr "Forza della curva" -msgid "Deformation" -msgstr "Deformazione" - msgid "Deformation of the expo wall" msgstr "Deformazione del muro «Expo»" @@ -1436,7 +1163,7 @@ msgstr "Tasto Expo" msgid "Expo mode aspect ratio" -msgstr "Proporzioni aspetto per la modalità «Expo»" +msgstr "Proporzioni per la modalità «Expo»" msgid "Fade + Zoom" msgstr "Dissolvi + Zoom" @@ -1479,10 +1206,7 @@ msgstr "Una muraglia per output" msgid "Previous viewport" -msgstr "Area di lavoro precedente" - -msgid "Reflection" -msgstr "Riflesso" +msgstr "Area di lavoro precedente" msgid "Reflection Scale" msgstr "Scala riflesso" @@ -1529,9 +1253,8 @@ msgid "Zoom time" msgstr "Tempo dello zoom" -#, fuzzy msgid "Activate Demanding Attention Window" -msgstr "Attiva una determinata finestra" +msgstr "Attiva finestra con richiesta di attenzione" msgid "Activate Window" msgstr "Attiva finestra" @@ -1541,6 +1264,8 @@ msgid "Activate next window which has the \"demands attention\" flag set." msgstr "" +"Attiva la finestra successiva che ha il flag di richiesta attenzione " +"impostato." msgid "Extra WM Actions" msgstr "Azioni aggiuntive gestore finestre" @@ -1599,21 +1324,24 @@ msgid "Center the mouse" msgstr "Mouse al centro" +msgid "Dynamic mouse pointer scale" +msgstr "Ridimensionare dinamicamente il puntatore del mouse" + # (ndt) opzione msgid "Enable focus tracking" -msgstr "Attivare inseguimento del focus" +msgstr "Abilitare inseguimento del focus" msgid "Enable this to get a gradually larger mouse pointer as you zoom in" msgstr "" -"Attivare questo per ottenere un puntatore del mouse sempre più grande " +"Abilitare questo per ottenere un puntatore del mouse sempre più grande " "durante l'ingrandimento" msgid "" "Enable this to target the focused window when jumping to a specific zoom " "level. Disable to target mouse." msgstr "" -"Attivare questo per mantenere la finestra col focus passando a un livello di " -"ingrandimento specifico. Disabilitarlo per seguire il mouse." +"Abilitare questo per mantenere la finestra col focus passando a un livello " +"di ingrandimento specifico. Disabilitarlo per seguire il mouse." msgid "Enhanced Zoom Desktop" msgstr "Ingrandimento desktop avanzato" @@ -1669,19 +1397,12 @@ "Nasconde il puntatore originale del mouse negli ingrandimenti e nella " "scalatura del mouse" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Tempo in millisecondi ogni quanto chiedere lo posizione del mouse. Ridurre " -"questo valore per evitare rallentamenti." +msgid "Minimum zoom factor" +msgstr "Minimo fattore di ingrandimento" msgid "Mouse Behaviour" msgstr "Comportamento mouse" -msgid "Mouse Poll Interval" -msgstr "Intervallo richieste mouse" - msgid "Mouse Restrain Margin" msgstr "Margine limite del mouse" @@ -1788,6 +1509,9 @@ msgid "Speed" msgstr "Velocità" +msgid "Static mouse pointer scale" +msgstr "Ridimensionare staticamente il puntatore del mouse" + # (ndt) opzione msgid "Sync Mouse" msgstr "Sincronizzare il mouse" @@ -1798,6 +1522,13 @@ msgid "Target Focused Window on Specific level" msgstr "Applicare il livello specifico alla finestra col focus" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" +"Il fattore minimo di ingrandimento consentito. Un valore di 0.5 equivale a " +"un ingrandimento 2×, un valore di 0.25 a un ingrandimento 4×." + # (ndt) suggerimento msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" @@ -1818,9 +1549,29 @@ msgid "Use linear filter when zoomed in" msgstr "Usa il filtro lineare nell'ingrandimento" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" +"Quando non viene usata il ridimensionamento dinamico del puntatore del " +"mouse, questo è il fattore di scala per il puntatore." + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" +"Quando viene ridimensionato il puntatore del mouse, questa opzione regola la " +"scala in base al livello di zoom attuale." + msgid "Zoom Area Movement" msgstr "Movimento zoom" +# (ndt) in questo caso lasciato zoom +# perché ingrandisce e rimpicciolisce la finestra +# come uno zoom fotografico +msgid "Zoom Box" +msgstr "Riquadro di zoom" + msgid "Zoom In" msgstr "Ingrandisci" @@ -1848,6 +1599,9 @@ msgid "Zoom factor" msgstr "Fattore ingrandimento" +msgid "Zoom in on a boxed area" +msgstr "Ingrandisce un'area delimitata" + # (ndt) suggerimento msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" @@ -1906,6 +1660,14 @@ msgid "Toggle window fake ARGB." msgstr "Attiva la falsa trasparenza ARGB della finestra." +msgid "Add Particle" +msgstr "Aggiungere particella" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" +"Aggiunge una particella alla posizione (x,y), x e y sono numeri in virgola " +"mobile." + msgid "Background brightness" msgstr "Luminosità dello sfondo" @@ -1921,6 +1683,35 @@ msgid "Clear (key)" msgstr "Pulisci (tasto)" +msgid "Fire Particle Color" +msgstr "Colore fiamme" + +msgid "Fire Particle Life" +msgstr "Durata fiamme" + +msgid "Fire Particle Size" +msgstr "Dimensione fiamme" + +msgid "Fire Particle Slowdown" +msgstr "Velocità fiamme" + +msgid "Fire particle color." +msgstr "Colore delle fiamme." + +msgid "Fire particle life." +msgstr "Durata delle fiamme." + +msgid "Fire particle size." +msgstr "Dimensione delle fiamme." + +msgid "Fire particle slowdown." +msgstr "Velocità di evoluzione delle fiamme." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Colora le fiamme in modo casuale, l'effetto viene anche chiamato «Fuoco " +"mistico»." + msgid "Initiate (button)" msgstr "Avvia (pulsante)" @@ -1942,6 +1733,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Disegna sullo schermo usando il fuoco o altre particelle" +msgid "Randomly Colored Fire" +msgstr "Fuoco mistico" + msgid "Cube Gears" msgstr "Ingranaggi cubo" @@ -2024,7 +1818,7 @@ # (ndt) opzione msgid "Enable Glow" -msgstr "Attivare bagliore" +msgstr "Abilitare bagliore" # (ndt) suggerimento msgid "Enable grouped window glowing" @@ -2048,6 +1842,9 @@ msgid "Font Size" msgstr "Dimensione carattere" +msgid "General" +msgstr "Generale" + msgid "Glass" msgstr "Vetro" @@ -2699,9 +2496,19 @@ msgid "Start gesture" msgstr "Inizia gesto" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Tempo in millisecondi ogni quanto chiedere lo posizione del mouse. Ridurre " +"questo valore per evitare rallentamenti." + msgid "Misc" msgstr "Varie" +msgid "Mouse Poll Interval" +msgstr "Intervallo richieste mouse" + msgid "Mouse position polling" msgstr "Recupero posizione del mouse" @@ -2722,6 +2529,7 @@ msgid "Also negate window decorations, not only the window contents." msgstr "" +"Mette in negativo anche le decorazioni delle finestre, non solo i contenuti." msgid "Exclude Windows" msgstr "Escludi finestre" @@ -2729,10 +2537,8 @@ msgid "Neg Windows" msgstr "Finestre in negativo" -# (ndt) opzione -#, fuzzy msgid "Negate Decorations" -msgstr "Riflessi per le decorazioni" +msgstr "Negativo delle decorazioni" msgid "Negative" msgstr "Negativo" @@ -2791,7 +2597,7 @@ "Timeout (in seconds) before hiding the notification, set to -1 for system " "default and 0 for indefinite" msgstr "" -"Timeout (in secondi) prima di nascondere la notifica, impostare a -1 per il " +"Tempo (in secondi) prima di nascondere la notifica, impostare a -1 per il " "predefinito di sistema, 0 per indefinito" msgid "Warning" @@ -2899,14 +2705,15 @@ msgid "Toggle Opacify" msgstr "Commuta «Opacizza»" +# (ndt) opzione msgid "Toggle Opacify on by default" -msgstr "Attiva «Opacizza» in modo predefinito" +msgstr "Abilitare «Opacizza» in modo predefinito" msgid "" "Use this to enable/disable Opacify on the fly. Previously opacified windows " "will not be reset once you disable it like this." msgstr "" -"Usare questo per attivare/disattivare «Opacizza» al volo. Le finestre " +"Usare questo per abilitare/disabilitare «Opacizza» al volo. Le finestre " "precedentemente opacizzate non saranno ripristinate una volta disabilitato " "in questo modo." @@ -3178,6 +2985,7 @@ msgid "Draw Reflection for windows." msgstr "Disegna il riflesso per le finestre." +# (ndt) descrizione msgid "Draws reflections" msgstr "Disegna dei riflessi" @@ -3490,8 +3298,11 @@ msgid "Background color of the window title" msgstr "Colore di sfondo del titolo della finestra" -msgid "Close Windows In Scale" -msgstr "Chiudere finestre in «Scala finestre»" +msgid "Close Window" +msgstr "Chiudi finestra" + +msgid "Close window while in scale mode" +msgstr "Chiude la finestra mentre in modalità «Scala finestre»" msgid "Close windows while in scale mode" msgstr "Chiude le finestre in modalità «Scala finestre»" @@ -3499,10 +3310,20 @@ msgid "Color used for highlighting the hovered window" msgstr "Colore utilizzato per evidenziare la finestra selezionata" +msgid "Constrain Pull To Screen" +msgstr "Limitare il tiro allo schermo" + # (ndt) opzione msgid "Draw Window Highlight" msgstr "Evidenziare finestra" +msgid "Exit Scale On Pull" +msgstr "Uscire dalla modalità scala al tiro" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" +"Esce dalla modalità «Scala finestre» dopo che una finestra è stata tirata." + # (ndt) suggerimento msgid "Font color of the window title" msgstr "Colore del carattere del titolo della finestra" @@ -3523,6 +3344,12 @@ msgstr "" "Evidenzia la finestra su cui ci si sofferma col mouse con un dato colore" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"Rende le finestre completamente visibili dopo averle tirate in un'altra area " +"di lavoro" + msgid "No display" msgstr "Nessuna visualizzazione" @@ -3532,8 +3359,17 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organico (sperimentale)" +# (ndt) non mi piace per niente... +msgid "Pull Window" +msgstr "Tira la finestra" + +msgid "Pull window to current viewport while in scale mode" +msgstr "" +"Tira la finestra nell'area di lavoro attuale quando in modalità Scala " +"finestre" + msgid "Scale Addons" -msgstr "Proprietà aggiuntiva di «Scala finestre»" +msgstr "Proprietà aggiuntive di «Scala finestre»" # (ndt) suggerimento msgid "Selects the mode to layout the windows in scale mode" @@ -3559,6 +3395,9 @@ msgid "Window Layout Mode" msgstr "Modalità disposizione finestra" +msgid "Window Pull" +msgstr "Finestra tirata" + msgid "Window Title" msgstr "Titolo finestra" @@ -3569,10 +3408,10 @@ msgid "Window title display in scale mode" msgstr "Mostra il titolo della finestra nella modalità ridotta" -msgid "Zoom Windows In Scale" -msgstr "Zoom sulle finestre in scala" +msgid "Zoom Window" +msgstr "Zoom sulla finestra" -msgid "Zoom windows while in scale mode" +msgid "Zoom window while in scale mode" msgstr "Esegue lo zoom sulle finestre nella modalità «Scala finestre»" # (ndt) opzione @@ -3581,7 +3420,7 @@ # (ndt) opzione msgid "Filter Type Timeout" -msgstr "Timeout digitazione filtro" +msgstr "Tempo digitazione filtro" msgid "Scale Window Title Filter" msgstr "Filtro sul titolo della finestra in «Scala finestre»" @@ -3633,16 +3472,16 @@ msgstr "Directory" msgid "Initiate screencasting" -msgstr "Inizia registrazione tutorial" +msgstr "Inizia registrazione video" msgid "Put screenshot images in this directory" msgstr "Mettere le schermate in questa directory" msgid "ScreenCast plugin" -msgstr "Plug-in di cattura tutorial video" +msgstr "Plug-in di cattura video" msgid "ScreenCasting" -msgstr "Tutorial video" +msgstr "Video" msgid "" "Also try to save and restore legacy apps that don't support the X session " @@ -3857,7 +3696,7 @@ msgstr "Modalità del selettore." msgid "Terminate" -msgstr "Terminare" +msgstr "Termina" msgid "Terminate switcher." msgstr "Termina il selettore." @@ -3873,12 +3712,21 @@ msgid "Direction of window movement" msgstr "Direzione del movimento della finestra" +msgid "Down" +msgstr "Giù" + +msgid "Left" +msgstr "Sinistra" + msgid "Left/Right" msgstr "Sinistra/Destra" msgid "Movement Direction" msgstr "Direzione movimento" +msgid "Right" +msgstr "Destra" + # (ndt) nome del plug-in msgid "Show desktop" msgstr "Mostra scrivania" @@ -3886,6 +3734,9 @@ msgid "To Corners" msgstr "Agli angoli" +msgid "Up" +msgstr "Su" + msgid "Up/Down" msgstr "Su/Giù" @@ -4010,7 +3861,7 @@ msgstr "Scegliere «Resistenza», «Attrazione» o «Modalità piena»." msgid "Control" -msgstr "Control" +msgstr "Ctrl" msgid "Edge Attraction Distance" msgstr "Distanza attrazione bordo" @@ -4027,8 +3878,9 @@ msgid "Edges" msgstr "Bordi" +# (ndt) suggerimento msgid "Enables windows edges resistance" -msgstr "Attiva la resistenza delle finestre ai bordi" +msgstr "Abilita la resistenza delle finestre ai bordi" msgid "Meta" msgstr "Meta" @@ -4077,17 +3929,17 @@ "del processore." msgid "Enable Blending" -msgstr "Attivare trasformazione" +msgstr "Abilitare trasformazione" msgid "Enable Textures" -msgstr "Attivare texture" +msgstr "Abilitare texture" msgid "Enables alpha blending of snowflakes." -msgstr "Attiva trasformazione alfa sui fiocchi di neve." +msgstr "Abilita trasformazione alfa sui fiocchi di neve." msgid "Enables textured snowflakes. If not selected, color gradients are used." msgstr "" -"Attiva texture per i fiocchi di neve. Se questa opzione non è selezionata, " +"Abilita texture per i fiocchi di neve. Se questa opzione non è selezionata, " "sono utilizzati i gradienti di colore." msgid "Flakes rotate if checked." @@ -4230,6 +4082,221 @@ msgid "Start Splash." msgstr "Avvia «Splash»." +# (ndt) suggerimento +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Quantità di opacità (in percentuale) per le finestre nel selettore che non " +"sono selezionate" + +msgid "Behavior" +msgstr "Comportamento" + +# (ndt) suggerimento +msgid "Darken background when showing the stack" +msgstr "Oscurare lo sfondo alla visualizzazione della pila" + +msgid "On Thumbnail" +msgstr "Sulla miniatura" + +msgid "Rotate inactive windows" +msgstr "Ruotare le finestre inattive" + +msgid "Should not selected windows be rotated" +msgstr "Indica se le finestre non selezionate debbano essere ruotate" + +msgid "Stack Window Switcher" +msgstr "Selettore finestre a pila" + +msgid "Tilt angle of the background." +msgstr "Inclina l'angolo dello sfondo" + +msgid "Windows" +msgstr "Finestre" + +msgid "Windows that should be shown in the switcher" +msgstr "Finestre da mostrare nel selettore" + +msgid "Alignment for rows that are not fully filled" +msgstr "Allineamento per le righe non completamente piene" + +msgid "Amount of brightness in percent" +msgstr "Luminosità in percentuale" + +msgid "Amount of opacity in percent" +msgstr "Opacità in percentuale" + +msgid "Amount of saturation in percent" +msgstr "Saturazione in percentuale" + +msgid "Auto Change Viewport" +msgstr "Cambiamento automatico area di lavoro" + +msgid "Bring Selected To Front" +msgstr "Portare la selezione in primo piano" + +msgid "Centered" +msgstr "Centrato" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" +"Passa all'area di lavoro della finestra selezionata durante la selezione" + +msgid "Color of highlight rectangle" +msgstr "Colore del rettangolo di evidenziazione" + +msgid "Color of highlight rectangle border" +msgstr "Colore del bordo del rettangolo di evidenziazione" + +msgid "Color of inlay in highlight rectangle border" +msgstr "Colore dell'intaglio nel bordo del rettangolo di evidenziazione" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Genera mipmap quando possibile per una migliore qualità" + +msgid "Highlight Border Color" +msgstr "Colore bordo evidenziazione" + +msgid "Highlight Border Inlay Color" +msgstr "Colore intaglio bordo evidenziazione" + +msgid "Highlight Mode" +msgstr "Modalità evidenziazione" + +msgid "Icon" +msgstr "Icona" + +msgid "Minimized Window Highlight Rectangle" +msgstr "Rettangolo evidenziazione finestra minimizzata" + +msgid "Mipmap" +msgstr "Mipmap" + +msgid "Mode for highlighting the currently selected window" +msgstr "Modalità per evidenziare la finestra selezionata" + +msgid "Next Panel" +msgstr "Pannello successivo" + +msgid "Next window" +msgstr "Finestra successiva" + +msgid "Next window (All windows)" +msgstr "Finestra successiva (tutte le finestre)" + +msgid "Next window (Group)" +msgstr "Finestra successiva (gruppo)" + +msgid "Next window (No popup)" +msgstr "Finestra successiva (niente pop-up)" + +msgid "Original Window Position" +msgstr "Posizione originale della finestra" + +msgid "Popup Window Delay" +msgstr "Ritardo finestra pop-up" + +msgid "Popup switcher if not visible and select next window" +msgstr "Mostra il selettore se non visibile e seleziona la finestra successiva" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Mostra il selettore se non visibile e seleziona la finestra successiva " +"dell'applicazione corrente" + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Mostra il selettore se non visibile e seleziona la finestra successiva tra " +"tutte le finestre" + +msgid "Popup switcher if not visible and select previous window" +msgstr "Mostra il selettore se non visibile e seleziona la finestra precedente" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Mostra il selettore se non visibile e seleziona la finestra precedente " +"dell'applicazione corrente" + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Mostra il selettore se non visibile e seleziona la finestra precedente tra " +"tutte le finestre" + +msgid "Prev Panel" +msgstr "Pannello precedente" + +msgid "Prev window" +msgstr "Finestra precedente" + +msgid "Prev window (All windows)" +msgstr "Finestra precedente (tutte le finestre)" + +msgid "Prev window (Group)" +msgstr "Finestra precedente (gruppo)" + +msgid "Prev window (No popup)" +msgstr "Finestra precedente (niente pop-up)" + +msgid "Row Alignment" +msgstr "Allineamento riga" + +# (ndt) non mi è molto chiaro cosa faccia +msgid "Select next panel type window." +msgstr "Seleziona il pannello successivo" + +msgid "Select next window without showing the popup window." +msgstr "Seleziona la finestra successiva senza mostrare la finestra di pop-up" + +# (ndt) non mi è molto chiaro cosa faccia +msgid "Select previous panel type window." +msgstr "Seleziona il pannello precedente" + +msgid "Select previous window without showing the popup window." +msgstr "Seleziona la finestra precedente senza mostrare la finestra di pop-up" + +msgid "Selected Window Highlight" +msgstr "Evidenziazione finestra selezionata" + +msgid "Show Rectangle" +msgstr "Mostrare rettangolo" + +msgid "Show icon next to thumbnail" +msgstr "Mostrare icona vicino la miniatura" + +msgid "Show minimized windows" +msgstr "Mostrare finestre minimizzate" + +msgid "Static Application Switcher" +msgstr "Selettore applicazione statico" + +msgid "Switcher speed" +msgstr "Velocità selettore" + +msgid "Switcher timestep" +msgstr "Intervallo selettore" + +msgid "Switcher windows" +msgstr "Finestre da selezionare" + +msgid "Taskbar Entry" +msgstr "Voce barra delle applicazioni" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "Tempo (in secondi) prima che la finestra pop-up venga mostrata" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" +"Dove disegnare il rettangolo di evidenziazione per le finestre minimizzate" + +msgid "Windows that should be shown in switcher" +msgstr "Finestre da mostrare nel selettore" + msgid "Render text to texture" msgstr "Rende il testo in texture" @@ -4239,7 +4306,7 @@ # (ndt) non so se sia un'opzione... # nel qual caso va all'infinito... msgid "Enable Titles" -msgstr "Attiva titoli" +msgstr "Abilitare titoli" msgid "Fade In/Out Duration" msgstr "Durata dissolvenza" @@ -4464,7 +4531,7 @@ "is enabled so that when you resize a window surrounding windows resize " "accordingly. This may cause problems if you dont leave them enough space." msgstr "" -"Cerca di unire le finestre assieme quando è attivato l'accostamento " +"Cerca di unire le finestre assieme quando è abilitato l'accostamento " "orizzontale, verticale o allineato a destra, in modo tale che quando una " "finestra viene ridimensionata, anche le altre lo siano. Questo potrebbe " "causare problemi se non viene lasciato loro abbastanza spazio." @@ -4896,7 +4963,7 @@ msgstr "Colore del bordo esterno del selettore." msgid "Preview Scale" -msgstr "" +msgstr "Anteprima Scala finestre" # (ndt) suggerimento msgid "Radius of the rounded edge" @@ -4937,7 +5004,7 @@ #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Dimensione anteprima in %" msgid "Switch Target Preview Visibility Time" msgstr "Tempo visibilità anteprima selettore aree di lavoro" @@ -4967,7 +5034,7 @@ msgstr "Durata scorrimento muraglia" msgid "Width of the border between the previews" -msgstr "" +msgstr "Larghezza del bordo tra le anteprime" msgid "Background fill type." msgstr "Tipo di riempimento dello sfondo." @@ -4978,9 +5045,6 @@ msgid "Center Tiled" msgstr "Piastrellato al centro" -msgid "Centered" -msgstr "Centrato" - msgid "Color 1" msgstr "Colore 1" @@ -5111,6 +5175,12 @@ msgid "Matches" msgstr "Corrispondenze" +msgid "Maximized" +msgstr "Massimizzate" + +msgid "Maximized windows" +msgstr "Finestre massimizzate" + msgid "No ARGB visuals" msgstr "No ARGB visuale" @@ -5190,6 +5260,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Correzione parametro AIGLX Fragment" +msgid "Convert Urgency to Demands Attention" +msgstr "Conversione delle finestre con flag \"urgent\" in \"demand attention\"" + msgid "Firefox Menu Fix" msgstr "Correzione menù Firefox" @@ -5234,6 +5307,10 @@ "Rende le finestre adesive su tutte le scrivanie. Le finestre adesive sono " "visibili in tutte le aree di lavoro." +# (ndt) traduzione precedente: flag richiesta attenzione +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "Rende le finestre \"urgent\" anche \"demand attention\"." + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "Fa in modo che le applicazioni Wine e quelle più datate funzionino " @@ -5260,8 +5337,250 @@ msgid "Workarounds" msgstr "Alternative" -#~ msgid "Animation Speed" -#~ msgstr "Velocità animazione" +#~ msgid "Airplane" +#~ msgstr "Aeroplano" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Lunghezza percorso aeroplano" + +# (ndt) non so dove compaia questo suggerimento... +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Intervallo animazione per l'effetto intenso" + +#~ msgid "Automatic" +#~ msgstr "Automatico" + +#~ msgid "Beam" +#~ msgstr "Fascio di luce" + +#~ msgid "Beam Color" +#~ msgstr "Colore fascio di luce" + +#~ msgid "Beam Life" +#~ msgstr "Durata fascio di luce" + +#~ msgid "Beam Slowdown" +#~ msgstr "Rallentamento fascio di luce" + +#~ msgid "Beam Spacing" +#~ msgstr "Spaziatura fasci di luce" + +# (NdT) non vedo perchè chiamarlo in modo diverso +# tra la selezione e la modifica dell'effetto +#~ msgid "Beam Up" +#~ msgstr "Fascio di luce" + +#~ msgid "Beam Width" +#~ msgstr "Larghezza fascio di luce" + +# (NdT) suggerimento +#~ msgid "Beam color." +#~ msgstr "Colore del fascio di luce." + +# (NdT) suggerimento +#~ msgid "Beam life." +#~ msgstr "Durata del fascio di luce." + +# (NdT) suggerimento +#~ msgid "Beam slowdown." +#~ msgstr "Rallentamento del fascio di luce." + +# (NdT) suggerimento +#~ msgid "Beam width." +#~ msgstr "Larghezza fascio di luce." + +#~ msgid "Burn" +#~ msgstr "Brucia" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Direzione caduta pezzi del domino" + +#~ msgid "Explode" +#~ msgstr "Esplodi" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Direzione di caduta dei pezzi del domino." + +# (NdT) anche qui... perché non usare lo stesso +# nome dell'effetto quando si deve modificare? +#~ msgid "Fire" +#~ msgstr "Brucia" + +#~ msgid "Fire Smoke" +#~ msgstr "Fuoco e fumo" + +#~ msgid "Fire constant speed" +#~ msgstr "Velocità costante del fuoco" + +#~ msgid "Fire direction" +#~ msgstr "Direzione del fuoco" + +#~ msgid "Fire direction." +#~ msgstr "Direzione del fuoco." + +# (NdT) suggerimento +#~ msgid "Fire smoke." +#~ msgstr "Aggiunge il fumo al fuoco." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Vola nella barra delle applicazioni alla minimizzazione." + +#~ msgid "Fold" +#~ msgstr "Ripiegatura" + +#~ msgid "Fold Direction" +#~ msgstr "Direzione pieghe" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Direzione di apertura dei pezzi nell'effetto «Rasoio»." + +#~ msgid "Hexagonal" +#~ msgstr "Esagonale" + +#~ msgid "In" +#~ msgstr "Dentro" + +#~ msgid "In-out" +#~ msgstr "Dentro/Fuori" + +#~ msgid "Leaf Spread" +#~ msgstr "Caduta foglie" + +#~ msgid "Left-right" +#~ msgstr "Sinistra/Destra" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Lunghezza del percorso di volo dell'aeroplano." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "" +#~ "Rende la durata dell'effetto del fuoco dipendente dall'altezza della " +#~ "finestra." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Direzione dei pezzi della finestra." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Numero particelle di fuoco" + +#~ msgid "Number of fire particles." +#~ msgstr "Numero delle particelle di fuoco." + +#~ msgid "Out" +#~ msgstr "Fuori" + +#~ msgid "Razr" +#~ msgstr "Rasoio" + +# (NdT) opzione disponibile solo con l'effetto Rasoio +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Direzione apertura" + +#~ msgid "Rectangular" +#~ msgstr "Rettangolare" + +#~ msgid "Rotation Angle" +#~ msgstr "Angolo di rotazione" -#~ msgid "Change the speed of the 3D animation" -#~ msgstr "Modifica la velocità dell'animazione 3D" +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Angolo di rotazione dei pezzi animati della finestra (in gradi)." + +#~ msgid "Skewer" +#~ msgstr "Distorsione" + +#~ msgid "Skewer Direction" +#~ msgstr "Direzione distorsione" + +#~ msgid "Spacing between beams." +#~ msgstr "Spazio tra i fasci di luce." + +#~ msgid "Tessellation Type" +#~ msgstr "Tassellatura" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Tipo di tassellatura per i pezzi dell'esplosione della finestra." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Tipo di tassellatura per i pezzi della finestra." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Tempo in millisecondi tra ogni aggiornamento dell'animazione (come " +#~ "«Brucia», «Raggio luminoso»). Più alto il valore, più l'animazione va a " +#~ "scatti." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "La finestra animata sarà divisa in pezzi lungo una griglia. Specifica il " +#~ "numero di celle per l'altezza della finestra." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "La finestra animata sarà divisa in pezzi lungo una griglia. Specifica il " +#~ "numero di celle per la lunghezza della finestra." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "La finestra che esplode sarà divisa in pezzi lungo una griglia. Specifica " +#~ "il numero di celle per l'altezza della finestra." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "La finestra che esplode sarà divisa in pezzi lungo una griglia. Specifica " +#~ "il numero di celle per la larghezza della finestra." + +#~ msgid "Thickness" +#~ msgstr "Spessore" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Spessore dei poligoni animati" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Spessore dei poligoni dell'esplosione" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Spessore dei pezzi della finestra animata (in pixel)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Spessore dei pezzi della finestra che esplode (in pixel)." + +#~ msgid "Up-down" +#~ msgstr "Su/Giù" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Indica se la finestra deve volare nella barra delle applicazioni quando " +#~ "minimizzata con l'effetto «Aeroplano»." + +#~ msgid "Window Grid Height" +#~ msgstr "Altezza griglia finestra" + +#~ msgid "Window Grid Width" +#~ msgstr "Larghezza griglia finestra" + +#~ msgid "Window folding direction." +#~ msgstr "Direzione ripiegatura finestra." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Spessore delle finestre in pixel. Impostando questo parametro a un valore " +#~ "maggiore di 0 disabiliterà le ombre, la sfocatura e i riflessi durante le " +#~ "animazioni." diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/ja.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/ja.po --- compiz-fusion-plugins-unsupported-0.7.6/po/ja.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/ja.po 2008-09-17 14:29:33.000000000 +0100 @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" -"PO-Revision-Date: 2008-04-30 22:50+0900\n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" +"PO-Revision-Date: 2008-05-31 19:51+0900\n" "Last-Translator: jiro kawada \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" msgstr "マウスによる回転時のみ立体表示" @@ -117,6 +117,12 @@ msgid "Brightness of faded windows" msgstr "フェードしたウィンドウの明るさ" +msgid "Enable ADD Helper on start" +msgstr "スタート時点でヘルパーの追加をオン" + +msgid "Enables ADD helper when it is first loaded." +msgstr "ヘルパーの追加を読み込んだ時点で即利用可能にする" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "アクティブ・ウィンドウ以外を暗くして若干集中しやすくする" @@ -145,12 +151,6 @@ msgid "Window types that should be Opacified." msgstr "不透明度等の変更の適用対象にするウィンドウの種類" -msgid "Airplane" -msgstr "飛行機" - -msgid "Airplane Flying Path Length" -msgstr "飛行機の航路距離" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -159,20 +159,6 @@ "候補群から何も効果を選択していない場合、そのイベント時にはアニメーションな" "し。" -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"ウィンドウ幅に相対する水平折りたたみの振幅(折りたたみの波の大きさ)、負の値で" -"は外側に広がる" - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"ウィンドウ幅に相対する曲がりの振幅(折り曲げの波の大きさ)、負の値では外側に広" -"がる" - msgid "Angle of window at the end of the animation." msgstr "アニメーションの最終時点のウィンドウの角度" @@ -182,9 +168,6 @@ msgid "Animation Time Step" msgstr "アニメーション刻み時間" -msgid "Animation Time Step For Intense Effects" -msgstr "アニメーション刻み時間(激しい効果の)" - msgid "Animation duration in milliseconds for close effect." msgstr "閉じる時の効果のアニメーション持続時間(ミリ秒)" @@ -203,52 +186,12 @@ msgid "Animations" msgstr "アニメーション" -msgid "Automatic" -msgstr "自動" - msgid "Away Angle" msgstr "離れる角度" msgid "Away Position" msgstr "離れる位置" -msgid "Beam" -msgstr "ビーム" - -msgid "Beam Color" -msgstr "ビームの色" - -msgid "Beam Life" -msgstr "ビームの持続時間" - -msgid "Beam Slowdown" -msgstr "ビームのスローダウン" - -msgid "Beam Spacing" -msgstr "ビームの間隔" - -# スタートレック -msgid "Beam Up" -msgstr "転送ビーム" - -msgid "Beam Width" -msgstr "ビームの幅" - -msgid "Beam color." -msgstr "ビームの色" - -msgid "Beam life." -msgstr "ビームの持続時間" - -msgid "Beam slowdown." -msgstr "ビームのスローダウン" - -msgid "Beam width." -msgstr "ビームの幅" - -msgid "Burn" -msgstr "炎" - # CCSM上での表示に影響するので短い表記にしました msgid "Close Animation" msgstr "閉じる時の効果" @@ -273,7 +216,8 @@ msgid "Curved Fold" msgstr "折り曲げ" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "折り曲げの振幅" msgid "Dodge" @@ -282,15 +226,6 @@ msgid "Dodge Gap Ratio" msgstr "回避ずらし率" -msgid "Domino" -msgstr "ドミノ" - -msgid "Domino Piece Falling Direction" -msgstr "ドミノ片の落下方向" - -msgid "Down" -msgstr "下" - msgid "Dream" msgstr "夢" @@ -301,77 +236,22 @@ msgid "Effect Settings" msgstr "エフェクト設定" -msgid "Explode" -msgstr "爆発" - msgid "Fade" msgstr "フェード" -msgid "Falling direction for Domino pieces." -msgstr "ドミノ片が落下する方向" - -msgid "Fire" -msgstr "炎" - -msgid "Fire Particle Color" -msgstr "炎の色" - -msgid "Fire Particle Life" -msgstr "炎の寿命" - -msgid "Fire Particle Size" -msgstr "炎の大きさ" - -msgid "Fire Particle Slowdown" -msgstr "炎のスローダウン" - -msgid "Fire Smoke" -msgstr "炎の煙" - -msgid "Fire constant speed" -msgstr "定速の炎" - -msgid "Fire direction" -msgstr "炎の向き" - -msgid "Fire direction." -msgstr "炎の向き" - -msgid "Fire particle color." -msgstr "炎の色" - -msgid "Fire particle life." -msgstr "炎の寿命" - -msgid "Fire particle size." -msgstr "炎の大きさ" - -msgid "Fire particle slowdown." -msgstr "炎のスローダウン" - -msgid "Fire smoke." -msgstr "炎の煙" - msgid "Fixed window interior during the Rollup animation." msgstr "巻き上げアニメーション時にウィンドウ内部を固定して描画" -msgid "Fly to TaskBar on Minimize" -msgstr "最小化時にタスクバーへ飛行" - msgid "Focus Animation" msgstr "フォーカス時の効果" msgid "Focus Effect" msgstr "フォーカス時の効果" -msgid "Fold" -msgstr "折りたたみ" - -msgid "Fold Direction" -msgstr "折りたたみ方向" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "カミソリ効果における断片の展開方向" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "滑空 1" @@ -379,16 +259,11 @@ msgid "Glide 2" msgstr "滑空 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "炎効果にランダム色の色付け、いわゆる神秘的な炎" - -msgid "Hexagonal" -msgstr "六角形" - msgid "Horizontal Folds" msgstr "水平の折りたたみ" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "水平折りたたみの振幅" msgid "How spring-like the Sidekick animation should be." @@ -397,24 +272,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "ズームアニメーションのバネ効果" -msgid "In" -msgstr "内" - -msgid "In-out" -msgstr "内と外" - -msgid "Leaf Spread" -msgstr "散らばる葉っぱ" - -msgid "Left" -msgstr "左" - -msgid "Left-right" -msgstr "左と右" - -msgid "Length of airplane's flying path." -msgstr "飛行機の航路距離" - msgid "Magic Lamp" msgstr "魔法のランプ" @@ -436,9 +293,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "魔法ランプの開く/閉じる時の終点移動" -msgid "Make fire effect duration be dependent on window height." -msgstr "炎効果の持続時間をウィンドウの高さに委ねる" - msgid "Minimize Animation" msgstr "最小化時の効果" @@ -448,21 +302,12 @@ msgid "Minimize/Unminimize Only" msgstr "最小化や最小化解除時のみ" -msgid "Movement direction(s) for window pieces." -msgstr "ウィンドウ片の移動方向" - msgid "None" msgstr "なし" -msgid "Number Of Fire Particles" -msgstr "炎の数" - msgid "Number of Horizontal Folds" msgstr "水平折りたたみの折り数" -msgid "Number of fire particles." -msgstr "炎の数" - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "サイドキックの回転数(誤差±10%)" @@ -491,15 +336,13 @@ msgid "Options" msgstr "オプション" -msgid "Out" -msgstr "外" - msgid "Pool" msgstr "候補群" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "ランダム効果選択の場合の選択候補群。フルリストに戻すにはリセットをクリック。" @@ -512,36 +355,15 @@ msgid "Random Effects" msgstr "ランダムな効果" -msgid "Randomly Colored Fire" -msgstr "ランダム色の炎" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "フォーカスのため各回避を開始する時間のずれの割合" -msgid "Razr" -msgstr "カミソリ" - -msgid "Razr Fold Opening Direction" -msgstr "カミソリ展開方向" - -msgid "Rectangular" -msgstr "矩形" - -msgid "Right" -msgstr "右" - msgid "Roll Up" msgstr "巻き上げ" msgid "Rollup Fixed Interior" msgstr "内部を固定して巻き上げ" -msgid "Rotation Angle" -msgstr "回転角度" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "ウィンドウ片の回転角度" - msgid "Shade Animation" msgstr "シェード時の効果" @@ -557,15 +379,6 @@ msgid "Sidekick Springiness" msgstr "サイドキックの跳ね具合" -msgid "Skewer" -msgstr "破砕" - -msgid "Skewer Direction" -msgstr "破砕方向" - -msgid "Spacing between beams." -msgstr "ビーム間隔" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -575,15 +388,6 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "バキュームの開く時効果での開始幅と閉じる時効果での終了幅" -msgid "Tessellation Type" -msgstr "モザイクの形式" - -msgid "Tessellation type for exploding window pieces." -msgstr "爆発ウィンドウ片のモザイク形式" - -msgid "Tessellation type for window pieces." -msgstr "ウィンドウ片のモザイクの形式" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -591,28 +395,6 @@ "アニメーション描画の刻み時間(ミリ秒)、数値が大きくなるほどぎくしゃくした動き" "に" -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"激しいアニメーション(例 炎やビーム)の描画の刻み時間(ミリ秒)、数値が大きくな" -"るほどぎくしゃくした動きに" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"アニメーションされるウィンドウは格子に沿って分割されます。ウィンドウの高さに" -"沿った格子のマス目数を指定してください。" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"アニメーションされるウィンドウは格子に沿って分割されます。ウィンドウの幅に" -"沿った格子のマス目数を指定してください。" - msgid "The animation effect shown when closing a window." msgstr "ウィンドウを閉じるとき表示するアニメーション効果" @@ -628,20 +410,6 @@ msgid "The animation effect shown when shading a window." msgstr "ウィンドウをシェードしたとき表示するアニメーション効果" -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"爆発するウィンドウは格子に沿って分割されます。ウィンドウの高さに沿った格子の" -"マス目数を指定してください。" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"爆発するウィンドウは格子に沿って分割されます。ウィンドウの幅に沿った格子のマ" -"ス目数を指定してください。" - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "魔法のランプの最大振幅(波揺れの大きさ)" @@ -655,36 +423,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "水平折りたたみアニメーションでの折り数" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "ウィンドウの高さに相対する波揺れの振幅(波揺れの大きさ)" - msgid "The width of the wave relative to the window height." msgstr "ウィンドウの幅に対する波の幅" msgid "The windows that will be animated." msgstr "アニメーションされるウィンドウ" -msgid "Thickness" -msgstr "厚さ" - -msgid "Thickness of Animated Polygons" -msgstr "アニメーションされるポリゴンの厚さ" - -msgid "Thickness of Exploding Polygons" -msgstr "爆発片ポリゴンの厚さ" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "爆発ウィンドウ片の厚さ(ピクセル)" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "爆発ウィンドウ片の厚さ(ピクセル)" - -msgid "Up" -msgstr "上" - -msgid "Up-down" -msgstr "上と下" - msgid "Use various animations as window effects" msgstr "ウィンドウ効果として様々なアニメーションを使用" @@ -721,15 +465,17 @@ msgid "Wave" msgstr "ウェーブ" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "ウェーブの振幅" msgid "Wave Width" msgstr "ウェーブの幅" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." -msgstr "飛行機効果で最小化するときにウィンドウをタスクバーに飛行させるかどうか" +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -758,28 +504,12 @@ "水平折りたたみ効果で最小化するとき、ウィンドウをタスクバーにズームさせるかど" "うか" -msgid "Window Grid Height" -msgstr "ウィンドウの格子の高さ" - -msgid "Window Grid Width" -msgstr "ウィンドウの格子の幅" - -msgid "Window folding direction." -msgstr "ウィンドウの折たたみ方向" - msgid "Window that should animate with this effect when focused." msgstr "フォーカスしたときにこの効果でアニメーションするウィンドウ" msgid "Window that should animate with this effect when shaded." msgstr "シェードしたときにこの効果でアニメーションするウィンドウ" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"ウィンドウの厚さ(ピクセル)。0 より大きく設定すると、アニメーション中の影や" -"ブラー、反射が無効になります。" - msgid "Zoom" msgstr "ズーム" @@ -888,65 +618,11 @@ msgid "Y position" msgstr "Y座標" -msgid "Brightness Decrease" -msgstr "明度を下げる" - -msgid "Brightness Increase" -msgstr "明度を上げる" - -msgid "Brightness Step" -msgstr "明度の変更刻み" - -msgid "Brightness and Saturation" -msgstr "明度と彩度" +msgid "Bicubic filter" +msgstr "双三次補間フィルタ" -msgid "Brightness and Saturation adjustments" -msgstr "明度と彩度の調節" - -msgid "Brightness settings" -msgstr "明度の設定" - -msgid "Brightness values for windows" -msgstr "ウィンドウに割り当てる明度" - -msgid "Brightness window values" -msgstr "指定ウィンドウの明度" - -msgid "Brightness windows" -msgstr "明度指定ウィンドウ" - -msgid "General" -msgstr "一般" - -msgid "Saturation Decrease" -msgstr "彩度を下げる" - -msgid "Saturation Increase" -msgstr "彩度を上げる" - -msgid "Saturation Step" -msgstr "彩度の変更刻み" - -msgid "Saturation settings" -msgstr "彩度の設定" - -msgid "Saturation values for windows" -msgstr "ウィンドウに割り当てる彩度" - -msgid "Saturation window values" -msgstr "指定ウィンドウの彩度" - -msgid "Saturation windows" -msgstr "彩度指定ウィンドウ" - -msgid "Window specific" -msgstr "特定ウィンドウ" - -msgid "Windows that should have a different brightness by default" -msgstr "デフォルトで他とは異なる明度を持たせるウィンドウ" - -msgid "Windows that should have a different saturation by default" -msgstr "デフォルトで他とは異なる彩度を持たせるウィンドウ" +msgid "Bicubic texture filtering" +msgstr "双三次補間法によるテクスチャ・フィルタ" msgid "Color filter" msgstr "カラーフィルタ" @@ -1040,6 +716,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "ウィンドウマネージャのコマンドライン。COMPIZと書いてはダメ!!!" +msgid "Above" +msgstr "上" + msgid "Adjust bottom face image to rotation" msgstr "下面画像を回転に合わせる" @@ -1061,6 +740,18 @@ msgid "Appearance" msgstr "外観" +msgid "Aspect ratio" +msgstr "縦横比" + +msgid "Aspect ratio of the deformed cube" +msgstr "変形キューブの縦横比" + +msgid "Auto zoom" +msgstr "自動ズーム" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "マウス回転時のみ自動ズーム" + msgid "Behaviour" msgstr "動作" @@ -1094,18 +785,54 @@ msgid "Color of bottom face of the cube" msgstr "キューブの下面の色" +msgid "Color of the ground (far)." +msgstr "地面の色(遠方)" + +msgid "Color of the ground (near)." +msgstr "地面の色(近景)" + msgid "Color of top face of the cube" msgstr "キューブの上面の色" +msgid "Compiz cube reflection and deformation" +msgstr "Compiz キューブの反射と変形" + msgid "Cube Bottom Color" msgstr "キューブ下面の色" -msgid "Cube Caps" -msgstr "キューブのふた" +msgid "Cube Reflection and Deformation" +msgstr "キューブの反射と変形" msgid "Cube Top Color" msgstr "キューブ上面の色" +msgid "Cube caps" +msgstr "キューブのふた" + +msgid "Cylinder" +msgstr "シリンダー" + +msgid "Deform caps" +msgstr "ふたの変形" + +msgid "Deform cube caps." +msgstr "キューブのふたを変形させる" + +msgid "Deform only on mouse rotate" +msgstr "マウスによる回転時にのみ変形" + +msgid "Deformation" +msgstr "変形" + +msgid "Deformation in unfold cube mode." +msgstr "キューブの展開モード時における変形" + +msgid "Deformation mode." +msgstr "変形の形態" + +msgid "Distance" +msgstr "距離" + msgid "Draw bottom face" msgstr "下面を描画" @@ -1118,12 +845,36 @@ msgid "Draw top face of the cube" msgstr "キューブの上面を描画" +msgid "Enabled" +msgstr "有効化" + +msgid "Give cube a reflective ground." +msgstr "キューブに反射的な地面を付ける" + msgid "Go back to previous image for bottom face of the cube" msgstr "前のキューブ下面の画像に戻る" msgid "Go back to previous image for top face of the cube" msgstr "前にキューブ上面の画像に戻る" +msgid "Ground color(far)" +msgstr "地面の色(遠方)" + +msgid "Ground color(near)" +msgstr "地面の色(近景)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "マウスによって回転される場合にのみキューブのシリンダー変形を開始" + +msgid "Intensity" +msgstr "輝度" + +msgid "Jumpy" +msgstr "飛び跳ね" + +msgid "Jumpy reflection" +msgstr "反射側の飛び跳ね" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "キューブ下面に表示する PNG や SVG ファイルのリスト" @@ -1131,6 +882,18 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "キューブ上面に表示する PNG や SVG ファイルのリスト" +msgid "Maintain bottom aspect ratio" +msgstr "下面画像の縦横比を保つ" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "下面のふたの画像の縦横比を保つ" + +msgid "Maintain top aspect ratio" +msgstr "上面画像の縦横比を保つ" + +msgid "Maintain top cap image aspect ratio." +msgstr "上面のふたの画像の縦横比を保つ" + msgid "Next bottom image" msgstr "次の下面画像" @@ -1143,8 +906,23 @@ msgid "Prev top image" msgstr "前の上面画像" -msgid "Render images on top and bottom of the cube" -msgstr "キューブの上下面に画像を表示" +msgid "Reflection" +msgstr "反射" + +msgid "Reflection ground size" +msgstr "反射の地面の大きさ" + +msgid "Reflection ground size." +msgstr "反射の地面の大きさ" + +msgid "Reflection intensity" +msgstr "反射の輝度" + +msgid "Reflection mode" +msgstr "反射形式" + +msgid "Reflection mode." +msgstr "反射の形式" msgid "Scale bottom image" msgstr "下面画像の引き伸ばし" @@ -1158,23 +936,28 @@ msgid "Scale top image" msgstr "上面画像の引き伸ばし" +msgid "Sphere" +msgstr "球体" + msgid "Top image files" msgstr "上面の画像ファイル" -msgid "Above" -msgstr "上" +msgid "Unfold cube deformation" +msgstr "展開したキューブの変形" -msgid "Auto zoom" -msgstr "自動ズーム" +msgid "Zoom out automatically only on mouse rotate." +msgstr "マウス回転時のみ自動的なズームアウト" -msgid "Auto zoom only on Mouse Rotate" -msgstr "マウス回転時のみ自動ズーム" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "キューブを画面に合わせるための自動的なズームアウト" -msgid "Color of the ground (far)." -msgstr "地面の色(遠方)" +#, fuzzy +msgid "Cube Caps" +msgstr "キューブのふた" -msgid "Color of the ground (near)." -msgstr "地面の色(近景)" +#, fuzzy +msgid "Render images on top and bottom of the cube" +msgstr "キューブ下面の次の画像に進む" msgid "Compiz cube reflection" msgstr "Compiz キューブの反射" @@ -1182,45 +965,6 @@ msgid "Cube Reflection" msgstr "キューブの反射" -msgid "Distance" -msgstr "距離" - -msgid "Ground color(far)" -msgstr "地面の色(遠方)" - -msgid "Ground color(near)" -msgstr "地面の色(近景)" - -msgid "Intensity" -msgstr "輝度" - -msgid "Jumpy" -msgstr "飛び跳ね" - -msgid "Jumpy reflection" -msgstr "反射側の飛び跳ね" - -msgid "Reflection ground size" -msgstr "反射の地面の大きさ" - -msgid "Reflection ground size." -msgstr "反射の地面の大きさ" - -msgid "Reflection intensity" -msgstr "反射の輝度" - -msgid "Reflection mode" -msgstr "反射形式" - -msgid "Reflection mode." -msgstr "反射の形式" - -msgid "Zoom out automatically only on mouse rotate." -msgstr "マウス回転時のみ自動的なズームアウト" - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "キューブを画面に合わせるための自動的なズームアウト" - msgid "Animation used when switching to expo mode" msgstr "展開モードに切り替えるときのアニメーション" @@ -1242,9 +986,6 @@ msgid "Curve strength" msgstr "カーブの度合い" -msgid "Deformation" -msgstr "変形" - msgid "Deformation of the expo wall" msgstr "展開の壁の変形" @@ -1335,9 +1076,6 @@ msgid "Previous viewport" msgstr "前のビューポート" -msgid "Reflection" -msgstr "反射" - msgid "Reflection Scale" msgstr "反射の拡縮率" @@ -1444,6 +1182,10 @@ msgid "Center the mouse" msgstr "マウスを中央に" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "マウスポインタを拡大" + msgid "Enable focus tracking" msgstr "フォーカス追従を有効化" @@ -1504,19 +1246,13 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "ズームイン時に元マウスポインタを隠してマウスを拡大" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"ミリ秒単位でのマウス位置読み取り間隔。ぎくしゃくした動きを抑制するにはこの値" -"を減らしてください。" +#, fuzzy +msgid "Minimum zoom factor" +msgstr "縮尺率の最小値" msgid "Mouse Behaviour" msgstr "マウス動作" -msgid "Mouse Poll Interval" -msgstr "マウス位置読み取り間隔" - msgid "Mouse Restrain Margin" msgstr "マウス制限域マージン" @@ -1598,12 +1334,21 @@ msgid "Speed" msgstr "速度" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "マウスポインタを拡大" + msgid "Sync Mouse" msgstr "マウスに追従" msgid "Target Focused Window on Specific level" msgstr "指定ズーム率使用時はフォーカス・ウィンドウを対象" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "マウスを制限している場合の制限域のマージンの大きさ" @@ -1621,9 +1366,22 @@ msgid "Use linear filter when zoomed in" msgstr "ズームインの際に線形フィルタを使用" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "ズーム域の移動" +msgid "Zoom Box" +msgstr "ズーム・ボックス" + msgid "Zoom In" msgstr "ズームイン" @@ -1651,6 +1409,9 @@ msgid "Zoom factor" msgstr "ズーム係数" +msgid "Zoom in on a boxed area" +msgstr "ボックス型の領域上でズームイン" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "ズームインやアウトの分量、より素早いズームには高い値を" @@ -1706,6 +1467,13 @@ msgid "Toggle window fake ARGB." msgstr "ウィンドウの色(透過)の切り替え" +#, fuzzy +msgid "Add Particle" +msgstr "粒子の寿命" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "背景の明度" @@ -1721,6 +1489,33 @@ msgid "Clear (key)" msgstr "消去(キー)" +msgid "Fire Particle Color" +msgstr "炎の色" + +msgid "Fire Particle Life" +msgstr "炎の寿命" + +msgid "Fire Particle Size" +msgstr "炎の大きさ" + +msgid "Fire Particle Slowdown" +msgstr "炎のスローダウン" + +msgid "Fire particle color." +msgstr "炎の色" + +msgid "Fire particle life." +msgstr "炎の寿命" + +msgid "Fire particle size." +msgstr "炎の大きさ" + +msgid "Fire particle slowdown." +msgstr "炎のスローダウン" + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "炎効果にランダム色の色付け、いわゆる神秘的な炎" + msgid "Initiate (button)" msgstr "開始(ボタン)" @@ -1742,6 +1537,9 @@ msgid "Paint fire or other particles on the screen" msgstr "画面に炎や粒子を描画" +msgid "Randomly Colored Fire" +msgstr "ランダム色の炎" + msgid "Cube Gears" msgstr "キューブ・ギア" @@ -1834,6 +1632,9 @@ msgid "Font Size" msgstr "フォントの大きさ" +msgid "General" +msgstr "一般" + msgid "Glass" msgstr "ガラス" @@ -2433,9 +2234,19 @@ msgid "Start gesture" msgstr "ジェスチャー開始" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"ミリ秒単位でのマウス位置読み取り間隔。ぎくしゃくした動きを抑制するにはこの値" +"を減らしてください。" + msgid "Misc" msgstr "その他" +msgid "Mouse Poll Interval" +msgstr "マウス位置読み取り間隔" + msgid "Mouse position polling" msgstr "マウス位置問い合わせ" @@ -3167,8 +2978,11 @@ msgid "Background color of the window title" msgstr "ウィンドウタイトルの背景色" -msgid "Close Windows In Scale" -msgstr "スケールのウィンドウを閉じる" +msgid "Close Window" +msgstr "ウィンドウを閉じる" + +msgid "Close window while in scale mode" +msgstr "スケールモード中に選択ウィンドウを閉じる" msgid "Close windows while in scale mode" msgstr "スケールモード中のウィンドウを閉じる" @@ -3176,9 +2990,18 @@ msgid "Color used for highlighting the hovered window" msgstr "マウスが置かれているウィンドウの強調に使用する色" +msgid "Constrain Pull To Screen" +msgstr "引き入れて配置する位置を画面内に制限" + msgid "Draw Window Highlight" msgstr "ウィンドウの強調表示を描画" +msgid "Exit Scale On Pull" +msgstr "引き入れによりスケールを終了" + +msgid "Exit scale mode after a window has been pulled." +msgstr "ウィンドウを引き入れた後、スケールモードを終了" + msgid "Font color of the window title" msgstr "ウィンドウタイトルのフォント色" @@ -3194,6 +3017,12 @@ msgid "Highlights the hovered window with the given color" msgstr "マウスが置かれているウィンドウを指定色で強調表示" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"ウィンドウを別ビューポートに引き入れた場合に、確実にそのウィンドウ全体が見え" +"るようにする" + msgid "No display" msgstr "非表示" @@ -3203,6 +3032,12 @@ msgid "Organic - EXPERIMENTAL" msgstr "オーガニック - 実験的" +msgid "Pull Window" +msgstr "ウィンドウを引き入れる" + +msgid "Pull window to current viewport while in scale mode" +msgstr "スケールモード中に選択ウィンドウを現在のビューポートに引き入れる" + msgid "Scale Addons" msgstr "スケールのアドオン" @@ -3227,6 +3062,9 @@ msgid "Window Layout Mode" msgstr "ウィンドウの配列方式" +msgid "Window Pull" +msgstr "ウィンドウの引き入れ" + msgid "Window Title" msgstr "ウィンドウタイトル" @@ -3236,11 +3074,11 @@ msgid "Window title display in scale mode" msgstr "スケールモードでのウィンドウタイトルの表示" -msgid "Zoom Windows In Scale" -msgstr "スケールのウィンドウをズーム" +msgid "Zoom Window" +msgstr "ウィンドウをズーム" -msgid "Zoom windows while in scale mode" -msgstr "スケールモードにおいてウィンドウをズーム" +msgid "Zoom window while in scale mode" +msgstr "スケールモード中に選択ウィンドウをズーム" msgid "Filter Case Insensitive" msgstr "大文字小文字を区別しないフィルタ" @@ -3498,18 +3336,30 @@ msgid "Direction of window movement" msgstr "ウィンドウの移動方向" +msgid "Down" +msgstr "下" + +msgid "Left" +msgstr "左" + msgid "Left/Right" msgstr "左右" msgid "Movement Direction" msgstr "動作設定" +msgid "Right" +msgstr "右" + msgid "Show desktop" msgstr "デスクトップの表示" msgid "To Corners" msgstr "四隅" +msgid "Up" +msgstr "上" + msgid "Up/Down" msgstr "上下" @@ -3828,6 +3678,233 @@ msgid "Start Splash." msgstr "スプラッシュ開始" +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "リングの非選択ウィンドウに適用する不透明度(%単位)" + +#, fuzzy +msgid "Behavior" +msgstr "動作" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "リングを表示する際に背景を暗くする" + +#, fuzzy +msgid "On Thumbnail" +msgstr "サムネイルの幅" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "該当ウィンドウのアクティブ化" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "選択ウィンドウを手前に提示" + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "不動型アプリケーション・スイッチャー" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "グラデーション背景の色 1" + +#, fuzzy +msgid "Windows" +msgstr "3D ウィンドウ" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "スイッチャーに表示する対象ウィンドウ" + +msgid "Alignment for rows that are not fully filled" +msgstr "横に空きがある場合の配列の仕方" + +msgid "Amount of brightness in percent" +msgstr "明度の割合" + +msgid "Amount of opacity in percent" +msgstr "不透明度の割合" + +msgid "Amount of saturation in percent" +msgstr "彩度の割合" + +msgid "Auto Change Viewport" +msgstr "ビューポート自動切り替え" + +#, fuzzy +msgid "Bring Selected To Front" +msgstr "手前に提示" + +msgid "Centered" +msgstr "中央" + +msgid "Change to the viewport of the selected window while switching" +msgstr "スイッチ中に選択ウィンドウが存在するビューポートに切り替え" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "選択矩形の塗り色" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "より高質のスケールが可能なときはミップマップを生成" + +#, fuzzy +msgid "Highlight Border Color" +msgstr "強調表示色" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "強調表示色" + +#, fuzzy +msgid "Highlight Mode" +msgstr "強調表示色" + +msgid "Icon" +msgstr "アイコン" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "ウィンドウの強調表示" + +msgid "Mipmap" +msgstr "ミップマップ" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "マウスが置かれているウィンドウの強調に使用する色" + +msgid "Next Panel" +msgstr "次のパネル" + +msgid "Next window" +msgstr "次のウィンドウ" + +msgid "Next window (All windows)" +msgstr "次のウィンドウ(全ウィンドウから)" + +msgid "Next window (Group)" +msgstr "次のウィンドウ(グループから)" + +msgid "Next window (No popup)" +msgstr "次のウィンドウ(ポップアップなし)" + +msgid "Original Window Position" +msgstr "" + +msgid "Popup Window Delay" +msgstr "ポップアップ・ウィンドウの遅延時間" + +msgid "Popup switcher if not visible and select next window" +msgstr "スイッチャーが非表示の場合は表示して、次のウィンドウを選択" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"スイッチャーが非表示の場合は表示して、現在のアプリケーションの次のウィンドウ" +"を選択" + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"スイッチャーが非表示の場合は表示して、すべてのウィンドウから次のウィンドウを" +"選択" + +msgid "Popup switcher if not visible and select previous window" +msgstr "スイッチャーが非表示の場合は表示して、前のウィンドウを選択" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"スイッチャーが非表示の場合は表示して、現在のアプリケーションの前のウィンドウ" +"を選択" + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"スイッチャーが非表示の場合は表示して、すべてのウィンドウから前のウィンドウを" +"選択" + +msgid "Prev Panel" +msgstr "前のパネル" + +msgid "Prev window" +msgstr "前のウィンドウ" + +msgid "Prev window (All windows)" +msgstr "前のウィンドウ(全ウィンドウから)" + +msgid "Prev window (Group)" +msgstr "前のウィンドウ(グループから)" + +msgid "Prev window (No popup)" +msgstr "前のウィンドウ(ポップアップなし)" + +msgid "Row Alignment" +msgstr "配列" + +msgid "Select next panel type window." +msgstr "次のパネルタイプ・ウィンドウを選択" + +msgid "Select next window without showing the popup window." +msgstr "ポップアップ・ウィンドウの表示なしに次のウィンドウを選択" + +msgid "Select previous panel type window." +msgstr "前のパネルタイプ・ウィンドウを選択" + +msgid "Select previous window without showing the popup window." +msgstr "ポップアップ・ウィンドウの表示なしに前のウィンドウを選択" + +#, fuzzy +msgid "Selected Window Highlight" +msgstr "ウィンドウの強調表示" + +#, fuzzy +msgid "Show Rectangle" +msgstr "矩形" + +msgid "Show icon next to thumbnail" +msgstr "サムネイルの隣にアイコンを表示" + +msgid "Show minimized windows" +msgstr "最小化されているウィンドウも表示" + +msgid "Static Application Switcher" +msgstr "不動型アプリケーション・スイッチャー" + +msgid "Switcher speed" +msgstr "スイッチャーの速度" + +msgid "Switcher timestep" +msgstr "スイッチャー描画の刻み時間" + +msgid "Switcher windows" +msgstr "スイッチャー対象ウィンドウ" + +#, fuzzy +msgid "Taskbar Entry" +msgstr "タスクバー" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "ポップアップ・ウィンドウが表示されるまでの遅延時間(秒単位)" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" + +msgid "Windows that should be shown in switcher" +msgstr "スイッチャーに表示する対象ウィンドウ" + msgid "Render text to texture" msgstr "テキストをテクスチャに描画" @@ -3847,7 +3924,7 @@ msgstr "ミップマップを生成" msgid "Generate mipmaps when possible for higher quality scaling." -msgstr "より高質のスケールが可能なときにミップマップを生成" +msgstr "より高質のスケールが可能なときはミップマップを生成" msgid "Paint Thumbnails Always on Top." msgstr "サムネイルを常に最前面に描画" @@ -4516,9 +4593,6 @@ msgid "Center Tiled" msgstr "中央からタイル状" -msgid "Centered" -msgstr "中央" - msgid "Color 1" msgstr "色1" @@ -4647,6 +4721,14 @@ msgid "Matches" msgstr "マッチ" +#, fuzzy +msgid "Maximized" +msgstr "最大化" + +#, fuzzy +msgid "Maximized windows" +msgstr "最大化不可ウィンドウ" + msgid "No ARGB visuals" msgstr "ARGB ビジュアル不可" @@ -4725,6 +4807,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "AIGLX フラグメント・パラメータの修正" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "FireFox のメニュー修正" @@ -4768,6 +4853,11 @@ "\"全てのデスクトップに配置\"ウィンドウに貼り付け(スティッキー)属性を与え、" "貼り付けウィンドウをすべてのビューポートで見られるようにする" +#, fuzzy +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" +"\"demands attention\" フラグセットを持つ次のウィンドウをアクティブにする" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "Wine とレガシーアプリケーションを全画面表示で起動するときの設定" @@ -4794,35 +4884,325 @@ msgid "Workarounds" msgstr "次善策" -#~ msgid "Animation Speed" -#~ msgstr "アニメーション速度" +#~ msgid "Airplane" +#~ msgstr "飛行機" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "飛行機の航路距離" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "アニメーション刻み時間(激しい効果の)" + +#~ msgid "Automatic" +#~ msgstr "自動" + +#~ msgid "Beam" +#~ msgstr "ビーム" + +#~ msgid "Beam Color" +#~ msgstr "ビームの色" + +#~ msgid "Beam Life" +#~ msgstr "ビームの持続時間" + +#~ msgid "Beam Slowdown" +#~ msgstr "ビームのスローダウン" + +#~ msgid "Beam Spacing" +#~ msgstr "ビームの間隔" + +# スタートレック +#~ msgid "Beam Up" +#~ msgstr "転送ビーム" + +#~ msgid "Beam Width" +#~ msgstr "ビームの幅" + +#~ msgid "Beam color." +#~ msgstr "ビームの色" + +#~ msgid "Beam life." +#~ msgstr "ビームの持続時間" + +#~ msgid "Beam slowdown." +#~ msgstr "ビームのスローダウン" + +#~ msgid "Beam width." +#~ msgstr "ビームの幅" + +#~ msgid "Burn" +#~ msgstr "炎" + +#~ msgid "Domino" +#~ msgstr "ドミノ" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "ドミノ片の落下方向" + +#~ msgid "Explode" +#~ msgstr "爆発" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "ドミノ片が落下する方向" + +#~ msgid "Fire" +#~ msgstr "炎" + +#~ msgid "Fire Smoke" +#~ msgstr "炎の煙" + +#~ msgid "Fire constant speed" +#~ msgstr "定速の炎" + +#~ msgid "Fire direction" +#~ msgstr "炎の向き" + +#~ msgid "Fire direction." +#~ msgstr "炎の向き" + +#~ msgid "Fire smoke." +#~ msgstr "炎の煙" + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "最小化時にタスクバーへ飛行" + +#~ msgid "Fold" +#~ msgstr "折りたたみ" + +#~ msgid "Fold Direction" +#~ msgstr "折りたたみ方向" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "カミソリ効果における断片の展開方向" + +#~ msgid "Hexagonal" +#~ msgstr "六角形" + +#~ msgid "In" +#~ msgstr "内" + +#~ msgid "In-out" +#~ msgstr "内と外" + +#~ msgid "Leaf Spread" +#~ msgstr "散らばる葉っぱ" + +#~ msgid "Left-right" +#~ msgstr "左と右" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "飛行機の航路距離" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "炎効果の持続時間をウィンドウの高さに委ねる" + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "ウィンドウ片の移動方向" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "炎の数" + +#~ msgid "Number of fire particles." +#~ msgstr "炎の数" + +#~ msgid "Out" +#~ msgstr "外" + +#~ msgid "Razr" +#~ msgstr "カミソリ" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "カミソリ展開方向" + +#~ msgid "Rectangular" +#~ msgstr "矩形" + +#~ msgid "Rotation Angle" +#~ msgstr "回転角度" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "ウィンドウ片の回転角度" -#~ msgid "Change the speed of the 3D animation" -#~ msgstr "立体アニメーションの速度を変更" +#~ msgid "Skewer" +#~ msgstr "破砕" + +#~ msgid "Skewer Direction" +#~ msgstr "破砕方向" + +#~ msgid "Spacing between beams." +#~ msgstr "ビーム間隔" + +#~ msgid "Tessellation Type" +#~ msgstr "モザイクの形式" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "爆発ウィンドウ片のモザイク形式" + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "ウィンドウ片のモザイクの形式" + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "激しいアニメーション(例 炎やビーム)の描画の刻み時間(ミリ秒)、数値が大き" +#~ "くなるほどぎくしゃくした動きに" + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "アニメーションされるウィンドウは格子に沿って分割されます。ウィンドウの高さ" +#~ "に沿った格子のマス目数を指定してください。" + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "アニメーションされるウィンドウは格子に沿って分割されます。ウィンドウの幅に" +#~ "沿った格子のマス目数を指定してください。" + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "爆発するウィンドウは格子に沿って分割されます。ウィンドウの高さに沿った格子" +#~ "のマス目数を指定してください。" + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "爆発するウィンドウは格子に沿って分割されます。ウィンドウの幅に沿った格子の" +#~ "マス目数を指定してください。" + +#~ msgid "Thickness" +#~ msgstr "厚さ" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "アニメーションされるポリゴンの厚さ" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "爆発片ポリゴンの厚さ" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "爆発ウィンドウ片の厚さ(ピクセル)" + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "爆発ウィンドウ片の厚さ(ピクセル)" + +#~ msgid "Up-down" +#~ msgstr "上と下" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "飛行機効果で最小化するときにウィンドウをタスクバーに飛行させるかどうか" + +#~ msgid "Window Grid Height" +#~ msgstr "ウィンドウの格子の高さ" + +#~ msgid "Window Grid Width" +#~ msgstr "ウィンドウの格子の幅" + +#~ msgid "Window folding direction." +#~ msgstr "ウィンドウの折たたみ方向" #~ msgid "" -#~ "Enable true alpha blending for transparent wallpapersEnable true " -#~ "blendingThe background specifications (as explained in DOCUMENTATION) to " -#~ "use.Tile backgrounds as opposed to stretchingTilt viewTilt window view in " -#~ "expo modeMove window to x, yPut ExactMisc. optionsShow minimized " -#~ "windowsTile or StretchTimeout in seconds before hiding the " -#~ "notificationUses libnotify to display errorsCorner BevellingCreate " -#~ "MipmapsDisable Caps for Inside CubeDisables the drawing of the cube caps " -#~ "when the inside cube mode is set.Draw Window BacksidesEnables the drawing " -#~ "of the backside of windows.This will create mipmaps which improve overall " -#~ "texture appearence, and reduce jagged edges.Window widthBeginGoto " -#~ "viewport specified by numbersSpring model on moveUse spring model for the " -#~ "tab bar when moving the windowSet window as widgetAppearenceBackground " -#~ "Base ColorBackground Highlight Color" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." #~ msgstr "" -#~ "透過な壁紙のための擬似ではない本当のアルファ合成を有効化真アルファ合成を有" -#~ "効化使用する背景の指定ストレッチ時のタイルの背景傾けた表示展開モードでウィ" -#~ "ンドウを傾けて表示ウィンドウを座標X、Yへ移動正確な移動その他オプション最小" -#~ "化されているウィンドウも表示タイル か ストレッチ通知表示を隠し始めるまでの" -#~ "タイムアウト(秒)libnotify を使用してエラーを表示コーナーの角度Mipmapの作" -#~ "成キューブ内での上側を利用不可能にするキューブの内部モードでは、キューブの" -#~ "上側の描画を利用不可能にするウィンドウの裏側を描画するウィンドウの裏側描画" -#~ "を可能にするテクスチャの見栄えを良くし、ギザギザなエッジを少なくするmipmap" -#~ "を作成するウィンドウ幅開始数値で指定されたビューポートに移動移動時のスプリ" -#~ "ングモデルウィンドウの移動時にタブバーをスプリングモードにするウィンドウを" -#~ "ウィジェットにしてください見栄え背景の基本色背景の明るい部分の色" +#~ "ウィンドウの厚さ(ピクセル)。0 より大きく設定すると、アニメーション中の影" +#~ "やブラー、反射が無効になります。" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "ウィンドウ幅に相対する水平折りたたみの振幅(折りたたみの波の大きさ)、負の値" +#~ "では外側に広がる" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "ウィンドウ幅に相対する曲がりの振幅(折り曲げの波の大きさ)、負の値では外側に" +#~ "広がる" + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "ウィンドウの高さに相対する波揺れの振幅(波揺れの大きさ)" + +#~ msgid "Brightness Decrease" +#~ msgstr "明度を下げる" + +#~ msgid "Brightness Increase" +#~ msgstr "明度を上げる" + +#~ msgid "Brightness Step" +#~ msgstr "明度の変更刻み" + +#~ msgid "Brightness and Saturation" +#~ msgstr "明度と彩度" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "明度と彩度の調節" + +#~ msgid "Brightness settings" +#~ msgstr "明度の設定" + +#~ msgid "Brightness values for windows" +#~ msgstr "ウィンドウに割り当てる明度" + +#~ msgid "Brightness window values" +#~ msgstr "指定ウィンドウの明度" + +#~ msgid "Brightness windows" +#~ msgstr "明度指定ウィンドウ" + +#~ msgid "Saturation Decrease" +#~ msgstr "彩度を下げる" + +#~ msgid "Saturation Increase" +#~ msgstr "彩度を上げる" + +#~ msgid "Saturation Step" +#~ msgstr "彩度の変更刻み" + +#~ msgid "Saturation settings" +#~ msgstr "彩度の設定" + +#~ msgid "Saturation values for windows" +#~ msgstr "ウィンドウに割り当てる彩度" + +#~ msgid "Saturation window values" +#~ msgstr "指定ウィンドウの彩度" + +#~ msgid "Saturation windows" +#~ msgstr "彩度指定ウィンドウ" + +#~ msgid "Window specific" +#~ msgstr "特定ウィンドウ" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "デフォルトで他とは異なる明度を持たせるウィンドウ" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "デフォルトで他とは異なる彩度を持たせるウィンドウ" + +#~ msgid "Intensity." +#~ msgstr "輝度" + +#~ msgid "Show repaint" +#~ msgstr "再描画表示" + +#~ msgid "Show repainted regions in different colors" +#~ msgstr "再描画域を異なる色で表示" + +#~ msgid "Toggle showing of repainted regions." +#~ msgstr "再描画域の表示のオンオフ" + +#~ msgid "Close Windows In Scale" +#~ msgstr "スケールのウィンドウを閉じる" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/ko.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/ko.po --- compiz-fusion-plugins-unsupported-0.7.6/po/ko.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/ko.po 1970-01-01 01:00:00.000000000 +0100 @@ -1,4872 +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. -# Jeong Seungwon , 2007. -# -msgid "" -msgstr "" -"Project-Id-Version: compiz-fusion-plugins\n" -"Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" -"PO-Revision-Date: 2008-02-14 08:45+0100\n" -"Last-Translator: Jeong Seungwon \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" - -msgid "3D Only On Mouse Rotate" -msgstr "마우스 회전시에만 3D 사용" - -msgid "3D Windows" -msgstr "3D 창" - -msgid "Bevel Bottom Left" -msgstr "왼쪽 하단을 둥글게 자름" - -msgid "Bevel Bottom Right" -msgstr "오른쪽 하단을 둥글게 자름" - -msgid "Bevel Corners" -msgstr "모서리를 둥글게 자름" - -msgid "Bevel Top Left" -msgstr "왼쪽 상단을 둥글게 자름" - -msgid "Bevel Top Right" -msgstr "오른쪽 상단을 둥글게 자름" - -msgid "Bevel bottom left corner" -msgstr "왼쪽 하단을 둥글게 자름" - -msgid "Bevel bottom right corner" -msgstr "오른쪽 하단을 둥글게 자름" - -msgid "Bevel top left corner" -msgstr "왼쪽 상단을 둥글게 자름" - -msgid "Bevel top right corner" -msgstr "오른쪽 상단을 둥글게 자름" - -msgid "" -"Change the amount of space between the windows (in percent of the cube size)." -msgstr "창 사이의 간격 조절 (큐브 크기에 비례)" - -msgid "Color of an inactive window's depth" -msgstr "비활성화된 창의 색 단계" - -msgid "Color of the active window's depth" -msgstr "활성화된 창의 색 단계" - -msgid "Elevates windows while rotating the cube" -msgstr "큐브를 회전시킬 때 창을 올림" - -msgid "" -"Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " -"cube via the mouse)" -msgstr "" -"마우스를 이용하여 큐브를 회전할 때만, 3D를 활성화합니다. (예, 마우스로 큐브" -"를 회전 시키는 경우)" - -msgid "Minimum Cube Size" -msgstr "최소 큐브 크기" - -msgid "Minimum cube size (in percent)." -msgstr "최소 큐브 크기 (퍼센트 단위)." - -msgid "Misc. Options" -msgstr "기타 옵션" - -msgid "Roundoff corners for consistency with rounded decorations" -msgstr "둥근 창 장식과의 일관성을 유지하기 위해 모서리를 둥글게 만듬" - -msgid "Window Color (Active)" -msgstr "활성화된 창의 색" - -msgid "Window Color (Inactive)" -msgstr "비활성화된 창의 색" - -msgid "Window Depth" -msgstr "창 깊이" - -msgid "Window Match" -msgstr "일치하는 창" - -msgid "Window Space" -msgstr "창 간격" - -msgid "Window depth" -msgstr "창 깊이" - -msgid "Windows that should be handled by 3D" -msgstr "3D로 처리될 창들" - -msgid "ADD Helper" -msgstr "활성창 돋보이기" - -msgid "Bindings" -msgstr "단축키" - -msgid "Brightness" -msgstr "밝기" - -msgid "Brightness of faded windows" -msgstr "흐린 창의 밝기" - -msgid "" -"Make it slightly easier to concentrate by dimming all but the active window." -msgstr "활성창을 제외한 모든 창을 흐릿하게하여 쉽게 집중할 수 있게 도와줍니다." - -msgid "Opacity" -msgstr "투명도" - -msgid "Opacity of faded windows" -msgstr "흐린 창의 투명도" - -msgid "Saturation" -msgstr "채도" - -msgid "Saturation of faded windows" -msgstr "흐린 창의 채도" - -msgid "Toggle AddHelper" -msgstr "활성창 돋보이기 사용" - -msgid "Use this to enable/disable AddHelper on the fly." -msgstr "활성창 돋보이기 사용" - -msgid "Window Types" -msgstr "창 종류" - -msgid "Window types that should be Opacified." -msgstr "투명도가 변경되는 창의 종류" - -msgid "Airplane" -msgstr "종이 비행기" - -msgid "Airplane Flying Path Length" -msgstr "종이 비행기의 비행 거리" - -msgid "" -"All effects are chosen randomly, ignoring the selected effect. If None is " -"selected for an event, that event won't be animated." -msgstr "" -"선택된 효과를 무시하고 모든 효과를 무작위로 선택합니다. 아무런 효과도 선택되" -"지 않은 이벤트는 애니메이션을 사용하지 않습니다." - -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"수평으로 접는 크기이며, 창 너비에 대한 상대적인 값입니다. 음수를 입력하면 바" -"깥쪽으로 접습니다." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"휘어지게 접는 크기이며, 창 너비에 대한 상대적인 값입니다. 음수를 입력하면 바" -"깥쪽으로 접습니다." - -msgid "Angle of window at the end of the animation." -msgstr "애니메이션 종료 시의 창의 각도" - -msgid "Animation Selection" -msgstr "애니메이션 선택" - -msgid "Animation Time Step" -msgstr "애니메이션 시간 간격" - -msgid "Animation Time Step For Intense Effects" -msgstr "강한 효과를 위한 애니메이션 시간 간격" - -msgid "Animation duration in milliseconds for close effect." -msgstr "닫기 효과에 대한 애니메이션 지속 시간 (밀리세컨드 단위)." - -msgid "Animation duration in milliseconds for focus effect." -msgstr "초점 효과에 대한 애니메이션 지속 시간 (밀리세컨드 단위)." - -msgid "Animation duration in milliseconds for minimize effect." -msgstr "최소화 효과에 대한 애니메이션 지속 시간 (밀리세컨드 단위)." - -msgid "Animation duration in milliseconds for open effect." -msgstr "열기 효과에 대한 애니메이션 지속 시간 (밀리세컨드 단위)." - -msgid "Animation duration in milliseconds for shade effect." -msgstr "말아올리기 효과에 대한 애니메이션 지속 시간 (밀리세컨드 단위)." - -msgid "Animations" -msgstr "애니메이션" - -msgid "Automatic" -msgstr "자동" - -msgid "Away Angle" -msgstr "종료 각도" - -msgid "Away Position" -msgstr "종료 위치" - -msgid "Beam" -msgstr "광선" - -msgid "Beam Color" -msgstr "광선 색" - -msgid "Beam Life" -msgstr "광선의 수명" - -msgid "Beam Slowdown" -msgstr "광선의 감속" - -msgid "Beam Spacing" -msgstr "광선 간격" - -msgid "Beam Up" -msgstr "광선" - -msgid "Beam Width" -msgstr "광선 너비" - -msgid "Beam color." -msgstr "광선 색." - -msgid "Beam life." -msgstr "광선의 수명." - -msgid "Beam slowdown." -msgstr "광선의 감속." - -msgid "Beam width." -msgstr "광선의 너비." - -msgid "Burn" -msgstr "불 태우기" - -msgid "Close Animation" -msgstr "닫기 애니메이션" - -msgid "Close Effect" -msgstr "닫기 효과" - -msgid "" -"Closeness of window to camera at the end of the animation (1.0: Close to " -"camera, -2.0: Away from camera)." -msgstr "" -"애니메이션 종료 시의 창과 카메라 사이의 거리 (1.0: 카메라에 가까움, -2.0: 카" -"메라에서 멈)." - -msgid "" -"Comma separated list of option value assignments to override effect " -"settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1" -msgstr "" -"콤마로 구분된 설정 값 목록 (효과 설정을 무시함) 예: fire_color=#0080ffff, " -"fire_particles=700, fire_smoke=1" - -msgid "Curved Fold" -msgstr "휘어지게 접기" - -msgid "Curved Fold Amplitude" -msgstr "휘어지게 접는 크기" - -msgid "Dodge" -msgstr "회피" - -msgid "Dodge Gap Ratio" -msgstr "회피하는 간격 비율" - -msgid "Domino" -msgstr "도미노" - -msgid "Domino Piece Falling Direction" -msgstr "도미노가 넘어지는 방향" - -msgid "Down" -msgstr "아래" - -msgid "Dream" -msgstr "꿈" - -msgid "Duration" -msgstr "지속시간" - -msgid "Effect Settings" -msgstr "효과 설정" - -msgid "Explode" -msgstr "폭발" - -msgid "Fade" -msgstr "페이드" - -msgid "Falling direction for Domino pieces." -msgstr "도미노가 넘어지는 방향" - -msgid "Fire" -msgstr "불꽃" - -msgid "Fire Particle Color" -msgstr "불꽃의 색" - -msgid "Fire Particle Life" -msgstr "불꽃의 수명" - -msgid "Fire Particle Size" -msgstr "불꽃의 크기" - -msgid "Fire Particle Slowdown" -msgstr "불꽃의 감속" - -msgid "Fire Smoke" -msgstr "연기" - -msgid "Fire constant speed" -msgstr "일정한 속도로 태우기" - -msgid "Fire direction" -msgstr "불타는 방향" - -msgid "Fire direction." -msgstr "불타는 방향." - -msgid "Fire particle color." -msgstr "불꽃의 색." - -msgid "Fire particle life." -msgstr "불꽃의 수명." - -msgid "Fire particle size." -msgstr "불꽃의 크기." - -msgid "Fire particle slowdown." -msgstr "불꽃의 감속." - -msgid "Fire smoke." -msgstr "연기." - -msgid "Fixed window interior during the Rollup animation." -msgstr "감아올리기 애니메이션시 창 내부를 고정함." - -msgid "Fly to TaskBar on Minimize" -msgstr "최소화시 창 목록까지 날아감" - -msgid "Focus Animation" -msgstr "초점 애니메이션" - -msgid "Focus Effect" -msgstr "초점 효과" - -msgid "Fold" -msgstr "접기" - -msgid "Fold Direction" -msgstr "접는 방향" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "면도날 효과에서 조각들이 접히는 방향." - -msgid "Glide 1" -msgstr "비행 1" - -msgid "Glide 2" -msgstr "비행 2" - -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "불 태우기 효과에서 불꽃 색을 무작위로 하기(신비한 불꽃 효과)." - -msgid "Hexagonal" -msgstr "6각형" - -msgid "Horizontal Folds" -msgstr "수평으로 접기" - -msgid "Horizontal Folds Amplitude" -msgstr "수평으로 접는 크기" - -msgid "How spring-like the Sidekick animation should be." -msgstr "사이드킥 애니메이션의 탄성 정도" - -msgid "How spring-like the Zoom animation should be." -msgstr "확대 애니메이션의 탄성 정도" - -msgid "In" -msgstr "안쪽" - -msgid "In-out" -msgstr "안쪽에서 바깥쪽" - -msgid "Leaf Spread" -msgstr "잎이 퍼지듯이" - -msgid "Left" -msgstr "왼쪽" - -msgid "Left-right" -msgstr "왼쪽에서 오른쪽" - -msgid "Length of airplane's flying path." -msgstr "종이 비행기의 비행 거리" - -msgid "Magic Lamp" -msgstr "마술 램프" - -msgid "Magic Lamp Grid Y Resolution" -msgstr "마술 램프의 수직 격자 해상도" - -msgid "Magic Lamp Max Wave Amplitude" -msgstr "마술 램프의 최대 파동 크기" - -msgid "Magic Lamp Max Waves" -msgstr "마술 램프의 최대 파동 크기" - -msgid "Magic Lamp Min Wave Amplitude" -msgstr "마술 램프의 최소 파동 크기" - -msgid "Magic Lamp Open Start Width" -msgstr "마술 램프의 초기 너비" - -msgid "Magic Lamp Open/Close Moving End" -msgstr "열기/닫기시 마술 램프의 종료 위치 변경" - -msgid "Make fire effect duration be dependent on window height." -msgstr "불 태우기 효과 지속시간이 창의 높이에 따라 달라지게 함." - -msgid "Minimize Animation" -msgstr "최소화 애니메이션" - -msgid "Minimize Effect" -msgstr "최소화 애니메이션" - -msgid "Minimize/Unminimize Only" -msgstr "최소화/취소시에만" - -msgid "Movement direction(s) for window pieces." -msgstr "창 조각의 이동 방향." - -msgid "None" -msgstr "없음" - -msgid "Number Of Fire Particles" -msgstr "꽃의 숫자" - -msgid "Number of Horizontal Folds" -msgstr "수평으로 접는 횟수" - -msgid "Number of fire particles." -msgstr "불꽃의 숫자" - -#, no-c-format -msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." -msgstr "사이드킥의 회전 숫자 (+ 10%나 - 10%는 무작위)" - -msgid "Off" -msgstr "사용하지 않음" - -msgid "On" -msgstr "사용함" - -msgid "On open/close, move magic lamp ending point with the mouse pointer." -msgstr "열기/닫기시에 마술 램프의 종료 위치를 마우스 포인터로 변경함." - -msgid "On open/close, move vacuum ending point with the mouse pointer." -msgstr "열기/닫기시에 진공 효과의 종료 위치를 마우스 포인터로 변경함." - -msgid "Open Animation" -msgstr "열기 애니메이션" - -msgid "Open Effect" -msgstr "열기 효과" - -msgid "Open/Close Only" -msgstr "열기/닫기시에만" - -msgid "Options" -msgstr "옵션" - -msgid "Out" -msgstr "바깥쪽" - -#, fuzzy -msgid "Pool" -msgstr "목록" - -#, fuzzy -msgid "" -"Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." -msgstr "" -"무작위 효과가 선택되었을 때 사용되는 효과 목록. 초기화 버튼을 클릭하면 목록 " -"전체로 초기화됩니다." - -msgid "Random" -msgstr "무작위" - -msgid "Random Animations For All Events" -msgstr "모든 효과에 무작위 애니메이션 사용" - -msgid "Random Effects" -msgstr "무작위 효과" - -msgid "Randomly Colored Fire" -msgstr "불꽃 색을 무작위로" - -msgid "Ratio of gaps between dodge start times to focus duration." -msgstr "회피 시작 시간과 초점 지속 시간 사이의 간격 비율" - -msgid "Razr" -msgstr "면도날" - -msgid "Razr Fold Opening Direction" -msgstr "면도날 효과에서 접는 방향" - -msgid "Rectangular" -msgstr "사각형" - -msgid "Right" -msgstr "오른쪽" - -msgid "Roll Up" -msgstr "감아 올리기" - -msgid "Rollup Fixed Interior" -msgstr "감아올릴 때 창 내부를 고정" - -msgid "Rotation Angle" -msgstr "회전 각도" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "애니메이션 창 조각들의 회전 각도 (도 단위)." - -msgid "Shade Animation" -msgstr "말아올리기 애니메이션" - -msgid "Shade Effect" -msgstr "말아올리기 효과" - -msgid "Sidekick" -msgstr "사이드킥" - -msgid "Sidekick Number of Rotations" -msgstr "사이드킥 회전 횟수" - -msgid "Sidekick Springiness" -msgstr "사이드킥 탄성" - -msgid "Skewer" -msgstr "왜곡" - -msgid "Skewer Direction" -msgstr "왜곡하는 방향" - -msgid "Spacing between beams." -msgstr "광선 사이의 간격" - -msgid "" -"Starting width of open effect and ending width of close effect for Magic " -"Lamp." -msgstr "마술 램프 닫기 효과의 시작 너비와 종료 너비." - -msgid "" -"Starting width of open effect and ending width of close effect for Vacuum." -msgstr "진공 닫기 효과의 시작 너비와 종료 너비." - -msgid "Tessellation Type" -msgstr "모자이크 형태" - -msgid "Tessellation type for exploding window pieces." -msgstr "폭발 효과에서 창 조각들의 모자이크 형태" - -msgid "Tessellation type for window pieces." -msgstr "창 조각들의 모자이크 형태" - -msgid "" -"The amount of time in milliseconds between each render of the animation. The " -"higher the number, the jerkier the movements become." -msgstr "" -"애니메이션 렌더링 간격 (밀리세컨드 단위). 숫자가 클수록 동작이 부자연스럽습니" -"다." - -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"강한 애니메이션(예, 불 태우기, 광선) 렌더링 간격 (밀리세컨드 단위). 숫자가 클" -"수록 동작이 부자연스럽습니다." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"애니메이션이 적용될 때 창은 격자 형태로 분할됩니다. 창의 높이에 따른 격자 조" -"각의 숫자를 지정하세요." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"애니메이션이 적용될 때 창은 격자 형태로 분할됩니다. 창의 높이에 따른 격자 조" -"각의 숫자를 지정하세요." - -msgid "The animation effect shown when closing a window." -msgstr "창을 닫을 때 적용되는 애니메이션." - -msgid "The animation effect shown when creating a window." -msgstr "창을 열 때 적용되는 애니메이션." - -msgid "The animation effect shown when focusing a window." -msgstr "창에 초점을 맞출 때 적용되는 애니메이션." - -msgid "The animation effect shown when minimizing a window." -msgstr "창을 최소화할 때 적용되는 애니메이션." - -msgid "The animation effect shown when shading a window." -msgstr "창을 말아올릴 때 적용되는 애니메이션." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"폭발 효과가 적용되면 창은 격자에 따라 조각들로 분할됩니다. 창의 높이에 따른 " -"격자 조각의 숫자를 지정하세요." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"폭발 효과가 적용되면 창은 격자에 따라 조각들로 분할됩니다. 창의 높이에 따른 " -"격자 조각의 숫자를 지정하세요." - -msgid "The maximum amplitude (size of the waves) Magic Lamp will have." -msgstr "마술 램프의 최대 파동 크기." - -msgid "The maximum number of waves for Magic Lamp." -msgstr "마술 램프의 최대 파동 숫자." - -msgid "The minimum amplitude (size of the waves) Magic Lamp will have." -msgstr "마술 램프의 최소 파동 크기." - -msgid "" -"The number of horizontal folds that occur in the Horizontal Fold animation." -msgstr "수평으로 접기 애니메이션에서 접는 횟수" - -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "창의 높이에 따른 파동의 진폭(크기)" - -msgid "The width of the wave relative to the window height." -msgstr "창의 높이에 따른 파동의 넓이" - -msgid "The windows that will be animated." -msgstr "애니메이션이 적용될 창" - -msgid "Thickness" -msgstr "두께" - -msgid "Thickness of Animated Polygons" -msgstr "애니메이션 폴리곤의 두께" - -msgid "Thickness of Exploding Polygons" -msgstr "폭발하는 폴리곤의 두께" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "애니메이션 창 조각의 두께 (픽셀 단위)" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "폭발하는 창 조각의 두께 (픽셀 단위)" - -msgid "Up" -msgstr "위로" - -msgid "Up-down" -msgstr "위에서 아래로" - -msgid "Use various animations as window effects" -msgstr "창 효과로 다양한 애니메이션을 사용함" - -msgid "Vacuum" -msgstr "진공" - -msgid "Vacuum Grid Y Resolution" -msgstr "진공 효과 세로축 격자 해상도" - -msgid "Vacuum Open Start Width" -msgstr "진공 효과 초기 너비" - -msgid "Vacuum Open/Close Moving End" -msgstr "열기/닫기시 진공 효과 종료 위치 변경" - -msgid "" -"Vertex grid resolution for Magic Lamp (Y dimension only). This is the number " -"of points used to define the curves. The higher the number, the smoother the " -"curves. However there will be a loss of performance (CPU usage increases)." -msgstr "" -"마술 램프의 최고점 격자 해상도 (세로축). 곡선을 표현하기 위해 사용되는 점들" -"의 숫자입니다. 숫자가 높을 수록 곡선이 부드럽습니다. 하지만 성능이 상당히 저" -"하됩니다. (CPU 사용량 증가)." - -msgid "" -"Vertex grid resolution for Vacuum (Y dimension only). This is the number of " -"points used to define the curves. The higher the number, the smoother the " -"curves. However there will be a loss of performance (CPU usage increases)." -msgstr "" -"진공 효과의 최고점 격자 해상도 (세로축). 곡선을 표현하기 위해 사용되는 점들" -"의 숫자입니다. 숫자가 높을 수록 곡선이 부드럽습니다. 하지만 성능이 상당히 저" -"하됩니다. (CPU 사용량 증가)." - -msgid "Wave" -msgstr "파동" - -msgid "Wave Amplitude" -msgstr "파동의 크기" - -msgid "Wave Width" -msgstr "파동의 폭" - -msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." -msgstr "종이 비행기 효과에서 최소화시 창이 창 목록으로 날아가는지 여부." - -msgid "" -"Whether the window should zoom to taskbar when minimized with Curved Fold " -"effect." -msgstr "휘어지게 접기 효과에서 최소화시 창이 창 목록 방향으로 축소되는지 여부" - -msgid "" -"Whether the window should zoom to taskbar when minimized with Dream effect." -msgstr "꿈 효과에서 최소화시 창이 창 목록 방향으로 축소되는지 여부." - -msgid "" -"Whether the window should zoom to taskbar when minimized with Glide 1 effect." -msgstr "비행 1 효과에서 최소화시 창이 창 목록 방향으로 축소되는지 여부" - -msgid "" -"Whether the window should zoom to taskbar when minimized with Glide 2 effect." -msgstr "비행 2 효과에서 최소화시 창이 창 목록 방향으로 축소되는지 여부" - -msgid "" -"Whether the window should zoom to taskbar when minimized with Horizontal " -"Folds effect." -msgstr "수평으로 접기 효과에서 최소화시 창이 창 목록 방향으로 축소되는지 여부" - -msgid "Window Grid Height" -msgstr "창 격자 높이" - -msgid "Window Grid Width" -msgstr "창 격자 너비" - -msgid "Window folding direction." -msgstr "창을 접는 방향." - -msgid "Window that should animate with this effect when focused." -msgstr "초점을 얻었을 때 이 애니메이션 효과가 적용되는 창" - -msgid "Window that should animate with this effect when shaded." -msgstr "말아올릴 때 이 애니메이션 효과가 적용되는 창" - -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"창 두께 (픽셀 단위). 이 값을 0보다 크게 하면 애니메이션시에 그림자와 블러, 반" -"사 효과가 적용되지 않습니다." - -msgid "Zoom" -msgstr "축소" - -msgid "Zoom Springiness" -msgstr "축소 탄성" - -msgid "Zoom from Center" -msgstr "중앙에서부터 축소" - -msgid "Zoom from center when playing the Sidekick animation." -msgstr "사이드킥 애니메이션시에 중앙에서부터 축소됨." - -msgid "Zoom from center when playing the Zoom animation." -msgstr "확대 애니메이션시에 중앙에서부터 축소됨." - -msgid "Zoom to TaskBar on Minimize" -msgstr "최소화시 창 목록으로 방향으로 축소됨" - -msgid "Colors" -msgstr "색" - -msgid "Cube Atlantis" -msgstr "큐브 아틀란티스" - -msgid "Dolphin size" -msgstr "돌고래 크기" - -msgid "Dolphin size." -msgstr "돌고래 크기." - -msgid "Enable colors" -msgstr "색 활성화" - -msgid "Fish size" -msgstr "물고기 크기" - -msgid "Number of fish" -msgstr "물고기 숫자" - -msgid "Number of fish inside the cube" -msgstr "큐브 안의 물고기 숫자" - -msgid "Render some fish inside of the transparent cube" -msgstr "투명 큐브 안에 물고기들을 그려 넣음" - -msgid "Shark size" -msgstr "상어 크기" - -msgid "Whale size" -msgstr "고래 크기" - -msgid "Whale size." -msgstr "고래 크기." - -msgid "A simple benchmark plugin" -msgstr "간단한 벤치마크 플러그인" - -msgid "Benchmark" -msgstr "벤치마크" - -msgid "Console Output" -msgstr "콘솔 출력" - -msgid "Console output update time" -msgstr "업데이트 시간 콘솔 출력" - -msgid "Disable Compiz integrated FPS limiter" -msgstr "컴피즈에 내장된 초당 프레임 제한 비활성화" - -msgid "Disable limiter" -msgstr "제한 비활성화" - -msgid "Display FPS on screen" -msgstr "화면에 초당 프레임 표시" - -msgid "Enable" -msgstr "활성화" - -msgid "Initiate" -msgstr "시작" - -msgid "Main" -msgstr "기본" - -msgid "Print FPS to console" -msgstr "콘솔에 초당 프레임 표시" - -msgid "Screen Output" -msgstr "화면 출력" - -msgid "Start benchmark" -msgstr "벤치마크 시작" - -msgid "Update time" -msgstr "업데이트 시간" - -msgid "X Position of benchmark window" -msgstr "벤치마크 창의 X 위치" - -msgid "X position" -msgstr "X 위치" - -msgid "Y Position of benchmark window" -msgstr "벤치마크 창의 Y 위치" - -msgid "Y position" -msgstr "Y 위치" - -msgid "Brightness Decrease" -msgstr "밝기 감소" - -msgid "Brightness Increase" -msgstr "밝기 증가" - -msgid "Brightness Step" -msgstr "밝기 단계" - -msgid "Brightness and Saturation" -msgstr "밝기와 채도" - -msgid "Brightness and Saturation adjustments" -msgstr "밝기와 채도 조절" - -msgid "Brightness settings" -msgstr "밝기 설정" - -msgid "Brightness values for windows" -msgstr "창의 밝기" - -msgid "Brightness window values" -msgstr "창의 밝기 값" - -msgid "Brightness windows" -msgstr "창 밝기" - -msgid "General" -msgstr "일반" - -msgid "Saturation Decrease" -msgstr "채도 감소" - -msgid "Saturation Increase" -msgstr "채도 증가" - -msgid "Saturation Step" -msgstr "채도 단계" - -msgid "Saturation settings" -msgstr "채도 설정" - -msgid "Saturation values for windows" -msgstr "창의 채도 값" - -msgid "Saturation window values" -msgstr "창의 채도 값" - -msgid "Saturation windows" -msgstr "창 채도" - -msgid "Window specific" -msgstr "창에 따라서" - -msgid "Windows that should have a different brightness by default" -msgstr "기본적으로 다른 밝기 값을 가질 창들" - -msgid "Windows that should have a different saturation by default" -msgstr "기본적으로 다른 채도 값을 가질 창들" - -msgid "Color filter" -msgstr "색상 필터" - -msgid "Exclude windows" -msgstr "제외할 창" - -msgid "Filter colors for accessibility purposes" -msgstr "접근성을 목적으로 색을 필터링함" - -msgid "Filter window decorations" -msgstr "창 장식을 필터링함" - -msgid "Filtered windows" -msgstr "필터링된 창" - -msgid "Filters files" -msgstr "파일을 필터링함" - -msgid "" -"List of plain text filter files that should be applied when filtering " -"windows or screen." -msgstr "창이나 화면을 필터링하는데 사용되는 텍스트 필터 파일 목록." - -msgid "" -"Select filter to use from filters list : either apply all filters or only " -"one specific filter (triggering this action switches filters one by one and " -"eventually comes back to the \"all filters\" mode)." -msgstr "" -"필터 목록에서 사용할 필터를 선택합니다 : 모든 필터를 사용하거나 특정 필터 하" -"나만을 사용합니다. (이 동작은 필터를 하나씩 변경하다가 결국에는 \"모든 필터" -"\" 모드로 돌아갑니다.)." - -msgid "Switch filter" -msgstr "필터 변경" - -msgid "Toggle filtering for currently focused window." -msgstr "현재 선택된 창을 필터링함" - -msgid "Toggle filtering for every window on the screen." -msgstr "화면에 보이는 모든 창을 필터링함" - -msgid "Toggle screen filtering" -msgstr "화면 필터링" - -msgid "Toggle window filtering" -msgstr "창 필터링" - -msgid "" -"Window decorations (borders and titlebar) will be filtered as well as window " -"contents if enabled." -msgstr "" -"활성화 되면 창 장식 (가장자리와 제목 표시줄)도 창의 내용과 마찬가지로 필터링" -"됩니다." - -msgid "Windows to be filtered by default." -msgstr "기본적으로 필터링되는 창 목록" - -msgid "Windows to exclude from filtering." -msgstr "필터링에서 제외되는 창 목록" - -msgid "Activate Crash Handler." -msgstr "충돌 관리자 사용" - -msgid "Compiz crash handler plugin" -msgstr "컴피즈 충돌 관리자 플러그인" - -msgid "Crash Dump Directory" -msgstr "충돌 로그 저장 디렉토리" - -msgid "Crash handler" -msgstr "충돌 관리자" - -msgid "Directory to dump the crash logs to." -msgstr "충돌 로그가 저장될 디렉토리입니다." - -msgid "Enable Crash Handler" -msgstr "충돌 관리자 활성화" - -msgid "Start Other Window Manager" -msgstr "다른 창 관리자 시작" - -msgid "Start other window manager on Crash." -msgstr "충돌시 다른 창 관리자를 시작합니다." - -msgid "Window Manager Command Line" -msgstr "창 관리자 명령 행" - -msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" -msgstr "창 관리자 명령 행. 여기에 compiz를 입력하지 마세요!!!" - -msgid "Adjust bottom face image to rotation" -msgstr "회전시 바닥 이미지 조절" - -msgid "Adjust bottom image" -msgstr "바닥 이미지 조절" - -msgid "Adjust top face image to rotation" -msgstr "회전시 천장 이미지 조절" - -msgid "Adjust top image" -msgstr "천장 이미지 조절" - -msgid "Advance to next image for bottom face of the cube" -msgstr "큐브의 아래쪽을 다음 그림으로 바꾸기" - -msgid "Advance to next image for top face of the cube" -msgstr "큐브의 위쪽을 다음 그림으로 바꾸기" - -msgid "Appearance" -msgstr "외양" - -msgid "Behaviour" -msgstr "동작" - -msgid "Bottom image files" -msgstr "바닥 이미지 파일" - -msgid "Clamp bottom face image to border" -msgstr "바닥 이미지를 가장자리로 늘림" - -msgid "" -"Clamp bottom face image to border. This is often the best if your image " -"doesn't fit the size of the cube or if it's transparent. It can lead to some " -"ugly dotted lines when enabled (especially with large enough images) though." -msgstr "" -"바닥 이미지를 가장자리로 늘림. 이것은 이미지가 큐브의 크기에 맞지 않거나 투명" -"한 경우에 알맞습니다. 하지만 (크기가 충분히 큰 이미지의 경우에 특히) 이상한 " -"점선이 생겨날 수도 있습니다." - -msgid "Clamp top face image to border" -msgstr "천장 이미지를 가장자리로 늘림" - -msgid "" -"Clamp top face image to border. This is often the best if your image doesn't " -"fit the size of the cube or if it's transparent. It can lead to some ugly " -"dotted lines when enabled (especially with large enough images) though." -msgstr "" -"천장 이미지를 가장자리로 늘림. 이것은 이미지가 큐브의 크기에 맞지 않거나 투명" -"한 경우에 알맞습니다. 하지만 (크기가 충분히 큰 이미지의 경우에 특히) 이상한 " -"점선이 생겨날 수도 있습니다." - -msgid "Color of bottom face of the cube" -msgstr "큐브의 바닥 색" - -msgid "Color of top face of the cube" -msgstr "큐브의 천장 색" - -msgid "Cube Bottom Color" -msgstr "큐브 바닥 색" - -msgid "Cube Caps" -msgstr "큐브 캡" - -msgid "Cube Top Color" -msgstr "큐브 천장 색" - -msgid "Draw bottom face" -msgstr "바닥을 그림" - -msgid "Draw bottom face of the cube" -msgstr "큐브의 바닥을 그림" - -msgid "Draw top face" -msgstr "천장을 그림" - -msgid "Draw top face of the cube" -msgstr "큐브의 천장을 그림" - -msgid "Go back to previous image for bottom face of the cube" -msgstr "이전 바닥 이미지로 돌아감" - -msgid "Go back to previous image for top face of the cube" -msgstr "이전 천장 이미지로 돌아감" - -msgid "" -"List of PNG and SVG files that should be rendered on bottom face of cube" -msgstr "큐브의 바닥 이미지로 사용될 PNG와 SVG 파일 목록" - -msgid "List of PNG and SVG files that should be rendered on top face of cube" -msgstr "큐브의 천장 이미지로 사용될 PNG와 SVG 파일 목록" - -msgid "Next bottom image" -msgstr "다음 바닥 이미지" - -msgid "Next top image" -msgstr "다음 천장 이미지" - -msgid "Prev bottom image" -msgstr "이전 바닥 이미지" - -msgid "Prev top image" -msgstr "이전 천장 이미지" - -msgid "Render images on top and bottom of the cube" -msgstr "큐브의 천장과 바닥 이미지를 그림" - -msgid "Scale bottom image" -msgstr "바닥 이미지 크기 조절" - -msgid "Scale image to cover bottom face of cube" -msgstr "큐브의 바닥에 맞도록 이미지의 크기를 조절함" - -msgid "Scale image to cover top face of cube" -msgstr "큐브의 천장에 맞도록 이미지의 크기를 조절함" - -msgid "Scale top image" -msgstr "천장 이미지 크기 조절" - -msgid "Top image files" -msgstr "천장 이미지 파일 목록" - -msgid "Above" -msgstr "맨 위에" - -msgid "Auto zoom" -msgstr "자동 확대" - -msgid "Auto zoom only on Mouse Rotate" -msgstr "마우스 회전시에만 자동 확대" - -msgid "Color of the ground (far)." -msgstr "바닥 색(먼 쪽)" - -msgid "Color of the ground (near)." -msgstr "바닥 색(가까운 쪽)" - -msgid "Compiz cube reflection" -msgstr "컴피즈 큐브 반사" - -msgid "Cube Reflection" -msgstr "큐브 반사" - -msgid "Distance" -msgstr "거리" - -msgid "Ground color(far)" -msgstr "바닥 색(먼 쪽)" - -msgid "Ground color(near)" -msgstr "바닥 색(가까운 쪽)" - -msgid "Intensity" -msgstr "밀도" - -msgid "Jumpy" -msgstr "튀기기" - -msgid "Jumpy reflection" -msgstr "반사면과 튀기기" - -msgid "Reflection ground size" -msgstr "반사면 크기" - -msgid "Reflection ground size." -msgstr "반사면 크기" - -msgid "Reflection intensity" -msgstr "반사 밀도" - -msgid "Reflection mode" -msgstr "반사 모드" - -msgid "Reflection mode." -msgstr "반사 모드" - -msgid "Zoom out automatically only on mouse rotate." -msgstr "마우스 회전시에 자동으로 축소" - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "큐브가 화면에 적합하도록 자동으로 축소됨" - -msgid "Animation used when switching to expo mode" -msgstr "엑스포 모드로 전환할 때 애니메이션 사용" - -msgid "Aspect Ratio" -msgstr "화면 비율" - -msgid "Button binding for drag & drop of windows" -msgstr "창을 드래그 앤 드롭하는 버튼" - -msgid "Button binding to exit expo" -msgstr "엑스포 모드를 종료하는 버튼" - -msgid "Button binding to switch to next viewport in expo" -msgstr "엑스포 모드에서 다음 작업 공간으로 전환하는 버튼" - -#, fuzzy -msgid "Curve" -msgstr "휘어지게 접기" - -#, fuzzy -msgid "Curve strength" -msgstr "모션 블러 강도" - -#, fuzzy -msgid "Deformation" -msgstr "지속시간" - -#, fuzzy -msgid "Deformation of the expo wall" -msgstr "엑스포 벽의 거리" - -#, fuzzy -msgid "Distance between viewports" -msgstr "1번 작업 공간으로 전환" - -msgid "Distance of the expo wall" -msgstr "엑스포 벽의 거리" - -msgid "Double click time" -msgstr "더블 클릭 속도" - -msgid "Drag&drop" -msgstr "드래그 앤 드롭" - -msgid "Duration of the zoomout animation" -msgstr "축소 애니메이션 시간" - -msgid "Engage wall expo mode button binding" -msgstr "엑스포 모드 시작 버튼" - -#, fuzzy -msgid "Engage wall expo mode edge binding" -msgstr "엑스포 모드를 시작하는 가장자리" - -msgid "Engage wall expo mode key binding" -msgstr "엑스포 모드 시작 키" - -msgid "Exit expo" -msgstr "엑스포 모드 종료" - -msgid "Expo" -msgstr "엑스포" - -msgid "Expo Animation" -msgstr "엑스포 애니메이션" - -msgid "Expo Plugin" -msgstr "엑스포 플러그인" - -msgid "Expo button" -msgstr "엑스포 버튼" - -#, fuzzy -msgid "Expo edge" -msgstr "엑스포 가장자리" - -msgid "Expo key" -msgstr "엑스포 키" - -msgid "Expo mode aspect ratio" -msgstr "엑스포 모드 화면 비율" - -msgid "Fade + Zoom" -msgstr "페이드 + 확대/축소" - -msgid "Generate mipmaps in expo mode" -msgstr "엑스포 모드에 대한 mipmap 생성" - -msgid "Hide panels/docks in expo" -msgstr "엑스포 모드에서 패널/독 숨김" - -msgid "Hide panels/docks in expo." -msgstr "엑스포 모드에서 패널/독 숨김" - -msgid "Immediate moves" -msgstr "바로 이동" - -msgid "Inactive viewport brightness." -msgstr "" - -msgid "Inactive viewport saturation." -msgstr "" - -msgid "Mipmaps" -msgstr "Mipmap" - -msgid "Multi Output Mode" -msgstr "다중 출력 모드" - -msgid "Next viewport" -msgstr "다음 작업 공간" - -msgid "One big wall" -msgstr "하나의 큰 벽" - -msgid "One wall per output" -msgstr "출력마다 하나의 벽" - -msgid "Previous viewport" -msgstr "이전 작업 공간" - -msgid "Reflection" -msgstr "반사" - -msgid "Reflection Scale" -msgstr "반사 크기" - -msgid "Scale factor of the expo wall reflection" -msgstr "엑스포 벽 반사를 위한 크기 비율" - -msgid "" -"Selects how the expo wall is displayed if multiple output devices are used." -msgstr "" -"다중 출력 모드가 활성화 되었을 때, 엑스포 벽이 표시되는 방법을 선택하세요." - -msgid "" -"Selects if windows movements in expo mode should be immediate - this among " -"other things disables wobbliness" -msgstr "" -"엑스포 모드에서 창 이동이 즉시 이루어지게 할 것인지 선택하세요. (출렁거림 효" -"과가 해제됩니다.)" - -msgid "Show a reflection of the viewports on the ground" -msgstr "작업 공간이 바닥에 반사됨" - -msgid "Strength of the deformation in curve mode" -msgstr "" - -#, fuzzy -msgid "Tilt" -msgstr "타일" - -msgid "Timeframe to execute a double click" -msgstr "더블 클릭에 대한 시간 간격" - -#, fuzzy -msgid "Viewport distance" -msgstr "작업 공간 전환기" - -msgid "Vortex" -msgstr "소용돌이" - -msgid "Zoom time" -msgstr "확대/축소 시간" - -#, fuzzy -msgid "Activate Demanding Attention Window" -msgstr "주어진 창을 활성화함" - -msgid "Activate Window" -msgstr "창 활성화" - -msgid "Activate a given window" -msgstr "주어진 창을 활성화함" - -msgid "Activate next window which has the \"demands attention\" flag set." -msgstr "" - -msgid "Extra WM Actions" -msgstr "추가적인 창 관리 기능" - -msgid "Provides less commonly used WM actions" -msgstr "잘 사용되지 않는 창 관리 기능 제공힙니다" - -msgid "Toggle Always-On-Top" -msgstr "항상 맨 위에" - -msgid "Toggle Fullscreen" -msgstr "전체 화면" - -msgid "Toggle Redirect" -msgstr "창 옮기기" - -msgid "Toggle Sticky" -msgstr "끈적이 창" - -msgid "Toggle always on top for the active window" -msgstr "활성화된 창을 항상 맨 위로" - -msgid "Toggle window fullscreen" -msgstr "전체 화면" - -msgid "Toggle window redirect" -msgstr "창 옮기기 기능 토글" - -msgid "Toggle window stickyness" -msgstr "끈적이 창" - -msgid "Always fit to window on focus track" -msgstr "초점 움직임에 언제나 창 맞춤" - -msgid "" -"Always keep the zoomed area in sync with where the mouse is, and vice versa. " -"Use this if you don't intend to draw a scaled pointer or hide the original " -"pointer. The zoomed area will move as you move your mouse." -msgstr "" -"항상 확대된 영역을 마우스가 있는 곳에 맞추며 그 반대로 할 수 있습니다. 확대" -"된 포인터를 나타내고 싶지 않거나 원래의 포인터를 숨기고 싶을때 이것을 사용하" -"세요. 확대된 영역은 마우스를 움직이는 대로 움직일 겁니다." - -msgid "Animation" -msgstr "애니메이션" - -msgid "" -"Attempt to keep the zoomed mouse visible by warping it when it is moved " -"outside the zoom area." -msgstr "" -"마우스가 확대 영역 밖으로 빠져나가면, 이동시켜 확대된 마우스가 보이도록 합니" -"다." - -msgid "Center the mouse" -msgstr "마우스를 가운데로 옮김" - -msgid "Enable focus tracking" -msgstr "초점 추척 활성화" - -msgid "Enable this to get a gradually larger mouse pointer as you zoom in" -msgstr "이것을 활성화하면 확대하는대로 마우스 포인터가 점점 커집니다," - -msgid "" -"Enable this to target the focused window when jumping to a specific zoom " -"level. Disable to target mouse." -msgstr "" -"특정 확대 수준으로 전환할 때, 활성화된 창을 목표로 설정합니다. 마우스를 목표" -"로 설정하려면 이것을 해제하시기 바랍니다." - -msgid "Enhanced Zoom Desktop" -msgstr "향상된 데스크탑 확대" - -msgid "Enhanced zoom functions for the visually impaired and other users" -msgstr "시력이 안좋은 사람들을 위한 향상된 확대 기능" - -msgid "Filter Linear" -msgstr "경계선을 부드럽게 함" - -msgid "Fit the window to the zoom level" -msgstr "확대 수준에 창을 맞춤" - -msgid "" -"Fit the zoomed area to the window when the zoomed area moves as a result of " -"focus tracking." -msgstr "초점 추적에 따라 확대 영역을 이동할 때, 확대 영역을 창에 맞춥니다." - -msgid "" -"Fit the zoomed area to the window when the zoomed area moves as a result of " -"focus tracking. Even when not initially zoomed in." -msgstr "" -"초점 추적에 따라 확대 영역을 이동할 때, 처음에 확대되지 않았더라도 확대 영역" -"을 창에 맞춥니다." - -msgid "Fit zoom level to window on focus change" -msgstr "초점 추적 추적에 따라 확대 수준을 창에 맞춤" - -msgid "Fit zoomed area to window" -msgstr "확대 영역을 창에 맞춤" - -msgid "Fitting" -msgstr "맞춤" - -msgid "Focus Tracking" -msgstr "초점 추적" - -msgid "Follow Focus Delay" -msgstr "초점 이동 시간 간격" - -msgid "Hide original mouse pointer" -msgstr "원래의 마우스 포인터를 숨김" - -msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" -msgstr "마우스가 확대되면 원래의 마우스는 숨김" - -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"얼마나 자주 마우스 위치를 바꿀 것인지 밀리세컨드 단위로 입력하세요. 자연스러" -"운 동작을 원하신다면 이 값을 줄이시기 바랍니다." - -msgid "Mouse Behaviour" -msgstr "마우스 동작" - -msgid "Mouse Poll Interval" -msgstr "마우스 폴 간격" - -msgid "Mouse Restrain Margin" -msgstr "마우스 구속 한계" - -msgid "Mouse panning" -msgstr "마우스 이동" - -msgid "Move the zoom area when focus changes." -msgstr "초점이 바뀌면 확대 영역을 이동함" - -msgid "" -"Move the zoomed area this much whenever you pan the zoomed area with keys." -msgstr "키를 이용하여 확대 영역을 이동할 때, 확대 영역을 이 만큼 이동시킵니다." - -msgid "" -"Only attempt to center newly focused windows if the mouse hasn't moved in " -"this amount of seconds. Use this to avoid jumping when using sloppy focus." -msgstr "" -"마우스가 설정된 시간만큼 움직이지 않는다면 새롭게 초점을 받는 창을 중앙으로 " -"위치하도록 합니다. 조잡한 초점을 사용할때 점프하는 것을 피하려면 이것을 사용 " -"하십시오." - -msgid "Pan (move) the zoom area down" -msgstr "확대 영역을 아래로 이동" - -msgid "Pan (move) the zoom area left" -msgstr "확대 영역을 왼쪽으로 이동" - -msgid "Pan (move) the zoom area right" -msgstr "확대 영역을 오른쪽으로 이동" - -msgid "Pan (move) the zoom area up" -msgstr "확대 영역을 위로 이동" - -msgid "Pan Factor" -msgstr "이동 수준" - -msgid "Pan Zoom Down" -msgstr "아래로 이동" - -msgid "Pan Zoom Left" -msgstr "왼쪽으로 이동" - -msgid "Pan Zoom Right" -msgstr "오른쪽으로 이동" - -msgid "Pan Zoom Up" -msgstr "위로 이동" - -msgid "Pan the zoom area when the mouse cursor moves outside the visible area." -msgstr "마우스 커서를 확대 영역 밖으로 이동하면, 확대 영역을 이동함" - -msgid "Panning" -msgstr "이동" - -msgid "Puts the mouse in the middle of the screen (Regardless of zoom level)" -msgstr "확대 수준에 상관없이 마우스를 화면 중앙에 둠" - -msgid "Resize the window so it matches the current zoom level." -msgstr "현재의 확대 수준에 맞게 창의 크기를 변경함" - -msgid "Restrain the mouse to the zoom area" -msgstr "마우스를 항상 확대 영역 안에 둠" - -msgid "Scale the mouse pointer" -msgstr "마우스 포인터의 크기를 변경함" - -msgid "Specific Zoom" -msgstr "특정 수준으로 확대" - -msgid "Specific zoom factor 1" -msgstr "확대 수준 1" - -msgid "Specific zoom factor 2" -msgstr "확대 수준 2" - -msgid "Specific zoom factor 3" -msgstr "확대 수준 3" - -msgid "Speed" -msgstr "속도" - -msgid "Sync Mouse" -msgstr "마우스 동기화" - -msgid "Target Focused Window on Specific level" -msgstr "확대 수준을 전환할 때, 현재 창을 목표로 설정" - -msgid "The size of the margin to add when attempting to restrain the mouse." -msgstr "마우스를 구속하려할 때, 더할 여유분" - -msgid "Timestep" -msgstr "시간 간격" - -msgid "Toggle zoom area lock" -msgstr "확대 영역 고정" - -msgid "Toggles a lock on the zoom area so it doesn't change on various events" -msgstr "확대 영역을 고정시켜서, 확대 영역이 이동되지 않도록 합니다." - -msgid "Use linear filter when zoomed in" -msgstr "확대할 때, 선형 필터 사용" - -msgid "Zoom Area Movement" -msgstr "확대 영역 이동" - -msgid "Zoom In" -msgstr "확대" - -msgid "Zoom In/Out" -msgstr "확대/축소" - -msgid "Zoom Out" -msgstr "축소" - -msgid "Zoom Specific Level 1" -msgstr "확대 수준 1" - -msgid "Zoom Specific Level 2" -msgstr "확대 수준 2" - -msgid "Zoom Specific Level 3" -msgstr "확대 수준 3" - -msgid "Zoom Speed" -msgstr "확대 속도" - -msgid "Zoom Timestep" -msgstr "확대 시간 간격" - -msgid "Zoom factor" -msgstr "확대 수준" - -msgid "Zoom in/out by this factor. Higher value means quicker zooming." -msgstr "" -"이 값에 따라 확대/축소가 이루어집니다. 이 값이 높으면 더 빠르게 확대됩니다." - -msgid "Zoom level to go to when triggering hotkey 1" -msgstr "단축키 1에 적용할 확대 수준" - -msgid "Zoom level to go to when triggering hotkey 2" -msgstr "단축키 2에 적용할 확대 수준" - -msgid "Zoom level to go to when triggering hotkey 3" -msgstr "단축키 3에 적용할 확대 수준" - -msgid "Zoom to the specific zoom level 1" -msgstr "확대 수준 1로 확대" - -msgid "Zoom to the specific zoom level 2" -msgstr "확대 수준 2로 확대" - -msgid "Zoom to the specific zoom level 3" -msgstr "확대 수준 3으로 확대" - -msgid "" -"Zooms in/out so the focused window is zoomed to the maximum while still " -"being fully visible." -msgstr "현재 창이 화면에 꽉 차도록 확대/축소합니다." - -msgid "Easily access your desktop" -msgstr "바탕 화면에 쉽게 접근할 수 있음" - -msgid "Fade Time" -msgstr "페이드 시간" - -msgid "Fade time (in ms)" -msgstr "페이드 시간 (ms 단위)" - -msgid "Fade to Desktop" -msgstr "바탕 화면으로 페이드" - -msgid "Windows that should be faded to desktop" -msgstr "바탕 화면으로 페이드될 창" - -msgid "Alter window opacity based on color." -msgstr "색에 기반하여 창의 투명도를 변경" - -msgid "Color Opacity" -msgstr "색 투명도" - -msgid "Toggle Window Fake ARGB" -msgstr "가짜 창 ARGB 기능 토글" - -msgid "Toggle window fake ARGB." -msgstr "가짜 창 ARGB 기능 토글" - -msgid "Background brightness" -msgstr "배경 밝기" - -msgid "Background brightness during paint" -msgstr "페인트 중의 배경 밝기" - -msgid "Clear" -msgstr "지우기" - -msgid "Clear (button)" -msgstr "지우기 (버튼)" - -msgid "Clear (key)" -msgstr "지우기 (키)" - -msgid "Initiate (button)" -msgstr "시작 (버튼)" - -msgid "Initiate (key)" -msgstr "시작 (키)" - -msgid "Initiate fire drawing" -msgstr "파이어 페인트 시작" - -msgid "Maximum number of active particles" -msgstr "활성화된 불꽃의 최대 숫자" - -msgid "Number of particles" -msgstr "불꽃의 수" - -msgid "Paint fire on the screen" -msgstr "화면에 불꽃으로 그림을 그림" - -msgid "Paint fire or other particles on the screen" -msgstr "화면에 불꽃이나 다른 입자로 그림을 그림" - -msgid "Cube Gears" -msgstr "큐브 기어" - -msgid "Render gears inside of the transparent cube" -msgstr "투명 큐브 안에 기어를 그려넣습니다." - -msgid "Animation Options" -msgstr "애니메이션 옵션" - -msgid "Autotab windows on creation" -msgstr "창 생성시 자동으로 그룹 생성" - -msgid "Autotab windows with themselves on window creation" -msgstr "창 생성시 해당 창에 대한 그룹 자동 생성" - -msgid "Border Radius" -msgstr "가장자리 반경" - -msgid "Border Width" -msgstr "가장자리 두께" - -msgid "Border color of the tab bar" -msgstr "탭 막대의 가장자리 색" - -msgid "Brightness of selected windows" -msgstr "선택된 창의 밝기" - -msgid "Change Tab Left" -msgstr "왼쪽 탭으로 전환" - -msgid "Change Tab Right" -msgstr "오른쪽 탭으로 전환" - -msgid "Change tab animation duration" -msgstr "탭 애니메이션 시간 변경" - -msgid "Close Group" -msgstr "그룹 닫기" - -msgid "Create mipmaps for thumbnails" -msgstr "미리 보기에 대한 Mipmap 생성" - -msgid "Create mipmaps for thumbnails in the tab bar" -msgstr "탭 막대의 미리 보기에 대한 Mipmap을 생성" - -msgid "" -"Distance (in pixels) between the tab bar and the dragged slot for applying " -"the spring model. If the distance is larger than that value, the model isn't " -"applied." -msgstr "" -"탭 막대와 스프링 모델이 적용되는 드래그 슬롯 사이의 거리(픽셀). 만약 거리가 " -"그 값보다 크다면 모델은 적용되지 않습니다." - -msgid "Duration (in s) of the animation that happens when changing tabs" -msgstr "탭을 변경할 때 적용되는 애니메이션 지속 시간 (초 단위)" - -msgid "Duration (in s) of the tab bar fading animation when showing/hiding it" -msgstr "탭 막대 페이딩 애니메이션 지속 시간 (초 단위)" - -msgid "Duration (in s) of the tab bar pulse animation" -msgstr "탭 막대 파동 애니메이션 지속 시간 (초 단위)" - -msgid "Duration (in s) of the tab bar reflex animation" -msgstr "탭 막대 반사 애니메이션 지속 시간 (초 단위)" - -msgid "Duration (in s) of the text fading animation when showing/hiding it" -msgstr "텍스트 페이딩 애니메이션 지속 시간 (초 단위)" - -msgid "Enable Glow" -msgstr "발광 효과 활성화" - -msgid "Enable grouped window glowing" -msgstr "창 그룹에 발광 효과" - -msgid "Fade time for tab bar animations" -msgstr "탭 막대 애니메이션의 페이드 시간" - -msgid "Fade time for text animations" -msgstr "텍스트 애니메이션의 페이드 시간" - -msgid "Fill color of the selection rectangle" -msgstr "선택 영역을 색으로 채우기" - -msgid "Fill color of the tab bar" -msgstr "탭 막대를 색으로 채우기" - -msgid "Font Color" -msgstr "글자 색" - -msgid "Font Size" -msgstr "글자 크기" - -msgid "Glass" -msgstr "유리" - -msgid "Glow" -msgstr "발광 효과" - -msgid "Glow Color Change" -msgstr "발광 효과 색 변경" - -msgid "Glow Size" -msgstr "발광 효과 크기" - -msgid "Glow Type" -msgstr "발광 효과 종류" - -msgid "Glow ring" -msgstr "둥글게" - -msgid "Gradient" -msgstr "기울기" - -msgid "Group Window Match" -msgstr "창 그룹 매치" - -msgid "Group Windows" -msgstr "창 그룹" - -msgid "Group and Tab Windows" -msgstr "창 그룹과 창 탭" - -msgid "Group the windows after selection" -msgstr "창을 선택하면 바로 그룹 생성" - -msgid "Grouping" -msgstr "그룹 생성" - -msgid "Hover time for slot dragging" -msgstr "슬롯 드래깅을 위한 호버 시간" - -msgid "" -"If one window in the group is (un)maximized, all other group windows are (un)" -"maximized as well." -msgstr "" -"그룹 내의 창을 하나 최대화/최대화 취소하면, 그룹 내의 다른 모든 창도 최대화/" -"최대화 취소합니다." - -msgid "" -"If one window in the group is (un)minimized, all other group windows are (un)" -"minimized as well." -msgstr "" -"그룹 내의 창을 하나 최소화/최소화 취소하면, 그룹 내의 다른 모든 창도 최소화/" -"최소화 취소합니다." - -msgid "" -"If one window in the group is (un)shaded, all other group windows are (un)" -"shaded as well." -msgstr "" -"그룹 내의 창을 하나 말아올리기/말아올리기 취소하면, 그룹 내의 다른 모든 창도 " -"말아올리기/말아올리기 취소합니다." - -msgid "" -"If one window in the group is activated, all other group windows are raised " -"as well." -msgstr "" -"그룹 내의 창을 하나 활성화시키면, 그룹 내의 다른 모든 창도 활성화시킵니다." - -msgid "" -"If one window in the group is moved, all other group windows are moved as " -"well." -msgstr "그룹 내의 창을 하나 이동시키면, 그룹 내의 다른 모든 창도 이동시킵니다." - -msgid "" -"If one window in the group is resized, all other group windows are resized " -"as well." -msgstr "" -"그룹 내의 창을 하나 크기 변경하면, 그룹 내의 다른 모든 창도 크기 변경합니다." - -msgid "If there is only 1 window left in the group, it will be ungrouped." -msgstr "그룹 내에 창이 하나 밖에 없으면, 그룹을 해제합니다." - -msgid "" -"If you don't like the current glow color, you can change it with this key." -msgstr "" -"현재의 발광 색이 마음에 들지 않으면, 이 키를 눌러서 변경할 수 있습니다." - -msgid "" -"If you have selected some windows, this automatically groups them (Doesn't " -"work with selection mode 'Normal')." -msgstr "" -"여러 창을 선택하면, 자동으로 그룹을 생성합니다. (기본 선택 모드에서는 사용 불" -"가)" - -msgid "Ignore Group" -msgstr "그룹을 무시" - -msgid "Key bindings" -msgstr "단축키" - -msgid "Line Color" -msgstr "선 색깔" - -msgid "Line color of the selection rectangle" -msgstr "선택된 영역의 선 색깔" - -msgid "Maximize/unmaximize with group" -msgstr "그룹으로 창 최대화/되돌리기" - -msgid "Metal" -msgstr "금속" - -msgid "Minimize with group" -msgstr "그룹으로 최소화" - -msgid "" -"Mouse pointer movement speed limit (in pixels/second) for the spring model" -msgstr "용수철 모델을 위한 마우스 포인터 이동 속도 한계 (픽셀/초 단위)" - -msgid "Move every window in the group" -msgstr "그룹 내의 모든 창을 이동" - -msgid "Murrina" -msgstr "Murrina" - -msgid "Opacity of selected windows" -msgstr "선택된 창의 투명도" - -msgid "Play animations on the tab bar e.g. on fade in." -msgstr "탭 막대 애니메이션 사용 예) 페이드" - -msgid "Precision" -msgstr "정밀도" - -msgid "" -"Precision of the selection (percentage of the visible window area which must " -"be selected for the selection to be recognized)." -msgstr "선택의 정밀도 (반드시 선택되어야 하는 창 영역의 비율)." - -msgid "Raise every window in the group" -msgstr "그룹 내의 모든 창을 위로" - -msgid "Rectangular glow" -msgstr "사각형으로" - -msgid "Remove Group Window" -msgstr "창 그룹을 해제" - -msgid "Remove window from group after dropping it outside a tab bar" -msgstr "창을 탭 막대 밖으로 드롭하면 그룹에서 제거" - -msgid "Resize every window in the group" -msgstr "그룹 내의 모든 창의 크기를 변경" - -msgid "Saturation of selected windows" -msgstr "선택된 창들의 채도" - -msgid "Select" -msgstr "선택" - -msgid "Select Single Window" -msgstr "단일 윈도우 선택" - -msgid "Selection" -msgstr "선택" - -msgid "Selection Color" -msgstr "선택된 색깔" - -msgid "Shade with group" -msgstr "그룹으로 말아올리기" - -msgid "Simple" -msgstr "단순하게" - -msgid "Slot Drag Spring K" -msgstr "슬롯 드래그시 스프링 정도" - -msgid "Slot Dragging" -msgstr "슬롯 드래그" - -msgid "Slot drag friction" -msgstr "슬롯 드래그 마찰" - -msgid "Space" -msgstr "공간" - -msgid "Speed limit for spring model" -msgstr "스프링 모델에 대한 속도 제한" - -msgid "Spring Konstant used for slot dragging" -msgstr "슬롯 드래그에 사용되는 스프링 일관성 " - -msgid "Spring friction for slot dragging" -msgstr "슬롯 드래그에 사용되는 스프링 마찰" - -msgid "Tab Bar Show Delay" -msgstr "탭 막대 표시 지연시간" - -msgid "Tab Base Color" -msgstr "탭 기본 색깔" - -msgid "Tab Border Color" -msgstr "탭 테두리 색깔" - -msgid "Tab Group" -msgstr "탭 그룹" - -msgid "Tab Highlight Color" -msgstr "탭 하이라이트 색깔" - -msgid "Tab Style" -msgstr "탭 스타일" - -msgid "Tab bar visibility time after tab change" -msgstr "탭 변경 후 탭 막대의 표시 시간" - -msgid "Tabbing" -msgstr "탭 생성" - -msgid "Tabbing Speed" -msgstr "탭 생성 속도" - -msgid "Tabbing Timestep" -msgstr "탭 생성 시간 간격" - -msgid "Tabbing speed" -msgstr "탭 생성 속도" - -msgid "Tabbing timestep" -msgstr "탭 생성 시간 간격" - -msgid "The color of the window title in the tab bar" -msgstr "탭 막대의 창 제목 색" - -msgid "The key for closing all windows in the group." -msgstr "그룹의 모든 창 닫기 키" - -msgid "The key for grouping windows." -msgstr "창 그룹 생성 키" - -msgid "" -"The key for ignoring the group. If this key is pressed, you can do actions " -"for a single window in the group only." -msgstr "" -"그룹을 무시하기 위한 키. 이 키를 누르면, 그룹 내에 있는 단 하나의 창에만 명령" -"을 내릴 수 있습니다." - -msgid "The key for removing the selected window from its group." -msgstr "선택된 창을 그룹에서 제거하는 키" - -msgid "The key for selecting the current window." -msgstr "현재 창을 선택하는 키" - -msgid "The key for starting selecting windows." -msgstr "창 선택을 시작하는 키" - -msgid "The key for switching to the tab left of the current one." -msgstr "이전 창으로 전환 키" - -msgid "The key for switching to the tab right of the current one." -msgstr "다음 창으로 전환 키" - -msgid "The key for toggling the tab mode for the current group." -msgstr "현재 그룹에 대한 탭 모드를 변경하는 키" - -msgid "The key for ungrouping the current group." -msgstr "그룹 해제 키" - -msgid "The radius for the tab bar edges" -msgstr "탭 막대의 테두리 반경" - -msgid "The size of the grouped window glow" -msgstr "창 그룹의 발광 효과 크기" - -msgid "The size of the window thumbs in the task bar" -msgstr "창 목록의 미리 보기 크기" - -msgid "The size of the window title font in the tab bar" -msgstr "탭 막대의 창 제목 글자 크기" - -msgid "The space between the thumbs" -msgstr "미리 보기 사이의 간격" - -msgid "The style of the tab bar" -msgstr "탭 막대 스타일" - -msgid "The type of the glow" -msgstr "발광 효과 종류" - -msgid "The width of the tab bar outline" -msgstr "탭 막대 외곽선의 두께" - -msgid "Thumb Size" -msgstr "미리 보기 크기" - -msgid "Time (in s) before the tab bar is shown after hovering the title bar" -msgstr "제목 표시줄을 가리킬때 탭 막대가 나오기 전 시간(초)" - -msgid "Time (in s) the tab bar is visibly after a tab change" -msgstr "탭 바꾸기 후 탭 막대가 보여질 시간(초)" - -msgid "Time for tab bar pulse animation" -msgstr "탭 막대의 파동 애니메이션 시간" - -msgid "Time for tab bar reflex animation" -msgstr "탭 막대의 반사 애니메이션 시간" - -msgid "" -"Timespan (in s) after which a grouped window is activated if a window of " -"another group is dragged over it" -msgstr "다른 그룹의 창이 드래그되었을 때 그룹이 활성화되는 시간 간격 (초 단위)" - -msgid "Ungroup Windows" -msgstr "창 그룹 해제" - -msgid "Ungroup the windows if only one window is left" -msgstr "하나의 창만 남았을 때는 그룹을 해제함" - -msgid "Untab the group when closing the top tab window instead of changing tab" -msgstr "최상위의 탭 창을 닫았을때 탭을 바꾸는 대신 그룹 해제 하기" - -msgid "Untab when closing top tab" -msgstr "최상위 탭을 닫았을 때 탭 해제" - -msgid "Use tab bar animations" -msgstr "탭 막대 애니메이션을 사용" - -msgid "Window Title Font" -msgstr "창 제목 글꼴" - -msgid "Windows that should be allowed to be grouped" -msgstr "그룹 생성 가능한 창" - -msgid "With this plugin you can group and tab windows" -msgstr "이 플러그인을 이용하여 창 그룹이나 창 탭을 생성할 수 있음" - -msgid "Y distance for spring model" -msgstr "스프링 모델에 대한 Y 거리" - -msgid "Compression Quality" -msgstr "압축 품질" - -msgid "JPEG" -msgstr "JPEG" - -msgid "JPEG image format plugin" -msgstr "JPEG 이미지 형식 플러그인" - -msgid "Quality of compression when saving JPEG images" -msgstr "JPEG 이미지를 저장할 때의 압축 품질" - -#, fuzzy -msgid "Background/Window brightness." -msgstr "배경 밝기." - -#, fuzzy -msgid "Background/Window saturation." -msgstr "배경 채도." - -#, fuzzy -msgid "Fade In/Out Time" -msgstr "페이드 인/아웃 시간." - -msgid "Fade In/Out Time." -msgstr "페이드 인/아웃 시간." - -msgid "Login" -msgstr "" - -#, fuzzy -msgid "Login Window Match" -msgstr "일치하는 창" - -#, fuzzy -msgid "Login Window match" -msgstr "일치하는 창" - -msgid "Login/Logout" -msgstr "" - -msgid "Login/Logout effect" -msgstr "" - -msgid "Logout" -msgstr "" - -#, fuzzy -msgid "Logout Window Match" -msgstr "창 그룹 매치" - -#, fuzzy -msgid "Logout Window match" -msgstr "일치하는 창" - -#, fuzzy -msgid "Window opacity." -msgstr "창 투명도" - -#, fuzzy -msgid "Border color" -msgstr "탭 테두리 색깔" - -#, fuzzy -msgid "Border width" -msgstr "가장자리 두께" - -#, fuzzy -msgid "Border widtht." -msgstr "가장자리 두께" - -msgid "Box height." -msgstr "" - -#, fuzzy -msgid "Box width." -msgstr "광선의 너비." - -#, fuzzy -msgid "Clip mask" -msgstr "Mipmap" - -msgid "Clip mask." -msgstr "" - -#, fuzzy -msgid "Fisheye" -msgstr "물고기 크기" - -msgid "Height" -msgstr "높이" - -msgid "Image overlay" -msgstr "" - -#, fuzzy -msgid "Keep fully on screen" -msgstr "화면에 초당 프레임 표시" - -#, fuzzy -msgid "Keep fully on screen." -msgstr "화면에 초당 프레임 표시" - -msgid "Magnifier" -msgstr "" - -msgid "Magnifier box" -msgstr "" - -msgid "Magnifier image" -msgstr "" - -msgid "Magnifier image." -msgstr "" - -#, fuzzy -msgid "Mode" -msgstr "회피" - -#, fuzzy -msgid "Mode." -msgstr "회피" - -#, fuzzy -msgid "Radius" -msgstr "가장자리 반경" - -#, fuzzy -msgid "Radius of the magnification area." -msgstr "둥근 가장자리의 반경" - -msgid "Width" -msgstr "넓이" - -msgid "X offset of the cursor" -msgstr "" - -msgid "X offset of the cursor." -msgstr "" - -msgid "Y offset of the cursor" -msgstr "" - -msgid "Y offset of the cursor." -msgstr "" - -msgid "Zoom factor for keyboard initiated magnifier." -msgstr "" - -msgid "Ignore already overlapping windows in the calculations" -msgstr "" - -msgid "Ignore sticky windows in the calculations" -msgstr "" - -msgid "Maximumize" -msgstr "" - -#, fuzzy -msgid "Maximumizes windows (resize them to fit the available screenspace)." -msgstr "최대 창 크기 (화면 넓이에 대한 퍼센트 단위)" - -msgid "" -"Treat sticky windows as non-existant when calculating space to use for the " -"maximumize window." -msgstr "" - -msgid "" -"Treat windows that are already overlapping with the current window as non-" -"existant when calculating space to use for the maximumize window." -msgstr "" - -msgid "" -"Trigger a resize of the window currently focused so it fits as much of the " -"available screenspae as possible." -msgstr "" - -msgid "Trigger maximumize" -msgstr "" - -msgid "Accumulation buffer" -msgstr "집적 버퍼" - -msgid "Activate" -msgstr "활성화" - -msgid "Execute Motion Blur if the screen is transformed." -msgstr "화면이 변하면 모션 블러 효과를 적용함" - -msgid "Motion Blur Strength" -msgstr "모션 블러 강도" - -msgid "Motion Blur mode" -msgstr "모션 블러 모드" - -msgid "Motion Blur on Transformed Screen" -msgstr "화면이 변하면 모션 블러 효과 사용" - -msgid "Motion Blur render mode." -msgstr "모션 블러 표현 모드" - -msgid "Motion Blur strength." -msgstr "모션 블러 강도" - -msgid "Motion blur" -msgstr "모션 블러" - -msgid "Motion blur effect" -msgstr "모션 블러 효과" - -msgid "Texture Copy" -msgstr "텍스쳐 복사" - -msgid "Toggle Motion Blur" -msgstr "모션 블러 토글" - -msgid "Toggle motion Blur effect." -msgstr "모션 블러 효과 토글" - -msgid "Visibility/Performance" -msgstr "가시도/성능" - -msgid "Action" -msgstr "동작" - -msgid "Action that is to be invoked." -msgstr "실행될 동작" - -msgid "Assign mousegestures to any existing action" -msgstr "모든 동작에 마우스 제스쳐를 할당함" - -msgid "Detect Diagonal Movements" -msgstr "" - -msgid "Gesture" -msgstr "제스쳐" - -msgid "Gesture assignment" -msgstr "제스쳐 할당" - -msgid "Gestures" -msgstr "제스쳐" - -msgid "" -"If this option is selected, diagonal movements are detected, which may lead " -"to a decreased detection accuracy." -msgstr "" - -msgid "Mouse gesture to assign an action to." -msgstr "동작에 할당할 마우스 제스쳐." - -msgid "Mousegestures" -msgstr "마우스 제스쳐" - -msgid "Plugin" -msgstr "플러그인" - -msgid "Plugin the action belongs to." -msgstr "동작이 속한 플러그인." - -msgid "Start gesture" -msgstr "제스쳐 시작" - -msgid "Misc" -msgstr "" - -#, fuzzy -msgid "Mouse position polling" -msgstr "마우스 이동" - -msgid "Updates the mouse pointer position from the xserver" -msgstr "" - -msgid "Begin Gesture" -msgstr "제스쳐 시작" - -msgid "Begin Mouse Gesture" -msgstr "마우스 제스쳐 시작" - -msgid "Mouse switch" -msgstr "마우스 변경" - -msgid "Switch viewport in response to mouse gesture" -msgstr "마우스 제스쳐를 이용한 작업 공간 변경" - -msgid "Also negate window decorations, not only the window contents." -msgstr "" - -msgid "Exclude Windows" -msgstr "제외할 창" - -msgid "Neg Windows" -msgstr "음화할 창" - -#, fuzzy -msgid "Negate Decorations" -msgstr "창 장식에 대한 반사 효과" - -msgid "Negative" -msgstr "음화" - -msgid "Toggle Screen Negative" -msgstr "화면 음화" - -msgid "Toggle Window Negative" -msgstr "창 음화" - -msgid "Toggle active window negative" -msgstr "현재 선택된창을 음화함" - -msgid "Toggle screen negative" -msgstr "화면 음화" - -msgid "Used to set a window or screen negative" -msgstr "창이나 화면을 음화하기 위해 사용됨" - -msgid "Windows to be negative by default" -msgstr "기본적으로 음화될 창" - -msgid "Windows to exclude from negating" -msgstr "음화하지 않을 창" - -msgid "Debug" -msgstr "디버그" - -msgid "Display errors and other messages using libnotify." -msgstr "libnotify를 이용하여 에러와 다른 메세지들을 출력함." - -msgid "Error" -msgstr "에러" - -msgid "Error Notifications" -msgstr "에러 알림" - -msgid "Fatal" -msgstr "치명적" - -msgid "Hide Timeout" -msgstr "사라지는 시간" - -msgid "Info" -msgstr "정보" - -msgid "Maximum Log Level" -msgstr "최대 로그 레벨" - -msgid "The maximum log level to display" -msgstr "출력할 최대 로그 레벨" - -msgid "" -"Timeout (in seconds) before hiding the notification, set to -1 for system " -"default and 0 for indefinite" -msgstr "" -"알림이 사라지기 전까지의 시간, -1은 시스템 기본값, 0은 정해져 있지 않음" - -msgid "Warning" -msgstr "경고" - -msgid "Active Opacity" -msgstr "능동 투명도" - -msgid "" -"Bypass delay when Opacify is reducing the opacity on one or more windows " -"already." -msgstr "하나 혹은 여러 개의 창에 대한 투명도를 조절할 때의 시간 간격을 없앰" - -msgid "Bypass delay when the new active window is the focused window." -msgstr "새로운 활성 창이 현재 창일 경우 시간 간격을 없앰" - -msgid "Delay until Opacification" -msgstr "투명화를 위한 시간 간격" - -msgid "" -"Do not wait if the window we are hovering is the focused window. This allows " -"us to instantly see the focused window. You probably want to disable this if " -"you are not using 'Click to Focus'." -msgstr "" -"호버링하고 있는 창이 현재 창인 경우 지체하지 않습니다. 현재 창을 즉시 볼 수 " -"있게 합니다. '클릭하면 초점을 이동' 기능을 사용하고 계시다면 이 설정을 해제하" -"시는 편이 나을 것입니다." - -msgid "Make windows easily visible by hovering the mouse over them" -msgstr "마우스를 창 위에 가져갔을 때, 창이 쉽게 보이도록 합니다." - -msgid "Only increase opacity if a window is blocking" -msgstr "다른 창이 가리고 있을 때만 투명도를 변경함" - -msgid "" -"Only increase the opacity on the targeted window if it has one or more " -"windows blocking it from view." -msgstr "다른 창이 가리고 있어서 보이지 않을 때만 창 투명도를 변경합니다." - -msgid "Opacify" -msgstr "투명화" - -msgid "Opacity Levels" -msgstr "투명화 단계" - -msgid "Passive Opacity" -msgstr "수동 투명도" - -msgid "Reset opacity to original values when toggling" -msgstr "투명도를 기본값으로 되돌림" - -msgid "" -"Reset the opacity of all windows modified by opacify when toggling Opacify " -"with the defined key-combination." -msgstr "" -"정해진 키 조합을 이용하여 투명화 기능을 작동시킬 때, 투명화 기능에 의해 투명" -"도가 변경된 모든 창에 대한 투명도를 초기화합니다." - -msgid "" -"The delay (in ms) before Opacify changes opacity after the active window has " -"changed." -msgstr "투명화 기능이 창 투명도를 변경할 때의 시간 간격 (밀리세컨드 단위)" - -msgid "" -"The maximum opacity percentage a window blocking the current targeted window " -"can have. A blocking window will have either this opacity or the preset " -"opacity, whichever is lower." -msgstr "" -"다른 창을 가리고 있는 창이 가질 수 있는 최대 투명도. 다른 창을 가리고 있는 창" -"은 이 투명도 값과 미리 정해진 투명도 값 중에서 작은 값을 갖게 됩니다." - -msgid "" -"The minimum opacity percentage to ensure a targeted window has. A target " -"window will have either this opacity or the preset opacity, whichever is " -"higher." -msgstr "" -"가려진 창이 가질 수 있는 최소 투명도. 가려진 창은 이 투명도 값과 미리 정해진 " -"투명도 값 중에서 큰 값을 갖게 됩니다." - -msgid "" -"This enables you to let Opacify instantly opacify new windows when you're " -"already making one or more windows invisible. Makes for faster behavior " -"while looking through layers of hidden windows." -msgstr "" -"하나 이상의 창을 보이지 않게 한 경우, 투명화 기능이 새 창들을 바로 투명하게 " -"만들 수 있도록 합니다. 가려진 창들을 탐색할 때 빠르게 동작합니다." - -msgid "Toggle Opacify" -msgstr "투명화하기" - -msgid "Toggle Opacify on by default" -msgstr "투명화 기능을 기본적으로 사용함" - -msgid "" -"Use this to enable/disable Opacify on the fly. Previously opacified windows " -"will not be reset once you disable it like this." -msgstr "" -"투명화 기능을 바로 사용하거나 해제합니다. 이런 식으로 해제하면 이미 투명화된 " -"창들은 초기화되지 않을 것입니다." - -msgid "Windows that should be opacified." -msgstr "투명화될 창" - -msgid "" -"With this enabled, opacify will be on when you load Opacify, which is " -"usually when you start Compiz." -msgstr "" -"선택되면, 투명화 기능을 불러올 때, 즉, 일반적으로 컴피즈를 시작할 때 투명화 " -"기능이 활성화 됩니다." - -msgid "Animation speed" -msgstr "애니메이션 속도" - -msgid "Animation timestep" -msgstr "애니메이션 시간 간격" - -msgid "Avoid Offscreen" -msgstr "화면 밖으로 나가지 않음" - -msgid "Avoids putting window borders offscreen" -msgstr "창 가장자리를 화면 밖에 두지 않음" - -msgid "Move window arbitrarily by passing x, y and type." -msgstr "" - -msgid "Move window to a certain viewport" -msgstr "특정 작업 공간으로 창을 이동" - -msgid "Move window to the bottom edge" -msgstr "창을 하단으로 이동" - -msgid "Move window to the bottom left corner" -msgstr "창을 좌측 하단으로 이동" - -msgid "Move window to the bottom right corner" -msgstr "창을 우측 하단으로 이동" - -msgid "Move window to the center" -msgstr "창을 중앙으로 이동" - -msgid "Move window to the last position" -msgstr "창을 마지막 위치로 이동" - -msgid "Move window to the left edge" -msgstr "창을 좌측으로 이동" - -msgid "Move window to the pointer position" -msgstr "창을 포인터 위치로 이동" - -msgid "Move window to the right edge" -msgstr "창을 우측으로 이동" - -msgid "Move window to the top edge" -msgstr "창을 상단으로 이동" - -msgid "Move window to the top left corner" -msgstr "창을 좌측 상단으로 이동" - -msgid "Move window to the top right corner" -msgstr "창을 우측 상단으로 이동" - -msgid "Move window to the viewport on the bottom" -msgstr "창을 하단 작업 공간으로 이동" - -msgid "Move window to the viewport on the left" -msgstr "창을 좌측 작업 공간으로 이동" - -msgid "Move window to the viewport on the right" -msgstr "창을 우측 작업 공간으로 이동" - -msgid "Move window to the viewport on the top" -msgstr "창을 상단 작업 공간으로 이동" - -msgid "Move window to viewport 1" -msgstr "창을 작업 공간 1로 이동" - -msgid "Move window to viewport 10" -msgstr "창을 작업 공간 10으로 이동" - -msgid "Move window to viewport 11" -msgstr "창을 작업 공간 11로 이동" - -msgid "Move window to viewport 12" -msgstr "창을 작업 공간 12로 이동" - -msgid "Move window to viewport 2" -msgstr "창을 작업 공간 2로 이동" - -msgid "Move window to viewport 3" -msgstr "창을 작업 공간 3으로 이동" - -msgid "Move window to viewport 4" -msgstr "창을 작업 공간 4로 이동" - -msgid "Move window to viewport 5" -msgstr "창을 작업 공간 5로 이동" - -msgid "Move window to viewport 6" -msgstr "창을 작업 공간 6으로 이동" - -msgid "Move window to viewport 7" -msgstr "창을 작업 공간 7로 이동" - -msgid "Move window to viewport 8" -msgstr "창을 작업 공간 8로 이동" - -msgid "Move window to viewport 9" -msgstr "창을 작업 공간 9로 이동" - -msgid "" -"Number of pixels from the bottom edge where the window will come to rest" -msgstr "창이 초기화될 위치에 대한 하단으로부터의 픽셀 숫자" - -msgid "Number of pixels from the left edge where the window will come to rest" -msgstr "창이 초기화될 위치에 대한 좌측으로부터의 픽셀 숫자" - -msgid "Number of pixels from the right edge where the window will come to rest" -msgstr "창이 초기화될 위치에 대한 우측으로부터의 픽셀 숫자" - -msgid "Number of pixels from the top edge where the window will come to rest" -msgstr "창이 초기화될 위치에 대한 상단으로부터의 픽셀 숫자" - -msgid "Pad Bottom" -msgstr "하단 여백" - -msgid "Pad Left" -msgstr "좌측 여백" - -msgid "Pad Right" -msgstr "우측 여백" - -msgid "Pad Top" -msgstr "상단 여백" - -msgid "Padding" -msgstr "여백" - -msgid "Put" -msgstr "창 던지기" - -msgid "Put Bottom" -msgstr "하단으로 던지기" - -msgid "Put Bottom Left" -msgstr "좌측 하단으로 던지기" - -msgid "Put Bottom Right" -msgstr "우측 하단으로 던지기" - -msgid "Put Center" -msgstr "중앙으로 던지기" - -msgid "Put Left" -msgstr "좌측으로 던지기" - -msgid "Put On Viewport" -msgstr "작업 공간으로 던지기" - -msgid "Put On Viewport 1" -msgstr "작업 공간 1로 던지기" - -msgid "Put On Viewport 10" -msgstr "작업 공간 10으로 던지기" - -msgid "Put On Viewport 11" -msgstr "작업 공간 11로 던지기" - -msgid "Put On Viewport 12" -msgstr "작업 공간 12로 던지기" - -msgid "Put On Viewport 2" -msgstr "작업 공간 2로 던지기" - -msgid "Put On Viewport 3" -msgstr "작업 공간 3으로 던지기" - -msgid "Put On Viewport 4" -msgstr "작업 공간 4로 던지기" - -msgid "Put On Viewport 5" -msgstr "작업 공간 5로 던지기" - -msgid "Put On Viewport 6" -msgstr "작업 공간 6으로 던지기" - -msgid "Put On Viewport 7" -msgstr "작업 공간 7로 던지기" - -msgid "Put On Viewport 8" -msgstr "작업 공간 8로 던지기" - -msgid "Put On Viewport 9" -msgstr "작업 공간 9로 던지기" - -msgid "Put Pointer" -msgstr "포인터로 던지기" - -msgid "Put Right" -msgstr "우측으로 던지기" - -msgid "Put Top" -msgstr "상단으로 던지기" - -msgid "Put Top Left" -msgstr "좌측 상단으로 던지기" - -msgid "Put Top Right" -msgstr "우측 상단으로 던지기" - -msgid "Put pointer uses the center of the window" -msgstr "포인터 위치를 창 중앙으로 놓고 던지기" - -msgid "Put to adjacent viewport" -msgstr "인접 작업 공간으로 던지기" - -msgid "Put to arbitrary viewport" -msgstr "특정 작업 공간으로 던지기" - -msgid "Put window" -msgstr "창 던지기" - -msgid "Put within viewport" -msgstr "작업 공간 안에서 던지기" - -msgid "Restore Position" -msgstr "위치 복구" - -msgid "Unfocus Window" -msgstr "창에 초점을 주지 않음" - -msgid "Unfocus windows that are moved off the viewport" -msgstr "작업 공간 밖으로 던진 창에 초점을 주지 않음" - -msgid "Viewport Bottom" -msgstr "작업 공간 하단" - -msgid "Viewport Left" -msgstr "작업 공간 좌측" - -msgid "Viewport Right" -msgstr "작업 공간 우측" - -msgid "Viewport Top" -msgstr "작업 공간 상단" - -msgid "Window Center" -msgstr "창 중앙" - -msgid "Alpha Dependence Threshold" -msgstr "알파 의존 경계" - -msgid "Alpha dependence threshold." -msgstr "알파 의존 경계" - -msgid "Draw Reflection for decorations." -msgstr "창 장식에 대해 반사 효과를 적용" - -msgid "Draw Reflection for windows." -msgstr "창에 대해 반사 효과를 적용" - -msgid "Draws reflections" -msgstr "반사 효과를 적용" - -msgid "Move the reflection on window move." -msgstr "창을 이동하면 반사 효과도 이동함" - -msgid "Moving reflection" -msgstr "이동하는 반사 효과" - -msgid "Reflection Image" -msgstr "반사 이미지" - -msgid "Reflection Image file" -msgstr "반사 이미지 파일" - -msgid "Reflection Window Match" -msgstr "반사 효과를 적용할 창" - -msgid "Reflection for Decorations" -msgstr "창 장식에 대한 반사 효과" - -msgid "Reflection for Windows" -msgstr "창 반사" - -msgid "Window match" -msgstr "일치하는 창" - -msgid "Color 1 of the gradient background." -msgstr "그래디엔트 배경을 위한 첫 번째 색" - -msgid "Color 2 of the gradient background." -msgstr "그래디엔트 배경을 위한 두 번째 색" - -msgid "Color 3 of the gradient background." -msgstr "그래디엔트 배경을 위한 세 번째 색" - -msgid "Color of text on resize popup." -msgstr "크기 변경 팝업의 글자 색" - -msgid "Display info on resize similar to metacity" -msgstr "Metacity처럼 크기 변경할 때 정보를 보여줍니다." - -msgid "Fade time (in ms) for popup window" -msgstr "팝업 창의 페이드 시간 (밀리세컨드 단위)" - -msgid "Gradient Color 1" -msgstr "그래디언트 색 1" - -msgid "Gradient Color 2" -msgstr "그래디언트 색 2" - -msgid "Gradient Color 3" -msgstr "그래디언트 색 3" - -msgid "Resize Info" -msgstr "크기 변경 정보" - -msgid "" -"Show resize info for all windows as opposed to just windows with a resize " -"increment of greater than 1." -msgstr "" -"1 보다 큰 크기 변경이 이루어진 창들 뿐만 아니라, 모든 창에 대해서 크기 변경 " -"정보를 보여줌. " - -msgid "Show resize info for all windows." -msgstr "모든 창에 대해서 크기 변경 정보를 보여줌. " - -msgid "Text color." -msgstr "글자 색." - -msgid "Above ring" -msgstr "원 위에" - -msgid "Allow Mouse Selection" -msgstr "마우스 선택 가능" - -msgid "" -"Allow the selection of windows by just clicking on them while the switcher " -"is active." -msgstr "" -"전환 기능이 활성화되었을 때, 마우스 클릭만으로도 창 선택을 가능하게 함." - -msgid "" -"Amount of opacity (in percent) for windows in the ring which are not selected" -msgstr "선택되지 않은 원 안의 창들에 대한 투명도 (퍼센트 단위)" - -msgid "Background Color" -msgstr "배경 색" - -msgid "Background color for the window title" -msgstr "창 제목에 대한 배경 색" - -msgid "Below ring" -msgstr "원 아래" - -msgid "Big" -msgstr "크게" - -msgid "Bold Font" -msgstr "굵은 글씨" - -msgid "Centered on screen" -msgstr "화면 중앙" - -msgid "" -"Changes the minimum brightness factor for windows in the ring. The farer " -"away windows are, the less bright are they." -msgstr "" -"원 안의 창들에 대한 최소 밝기 인자를 변경함. 멀리 있는 창일수록 더 어둡습니" -"다." - -msgid "" -"Changes the minimum scale factor for windows in the ring. The farer away " -"windows are, the smaller are they." -msgstr "" -"원 안의 창들에 대한 최소 크기 인자를 변경함. 멀리 있는 창일수록 더 작습니다." - -msgid "Darken Background" -msgstr "배경을 어둡게" - -msgid "Darken background when showing the ring" -msgstr "원을 표시할 때 배경을 어둡게 함" - -msgid "Emblem" -msgstr "상징" - -msgid "Font color for the window title" -msgstr "창 제목의 글자 색" - -msgid "Font size for the window title" -msgstr "창 제목의 글자 크기" - -msgid "Inactive Window Opacity" -msgstr "비활성화된 창의 투명도" - -msgid "Maximum horizontal size of a thumbnail in the ring" -msgstr "원 안의 미리 보기에 대한 가로 크기 최대값" - -msgid "Maximum vertical size of a thumbnail in the ring" -msgstr "원 안의 미리 보기에 대한 세로 크기 최대값" - -msgid "Minimum Brightness Factor" -msgstr "최소 밝기 인자" - -msgid "Minimum Scale Factor" -msgstr "최소 크기 인자" - -msgid "Next Window" -msgstr "다음 창" - -msgid "Next Window (All Workspaces)" -msgstr "다음 창 (모든 작업 공간)" - -msgid "Next Window (Group)" -msgstr "다음 창 (그룹)" - -msgid "Overlay Icon" -msgstr "겹쳐지는 아이콘" - -msgid "Overlay an icon on windows in the ring" -msgstr "원 안의 창 위에 아이콘을 겹침" - -msgid "Previous Window" -msgstr "이전 창" - -msgid "Previous Window (All Workspaces)" -msgstr "이전 창 (모든 작업 공간)" - -msgid "Previous Window (Group)" -msgstr "이전 창 (그룹)" - -msgid "Ring Height" -msgstr "원 높이" - -msgid "Ring Switcher" -msgstr "원형 전환기" - -msgid "Ring Width" -msgstr "원 넓이" - -msgid "Ring Windows" -msgstr "원에 포함될 창들" - -msgid "Ring appearance" -msgstr "원 모양" - -msgid "Ring height (in percent of the screen height)" -msgstr "원 높이 (화면 높이에 대한 퍼센트 단위)" - -msgid "Ring speed" -msgstr "원 속도" - -msgid "Ring timestep" -msgstr "원 시간 간격" - -msgid "Ring width (in percent of the screen width)" -msgstr "원 넓이 (화면 넓이에 대한 퍼센트 단위)" - -msgid "Rotate Ring Clockwise on Next" -msgstr "시계 방향으로 원을 회전함" - -msgid "Rotate ring clockwise for next window instead of counterclockwise" -msgstr "시계 반대 방향이 아니라 시계 방향으로 원을 회전함" - -msgid "Selects if the window title should be displayed in bold font or not." -msgstr "창 제목을 굵은 글씨로 표시할지를 선택함" - -msgid "Selects where to place the window title." -msgstr "창 제목을 어디에 둘지 선택함" - -msgid "Show Minimized" -msgstr "최소화된 창도 보여줌" - -msgid "Show Window Title" -msgstr "창 제목을 표시" - -msgid "" -"Show switcher if not visible and select next window of the current " -"application." -msgstr "" -"전환기가 보이지 않는다면 전환기를 보여주고, 이 프로그램의 다음 창으로 전환함" - -msgid "Show switcher if not visible and select next window out of all windows." -msgstr "" -"전환기가 보이지 않는다면 전환기를 보여주고, 모든 창들 중에서 다음 창으로 전환" -"함" - -msgid "Show switcher if not visible and select next window." -msgstr "전환기가 보이지 않는다면 전환기를 보여주고, 다음 창으로 전환함" - -msgid "" -"Show switcher if not visible and select previous window of the current " -"application." -msgstr "" -"전환기가 보이지 않는다면 전환기를 보여주고, 이 프로그램의 이전 창으로 전환함" - -msgid "" -"Show switcher if not visible and select previous window out of all windows." -msgstr "" -"전환기가 보이지 않는다면 전환기를 보여주고, 모든 창들 중에서 이전 창으로 전환" -"함" - -msgid "Show switcher if not visible and select previous window." -msgstr "전환기가 보이지 않는다면 전환기를 보여주고, 이전 창으로 전환함" - -msgid "Show window title of currently selected window." -msgstr "현재 선택되어진 창의 창 제목을 표시함" - -msgid "Show windows that are minimized, shaded or in show desktop mode." -msgstr "최소화되거나 말아올려지거나 바탕 화면 보기 모드에 있는 창들을 보여줌" - -msgid "Text Placement" -msgstr "글자 배치" - -msgid "Thumbnail Height" -msgstr "미리 보기 높이" - -msgid "Thumbnail Width" -msgstr "미리 보기 넓이" - -msgid "Window title display" -msgstr "창 제목 표시" - -msgid "Windows that should be shown in ring" -msgstr "원 안에 포함될 창들" - -msgid "All windows" -msgstr "모든 창" - -msgid "Background color of the window title" -msgstr "창 제목의 배경 색" - -msgid "Close Windows In Scale" -msgstr "스케일 상태에서 창을 닫음" - -msgid "Close windows while in scale mode" -msgstr "스케일 상태에서 창을 닫음" - -msgid "Color used for highlighting the hovered window" -msgstr "선택할려는 창을 강조하기 위해 사용할 색" - -msgid "Draw Window Highlight" -msgstr "창을 강조함" - -msgid "Font color of the window title" -msgstr "창 제목에 대한 글자 색" - -msgid "Font size for window title display" -msgstr "창 제목 표시를 위한 글자 색" - -msgid "Highlight Color" -msgstr "강조 색" - -#, fuzzy -msgid "Highlighted window only" -msgstr "마우스 포인터 아래에 있는 창만" - -msgid "Highlights the hovered window with the given color" -msgstr "선택할려는 창을 주어진 색으로 강조함" - -msgid "No display" -msgstr "표시 안 함" - -msgid "Normal" -msgstr "보통" - -msgid "Organic - EXPERIMENTAL" -msgstr "유기적으로 - 불안정함" - -msgid "Scale Addons" -msgstr "스케일 부가 기능" - -msgid "Selects the mode to layout the windows in scale mode" -msgstr "스케일 상태에서 창을 배치하는 방식" - -msgid "Size of the border around the window title" -msgstr "창 제목 주위의 가장자리 크기" - -msgid "Some useful additions to the scale plugin" -msgstr "스케일 플러그인에 대한 유용한 부가 기능들" - -msgid "Title Border Size" -msgstr "제목 가장자리 크기" - -msgid "Use bold font for window title display" -msgstr "창 제목 표시를 위해 굵은 글씨를 사용함" - -msgid "Window Highlight" -msgstr "창 강조" - -msgid "Window Layout Mode" -msgstr "창 배치 방식" - -msgid "Window Title" -msgstr "창 제목" - -msgid "Window Title Display" -msgstr "창 제목 표시" - -msgid "Window title display in scale mode" -msgstr "스케일 상태에서 창 제목을 보여줌" - -msgid "Zoom Windows In Scale" -msgstr "스케일 상태에서 창을 확대함" - -msgid "Zoom windows while in scale mode" -msgstr "스케일 상태에서 창을 확대함" - -msgid "Filter Case Insensitive" -msgstr "대/소문자 구별없이 필터링함" - -msgid "Filter Type Timeout" -msgstr "필터링 텍스트 입력 시간 제한" - -msgid "Scale Window Title Filter" -msgstr "스케일 창 제목 필터" - -msgid "Show Filter Text" -msgstr "필터링 텍스트 표시" - -msgid "Show filter text." -msgstr "필터링 텍스트를 표시함." - -msgid "Time (in ms) after which the filter typing is automatically ended" -msgstr "필터링 텍스트 입력이 자동적으로 끝나는 시간 (밀리세컨드 단위)" - -msgid "Use case insensitive string matching when filtering." -msgstr "대/소문자 구별 없이 필터링함." - -msgid "Window title filter facility for the scale plugin" -msgstr "스케일 플러그인을 위한 창 제목 필터링 기능" - -msgid "" -"Embeds a Guile scheme interpreter and provides bindings for meaningful " -"Compiz integration." -msgstr "Guile 설계 해석기를 내장하고 컴피즈에 통합합니다." - -msgid "Scheme Interpreter" -msgstr "설계 해석기" - -msgid "Toggle Prompt Visible" -msgstr "프롬프트 표시" - -msgid "Toggle prompt visible." -msgstr "프롬프트 표시" - -msgid "Directory" -msgstr "디렉토리" - -msgid "Initiate screencasting" -msgstr "스크린 캐스트 시작" - -msgid "Put screenshot images in this directory" -msgstr "스크린샷 이미지를 저장할 디렉토리" - -msgid "ScreenCast plugin" -msgstr "스크린 캐스트 플러그인" - -msgid "ScreenCasting" -msgstr "스크린 캐스트" - -msgid "" -"Also try to save and restore legacy apps that don't support the X session " -"management protocol. This setting only should be used in KDE, as only KDE's " -"session manager also saves those applications." -msgstr "" - -msgid "Save Legacy Apps" -msgstr "" - -msgid "Session Management" -msgstr "" - -msgid "Talk to session manager and save/load window state" -msgstr "" - -msgid "Animation duration" -msgstr "애니메이션 지속 시간" - -msgid "Duration of the animation in milliseconds." -msgstr "애니메이션 지속 시간 (밀리세컨드 단위)" - -msgid "Increase the scale factor making the window bigger." -msgstr "창이 커지도록 크기 인수를 증가시킴" - -msgid "Make the window bigger" -msgstr "창을 확대함" - -msgid "Make the window smaller" -msgstr "창을 축소함" - -msgid "Reduces the scale factor making the window smaller." -msgstr "창이 작아지도록 크기 인수를 감소시킴" - -#, fuzzy -msgid "Reset the window to original size" -msgstr "창을 크기 조절 할 수 없게 함" - -msgid "Resets the currently focused window to original size" -msgstr "" - -msgid "Scale a window down to a portion of it's size." -msgstr "창의 크기를 기준으로 창을 축소합니다." - -msgid "" -"Scale a window down to a ration of the screen size. Respectively half, a " -"third or a sixth of the screen." -msgstr "" -"화면 크기를 기준으로 창을 축소합니다. 예를 들어, 화면 크기의 절반이나 1/3, " -"1/6로 축소합니다." - -msgid "Scale interval" -msgstr "크기 간격" - -msgid "Shelf" -msgstr "Shelf" - -msgid "" -"The number to divide the scale factor by or multiply it with when " -"(respectively) increasing and decreasing the scale level manually. Higher " -"number means finer changes." -msgstr "" -"크기 인수를 증가하거나 감소하여 크기 레벨을 수동적으로 조절함. 숫자가 클수록 " -"쾌적하게 변함" - -msgid "Trigger scale down" -msgstr "축소 시작" - -msgid "Trigger scale down to screen" -msgstr "화면을 기준으로 축소 시작" - -#, fuzzy -msgid "" -"Visually scales a window down to allow easy monitoring without true/" -"traditional resizing." -msgstr "창의 크기를 조절 없이, 창을 축소함." - -msgid "Background intensity" -msgstr "배경 강도" - -msgid "Background intensity." -msgstr "배경 강도." - -msgid "Below" -msgstr "아래" - -msgid "Click duration" -msgstr "클릭 시간" - -msgid "Cover" -msgstr "커버" - -msgid "Cover movement offset." -msgstr "커버 동작 오프셋." - -msgid "Cover offset" -msgstr "커버 오프셋" - -msgid "Disabled" -msgstr "해제됨" - -msgid "Fade in/out speed" -msgstr "페이드 인/아웃 속도" - -msgid "Fade speed" -msgstr "페이드 속도" - -msgid "Flip" -msgstr "넘기기" - -msgid "Flip angle" -msgstr "넘기기 각도" - -msgid "Generate mipmaps" -msgstr "Mipmap 생성" - -msgid "Hide all non Desktop windows during switching" -msgstr "전환할 때 데스크탑 창이 아닌 모든 창을 숨김" - -msgid "Hide non Desktop windows" -msgstr "데스크탑 창이 아닌 창을 숨김" - -msgid "Initiate (All Workspaces)" -msgstr "시작 (모든 작업 공간)" - -msgid "Initiate switcher (All Workspaces)." -msgstr "시작 (모든 작업 공간)." - -msgid "Initiate switcher." -msgstr "전환 시작." - -msgid "Max window size" -msgstr "최대 창 크기" - -msgid "Maximum click duration in miliseconds." -msgstr "최대 클릭 시간 (밀리세컨드 단위)." - -msgid "Maximum window size (in percent of the screen width)" -msgstr "최대 창 크기 (화면 넓이에 대한 퍼센트 단위)" - -msgid "Mouse movement speed" -msgstr "마우스 이동 속도" - -msgid "Mouse speed" -msgstr "마우스 속도" - -msgid "On activated output" -msgstr "활성화된 출력" - -msgid "One big switcher" -msgstr "하나의 커다란 전환기" - -msgid "Overlay an icon on windows in the shift switcher" -msgstr "이동 전환기를 사용할 때 창 위에 아이콘을 겹침" - -msgid "Rotation angle of the flip animation" -msgstr "넘기기 애니메이션에서의 회전 각도" - -msgid "" -"Selects how the switcher is displayed if multiple output devices are used." -msgstr "다중 출력 장치를 사용할 때 전환기를 표시하는 방법을 선택함." - -msgid "Shift Switcher" -msgstr "이동 전환기" - -msgid "Shift Switcher Plugin" -msgstr "이동 전환기 플러그인" - -msgid "Shift Windows" -msgstr "이동 전환기를 적용할 창들" - -msgid "Shift animation speed" -msgstr "이동 애니메이션 속도" - -msgid "Shift speed" -msgstr "이동 속도" - -msgid "Shift timestep" -msgstr "이도 시간 간격" - -msgid "Switcher mode" -msgstr "전환 방식" - -msgid "Switcher mode." -msgstr "전환 방식." - -msgid "Terminate" -msgstr "종료" - -msgid "Terminate switcher." -msgstr "전환기 종료." - -msgid "Windows that should be shown in the shift switcher" -msgstr "이동 전환기를 적용할 창들" - -msgid "Access your desktop easily" -msgstr "바탕 화면으로 쉽게 접근함" - -msgid "Direction of window movement" -msgstr "창 이동 방향" - -msgid "Left/Right" -msgstr "왼쪽/오른쪽" - -msgid "Movement Direction" -msgstr "이동 방향" - -msgid "Show desktop" -msgstr "바탕 화면 보기" - -msgid "To Corners" -msgstr "가장자리로" - -msgid "Up/Down" -msgstr "위/아래" - -msgid "Window Opacity" -msgstr "창 투명도" - -msgid "Window Part Size" -msgstr "창 부분 크기" - -msgid "Window movement speed" -msgstr "창 이동 속도" - -msgid "Window movement timestep" -msgstr "창 이동 시간 간격" - -msgid "Window opacity when showdesktop'd" -msgstr "바탕 화면 보기를 할 때의 창 투명도" - -msgid "Window part size when showdesktop'd" -msgstr "바탕 화면 보기를 할 때의 창 부분 크기" - -msgid "" -"Window types that should be moved out of sight when entering showdesktop mode" -msgstr "바탕화면 보기 상태에서 시야에서 사라질 창의 종류" - -msgid "Additive blending" -msgstr "" - -#, fuzzy -msgid "Additive blending of particles" -msgstr "불꽃의 수" - -#, fuzzy -msgid "Darken backgound" -msgstr "배경을 어둡게" - -#, fuzzy -msgid "Darken background under particles" -msgstr "배경을 어둡게" - -msgid "Emiters" -msgstr "" - -#, fuzzy -msgid "Have random colors for the particles" -msgstr "불 태우기 효과에서 불꽃 색을 무작위로 하기(신비한 불꽃 효과)." - -#, fuzzy -msgid "Increases the visibility of the mouse pointer" -msgstr "마우스 포인터의 크기를 변경함" - -#, fuzzy -msgid "Number Of Particles" -msgstr "불꽃의 수" - -#, fuzzy -msgid "Number of particle emiters." -msgstr "불꽃의 수" - -#, fuzzy -msgid "Number of particles." -msgstr "불꽃의 수" - -#, fuzzy -msgid "Particle Color" -msgstr "불꽃의 색" - -#, fuzzy -msgid "Particle Life" -msgstr "불꽃의 수명" - -#, fuzzy -msgid "Particle Options" -msgstr "기타 옵션" - -#, fuzzy -msgid "Particle Size" -msgstr "불꽃의 크기" - -#, fuzzy -msgid "Particle Slowdown" -msgstr "불꽃의 감속" - -#, fuzzy -msgid "Particle color." -msgstr "불꽃의 색." - -#, fuzzy -msgid "Particle life." -msgstr "불꽃의 수명." - -#, fuzzy -msgid "Particle size." -msgstr "불꽃의 크기." - -#, fuzzy -msgid "Particle slowdown." -msgstr "불꽃의 감속." - -#, fuzzy -msgid "Randomly Colored Particles" -msgstr "불꽃 색을 무작위로" - -#, fuzzy -msgid "Ring radius" -msgstr "가장자리 반경" - -#, fuzzy -msgid "Rotation speed" -msgstr "애니메이션 속도" - -#, fuzzy -msgid "Rotation speed." -msgstr "애니메이션 속도" - -#, fuzzy -msgid "Show mouse" -msgstr "마우스 동기화" - -#, fuzzy -msgid "Toggle the mouse pointer trail." -msgstr "마우스 포인터의 크기를 변경함" - -msgid "Alt" -msgstr "Alt" - -msgid "Avoid Snap Modifier" -msgstr "달라붙기를 피하기 위해 사용할 키" - -msgid "Choose 'Resistance', 'Attraction' or 'Full Mode'." -msgstr "'저항'이나 '끌어당김', '전체 모드' 중에서 선택함" - -msgid "Control" -msgstr "제어" - -msgid "Edge Attraction Distance" -msgstr "가장자리 끌어당기기 거리" - -msgid "Edge Resistance Distance" -msgstr "가장자리 저항 거리" - -msgid "Edge attraction" -msgstr "가장자리 끌어당김" - -msgid "Edge resistance" -msgstr "가장자리 저항" - -msgid "Edges" -msgstr "가장자리" - -msgid "Enables windows edges resistance" -msgstr "창 가장자리 저항을 활성화함" - -msgid "Meta" -msgstr "Meta" - -msgid "Screen edges" -msgstr "화면 가장자리" - -msgid "Shift" -msgstr "Shift" - -msgid "Snap Type" -msgstr "달라붙기 종류" - -msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." -msgstr "'화면 가장자리'나 '창 가장자리', '둘 다'에 달라붙음" - -msgid "Snapping Windows" -msgstr "창 달라붙기" - -msgid "The distance until edge attraction takes place." -msgstr "가장자리 끌어당기기가 시작되는 거리" - -msgid "The distance until edge resistance takes place." -msgstr "가장자리 저항이 시작되는 거리" - -msgid "Use this bindings to avoid snapping." -msgstr "달라붙기를 피하기 위해 사용할 키." - -msgid "Window edges" -msgstr "창 가장자리" - -msgid "Bottom to Top" -msgstr "아래에서 위로" - -msgid "" -"Delay (in ms) between screen updates. Decreasing this value may make snow " -"fall more smoothly, but will also increase CPU usage." -msgstr "" -"화면 갱신 지연시간(0.1초). 이 값을 감소 시키면 눈이 좀 더 부드럽게 내리지만," -"CPU의 사용량이 증가합니다." - -msgid "Enable Blending" -msgstr "블렌딩 활성화" - -msgid "Enable Textures" -msgstr "텍스쳐 활성화" - -msgid "Enables alpha blending of snowflakes." -msgstr "눈송이에 대한 알파 블렌딩 활성화." - -#, fuzzy -msgid "Enables textured snowflakes. If not selected, color gradients are used." -msgstr "눈송이 텍스쳐를 사용함. 선택하지 않으면, 색 그래디언트가 사용됨." - -msgid "Flakes rotate if checked." -msgstr "눈송이를 회전함." - -msgid "How deep into the screen snowflakes can be drawn before being removed" -msgstr "눈송이가 사라지기 전 눈송이들이 쌓이는 깊이" - -msgid "" -"How far outside the screen resolution snow flakes can be before being " -"removed. Needed because of FOV." -msgstr "" -"눈송이가 없어지기 전에 화면 해상도 밖으로 나갈 수 있는 최대 거리. FOV 때문에 " -"필요함." - -msgid "Key Bindings" -msgstr "단축키" - -msgid "Left to Right" -msgstr "왼쪽에서 오른쪽으로" - -msgid "Number Of Snowflakes" -msgstr "눈송이의 수" - -msgid "Number of snowflakes" -msgstr "눈송이의 수" - -msgid "Right to Left" -msgstr "오른쪽에서 왼쪽으로" - -msgid "Rotate Flakes" -msgstr "눈송이를 회전" - -msgid "Screen Boxing" -msgstr "화면 테두리" - -msgid "Screen Depth" -msgstr "화면 깊이" - -msgid "Select snow flake movement direction" -msgstr "눈송이의 이동 방향 선택" - -msgid "Settings" -msgstr "설정" - -msgid "Size Of Snowflakes" -msgstr "눈송이의 크기" - -msgid "Size of snowflakes" -msgstr "눈송이의 크기" - -msgid "Snow" -msgstr "눈" - -msgid "Snow Direction" -msgstr "눈이 내리는 방향" - -msgid "Snow Over Windows" -msgstr "창 위로 눈이 내림" - -msgid "Snow Speed" -msgstr "눈 내리는 속도" - -msgid "Snow Textures" -msgstr "눈송이 텍스쳐" - -msgid "Snow Toggle" -msgstr "눈 플러그인 사용" - -msgid "Snow for Compiz" -msgstr "컴피즈를 위한 눈" - -msgid "Snow is drawn above windows" -msgstr "창 위로 눈이 보임" - -msgid "Snow textures" -msgstr "눈송이 텍스쳐" - -msgid "Snow toggle key" -msgstr "눈 플러그인 사용 키" - -msgid "Speed of falling snow" -msgstr "눈이 내리는 속도" - -msgid "Textures" -msgstr "텍스쳐" - -msgid "Top to Bottom" -msgstr "위에서 아래로" - -msgid "Update Delay" -msgstr "업데이트 지연시간" - -msgid "A simple splash plugin" -msgstr "간단한 스플래시 플러그인" - -msgid "Background File" -msgstr "배경 파일" - -msgid "Background brightness." -msgstr "배경 밝기." - -msgid "Background image File." -msgstr "배경 이미지 파일." - -msgid "Background saturation." -msgstr "배경 채도." - -msgid "Display In/Out Time." -msgstr "표시 인/아웃 시간." - -msgid "Display Time" -msgstr "표시 시간" - -msgid "Images" -msgstr "이미지" - -msgid "Initiate Splash" -msgstr "스플래시 시작" - -msgid "Logo File" -msgstr "로고 파일" - -msgid "Logo image File." -msgstr "로고 이미지 파일." - -msgid "Show on first start" -msgstr "처음 시작할 때 보여줌" - -msgid "Show splash on first start." -msgstr "처음 시작할 때 스플래시 보여줌." - -msgid "Splash" -msgstr "스플래시" - -msgid "Start Splash." -msgstr "스플래시 시작." - -msgid "Render text to texture" -msgstr "글자를 텍스쳐로 렌더링함" - -msgid "Text" -msgstr "글자" - -msgid "Enable Titles" -msgstr "제목 활성화" - -msgid "Fade In/Out Duration" -msgstr "페이드 인/아웃 지속 시간" - -msgid "Fade In/Out Duration in seconds." -msgstr "페이드 인/아웃 지속 시간 (초 단위)." - -msgid "Generate Mipmaps" -msgstr "Mipmap 생성" - -msgid "Generate mipmaps when possible for higher quality scaling." -msgstr "고품질 스케일링을 위한 Mipmap을 생성함." - -msgid "Paint Thumbnails Always on Top." -msgstr "미리 보기를 항상 맨 위에 표시함." - -msgid "Paint Window Like Background" -msgstr "창을 배경처럼 표시" - -msgid "Paint Window Like Background instead of Glow." -msgstr "발광 효과를 사용하지 않고, 창을 배경처럼 표시함." - -msgid "Set it if the Taskbar shows only Windows of Current Viewport." -msgstr "창 목록이 현재 작업 공간의 창만을 보여줄 때 선택함." - -msgid "Should be the window title Bold." -msgstr "창 제목을 굵은 글씨로 표시함." - -msgid "Show Delay" -msgstr "표시 지연 시간" - -msgid "Show Window Title in Thumbnail." -msgstr "미리 보기에서 창 제목을 표시함." - -msgid "Size of Thumbnail Border." -msgstr "미리 보기 가장자리 크기." - -msgid "Taskbar" -msgstr "창 목록" - -msgid "Taskbar Shows Only Windows of Current Viewport" -msgstr "창 목록에 현재 작업 공간의 창만 표시됨" - -msgid "Thumbnail Background and Border Glow Color." -msgstr "미리 보기의 배경과 가장자리 발광 색." - -msgid "Thumbnail Border Glow Color" -msgstr "미리 보기 가장자리 발광 색" - -msgid "Thumbnail Border Size" -msgstr "미리 보기 가장자리 크기" - -msgid "Thumbnail Window Size" -msgstr "미리 보기 창 크기" - -msgid "Thumbnail window size." -msgstr "미리 보기 창 크기." - -msgid "Thumbnails Always on Top" -msgstr "미리 보기를 항상 맨 위에" - -msgid "Time (in ms) before Thumbnail is shown." -msgstr "미리 보기가 표시되기 전까지의 시간 (밀리세컨드 단위)" - -msgid "Window Previews" -msgstr "창 미리 보기" - -msgid "Window thumbnails at the taskbar" -msgstr "창 목록에서 창 미리 보기" - -msgid "Window title" -msgstr "창 제목" - -msgid "Window title Font Color." -msgstr "창 제목 글자 색." - -msgid "Window title Font Size." -msgstr "창 제목 글자 크기." - -msgid "Animation Duration" -msgstr "애니메이션 지속 시간" - -msgid "Cascade" -msgstr "계단식 배열" - -msgid "Cascade Delta" -msgstr "창 간격" - -msgid "Cascade Windows" -msgstr "계단식 창 배열" - -msgid "Choose the tiling type you want when using toggle." -msgstr "토글 상태일때 정렬될 형태를 선택하세요." - -msgid "Distance between windows when using cascade" -msgstr "계단식 창 배열에서의 창 사이의 거리" - -msgid "Drop From Top" -msgstr "위에서 떨어짐" - -msgid "Duration (in ms) of the tiling animation" -msgstr "정렬 애니메이션의 지속 시간(0.1초)" - -msgid "Excluded Windows" -msgstr "제외된 창" - -msgid "Filled Outline" -msgstr "채워진 외곽선" - -msgid "Join Windows (EXPERIMENTAL)" -msgstr "창 결합 (EXPERIMENTAL)" - -msgid "Left Occupancy" -msgstr "남은 공간" - -msgid "" -"Move and resize all visible windows both vertically and horizontally, so " -"that the occupy whole screen and are in a grid." -msgstr "" -"전체 화면을 채우고 창들을 일정하게 정렬 시키기 위해 모든 활성화된 창들을가로 " -"세로로 움직이고 크기를 줄입니다." - -msgid "" -"Move and resize all visible windows so that they have full height, same " -"width and occupy whole screen." -msgstr "" -"모든 활성화된 창들이 최대 높이에, 동일한 너비를 가지며 전체 화면을 채우도록움" -"직이고 크기를 줄입니다." - -msgid "" -"Move and resize all visible windows so that they have full width, same " -"height and occupy whole screen." -msgstr "" -"모든 활성화된 창들이 최대 너비에, 동일한 높이를 가지며 전체화면을 채우도록움" -"직이고 크기를 줄입니다." - -msgid "" -"Move and resize all visible windows with the delta value set for cascading." -msgstr "" -"계단식 정렬을 위해 델타 값으로 모든 활성화된 창들을 움직이고 크기를 줄입니다." - -msgid "" -"Occupancy percentage for window placed left. This number is percentage of " -"screen width, which the active window will have it as width when tiled. " -"Applies to Left tiling type." -msgstr "" -"창들이 놓여지는 공간의 점유율. 이 숫자는 활성화된 창들이 정렬되었을때 높이로" -"서 가지게 되는화면 높이의 퍼센트 입니다.남은 타일 형태를 적용합니다." - -msgid "Restore Windows" -msgstr "창을 복원" - -msgid "Restore windows to their original position they had before tiling." -msgstr "타일 기능을 사용하기 전으로 되돌리기" - -msgid "Selects the animation used while tiling" -msgstr "타일 동작에 대한 애니메이션 선택" - -msgid "Slide" -msgstr "슬라이드" - -msgid "Tile" -msgstr "타일" - -msgid "Tile Horizontally" -msgstr "수평 타일" - -msgid "Tile Vertically" -msgstr "수직 타일" - -msgid "Tile Windows" -msgstr "윈도우 타일" - -msgid "Tile Windows Horizontally" -msgstr "창 수평 타일" - -msgid "Tile Windows Vertically" -msgstr "창 수직 타일" - -msgid "Tile windows" -msgstr "윈도우 타일" - -msgid "Tiling Animation Type" -msgstr "타일 애니메이션 종류" - -msgid "Tiling Method For Toggle" -msgstr "활성화 되었을때 정렬하는 방식" - -msgid "Toggle Tiling" -msgstr "타일 기능 사용" - -msgid "Toggle between tile and restore" -msgstr "타일 기능을 사용함" - -msgid "" -"Tries to join the windows together when horizontal, vertical or left tiling " -"is enabled so that when you resize a window surrounding windows resize " -"accordingly. This may cause problems if you dont leave them enough space." -msgstr "" -"창 크기를 조절할때 주변의 창들이 함께 크기 조절 되도록 창들을 수평, 수직, 왼" -"쪽 타일 기능을 활성화합니다. 충분한 공간을 남겨두지 않으면 문제를 일으킬 수 " -"있습니다." - -msgid "Windows which should be excluded from tiling" -msgstr "타일 기능이 적용되지 않는 창" - -msgid "" -"Adjust the opacity, saturation and brightness of windows based on when they " -"last had focus." -msgstr "" -"마지막으로 초점을 받은 시간에 따라 창의 투명도, 채도, 밝기를 조절합니다." - -msgid "Brightness Level of Focused Windows" -msgstr "선택된 창의 밝기" - -msgid "Brightness Level of Unfocused Windows" -msgstr "선택되지 않은 창의 밝기" - -msgid "" -"Brightness of the currently focused window. Windows will get brightness " -"levels between the focused and minimum." -msgstr "" -"현재 창의 밝기. 모든 창은 최소 밝기 값과 현재 창의 밝기 값 사이의 밝기 값을 " -"갖게 됩니다." - -msgid "" -"Brightness of the least focused window. Windows will get brightness levels " -"between the focused and minimum." -msgstr "" -"가장 오랫동안 초점을 받지 않은 창의 밝기. 모든 창은 최소 밝기 값과 현재 창의 " -"밝기 값 사이의 밝기 값을 갖게 됩니다." - -msgid "Number of Windows to Track" -msgstr "초점 추적을 사용할 창의 숫자" - -msgid "" -"Number of windows Trailfocus will keep track of. Windows that had focus this " -"amount of windows ago or more will be considered completly unfocused." -msgstr "" -"초첨 추적을 사용할 창의 숫자. 이 숫자를 넘어간 창은 전혀 초점을 받지 않은 것" -"으로 간주됩니다." - -msgid "Opacity Level of Focused Windows" -msgstr "선택된 창의 투명도" - -msgid "Opacity Level of Unfocused Windows" -msgstr "선택되지 않은 창의 투명도" - -msgid "" -"Opacity of the currently focused window. Windows will get opacity levels " -"between the focused and minimum." -msgstr "" -"현재 창의 투명도. 모든 창은 최소 투명도 값과 현재 창의 투명도 값 사이의 투명" -"도 값을 갖게 됩니다." - -msgid "" -"Opacity of the least focused window. Windows will get opacity levels between " -"the focused and minimum." -msgstr "" -"가장 오랫동안 초점을 받지 않은 창의 투명도. 모든 창은 최소 투명도 값과 현재 " -"창의 투명도 값 사이의 투명도 값을 갖게 됩니다." - -msgid "Saturation Level of Focused Windows" -msgstr "선택된 창의 채도" - -msgid "Saturation Level of Unfocused Windows" -msgstr "선택되지 않은 창의 채도" - -msgid "" -"Saturation of the currently focused window. Windows will get saturation " -"levels between the focused and minimum." -msgstr "" -"현재 창의 채도. 모든 창은 최소 채도 값과 현채 창의 채도 값 사이의 채도 값을 " -"갖게 됩니다." - -msgid "" -"Saturation of the least focused window. Windows will get saturation levels " -"between the focused and minimum." -msgstr "" -"가장 오랫동안 초점을 받지 않은 창의 채도. 모든 창은 최소 채도 값과 현채 창의 " -"채도 값 사이의 채도 값을 갖게 됩니다." - -msgid "" -"This defines when Trailfocus will start fading windows. This lets you set up " -"trailfocus to treat the N first Windows as fully focused." -msgstr "" -"이것은 언제 초점 추적이 페이드를 시작할지 결정합니다. 이것으로 초점 추적이 N" -"개의 첫번째 창을 완전하게 초점을 받는 것으로 할 수 있게 설정할 수 있습니다." - -msgid "Trailfocus" -msgstr "초점 추적" - -msgid "Window to Start Fading" -msgstr "페이드를 시작할 창" - -msgid "Window types that should be handled by Trailfocus" -msgstr "초점 추적을 사용할 창 종류" - -msgid "Action name for initiate" -msgstr "시작을 위한 동작 이름" - -msgid "Action name for initiate/terminate" -msgstr "시작과 종료를 위한 동작 이름" - -msgid "Begin Viewport Switch" -msgstr "작업 공간 전환 시작" - -msgid "Begin entering viewport number" -msgstr "작업 공간 번호 입력 시작" - -msgid "Desktop-based Viewport Switching" -msgstr "데스크탑에 기반한 작업 공간 전환" - -msgid "Go to specific viewport" -msgstr "특정 작업 공간으로 전환" - -msgid "Initiate plugin action" -msgstr "플러그인 동작 시작" - -msgid "Initiate viewport changes through several events" -msgstr "몇 가지의 이벤트를 통하여 작업 공간 전환을 시작함" - -msgid "Initiate/Terminate the selected plugin action" -msgstr "선택된 플러그인 동작을 시작/종료" - -msgid "Move Down" -msgstr "아래로 이동" - -msgid "Move Left" -msgstr "왼쪽으로 이동" - -msgid "Move Next" -msgstr "다음으로 이동" - -msgid "Move Prev" -msgstr "이전으로 이동" - -msgid "Move Right" -msgstr "오른쪽으로 이동" - -msgid "Move Up" -msgstr "위로 이동" - -msgid "Move down" -msgstr "아래도 이동" - -msgid "Move to the left" -msgstr "왼쪽으로 이동" - -msgid "Move to the next viewport" -msgstr "다음 작업 공간으로 이동" - -msgid "Move to the previous viewport" -msgstr "이전 작업 공간으로 이동" - -msgid "Move to the right" -msgstr "오른쪽으로 이동" - -msgid "Move up" -msgstr "위로 이동" - -msgid "Number-Based Viewport Switching" -msgstr "번호에 기반한 작업 공간 전환" - -msgid "Plugin for initiate action" -msgstr "시작 동작을 위한 플러그인" - -msgid "Plugin for initiate/action action" -msgstr "시작 동작을 위한 플러그인" - -msgid "Switch to Viewport 1" -msgstr "1번 작업 공간으로 전환" - -msgid "Switch to Viewport 10" -msgstr "10번 작업 공간으로 전환" - -msgid "Switch to Viewport 11" -msgstr "11번 작업 공간으로 전환" - -msgid "Switch to Viewport 12" -msgstr "12번 작업 공간으로 전환" - -msgid "Switch to Viewport 2" -msgstr "2번 작업 공간으로 전환" - -msgid "Switch to Viewport 3" -msgstr "3번 작업 공간으로 전환" - -msgid "Switch to Viewport 4" -msgstr "4번 작업 공간으로 전환" - -msgid "Switch to Viewport 5" -msgstr "5번 작업 공간으로 전환" - -msgid "Switch to Viewport 6" -msgstr "6번 작업 공간으로 전환" - -msgid "Switch to Viewport 7" -msgstr "7번 작업 공간으로 전환" - -msgid "Switch to Viewport 8" -msgstr "8번 작업 공간으로 전환" - -msgid "Switch to Viewport 9" -msgstr "9번 작업 공간으로 전환" - -msgid "Switch to viewport 1" -msgstr "1번 작업 공간으로 전환" - -msgid "Switch to viewport 10" -msgstr "10번 작업 공간으로 전환" - -msgid "Switch to viewport 11" -msgstr "11번 작업 공간으로 전환" - -msgid "Switch to viewport 12" -msgstr "12번 작업 공간으로 전환" - -msgid "Switch to viewport 2" -msgstr "2번 작업 공간으로 전환" - -msgid "Switch to viewport 3" -msgstr "3번 작업 공간으로 전환" - -msgid "Switch to viewport 4" -msgstr "4번 작업 공간으로 전환" - -msgid "Switch to viewport 5" -msgstr "5번 작업 공간으로 전환" - -msgid "Switch to viewport 6" -msgstr "6번 작업 공간으로 전환" - -msgid "Switch to viewport 7" -msgstr "7번 작업 공간으로 전환" - -msgid "Switch to viewport 8" -msgstr "8번 작업 공간으로 전환" - -msgid "Switch to viewport 9" -msgstr "9번 작업 공간으로 전환" - -msgid "Viewport Switcher" -msgstr "작업 공간 전환기" - -msgid "Allow Wrap-Around" -msgstr "두르기 허용" - -msgid "Allow wrap-around when moving the wall up/down/left/right" -msgstr "벽을 위/아래/왼쪽/오른쪽으로 이동할때 둘러 가는 것을 허용합니다." - -msgid "Arrow Colors" -msgstr "화살표 색" - -msgid "Background Gradient" -msgstr "배경 그레디언트" - -msgid "Base Color" -msgstr "기본 색" - -msgid "Desktop Wall" -msgstr "데스크탑 벽" - -msgid "Desktop Wall Plugin" -msgstr "데스크탑 벽 플러그인" - -msgid "Duration (in s) for wall sliding viewport switching animation" -msgstr "벽 슬라이딩 작업 공간 전환 애니메이션 지속 시간 (초 단위)" - -msgid "" -"Duration (in s) the switch target preview should remain visible after " -"switching ends." -msgstr "전환이 끝날 때, 전환 대상 미리 보기가 지속되는 시간 (초 단위)" - -msgid "Edge Flip DnD" -msgstr "드래그 앤 드랍으로 가장자리 넘기기" - -msgid "Edge Flip Move" -msgstr "창 이동으로 가장자리 넘기기" - -msgid "Edge Flip Pointer" -msgstr "포인터 이동으로 가장자리 넘기기" - -msgid "Edge Flipping" -msgstr "가장자리 넘기기" - -msgid "Edge Radius" -msgstr "가장자리 반경" - -msgid "Edge flipping" -msgstr "가장자리 넘기기" - -msgid "First color for the background gradient of the switcher window." -msgstr "전환기 창의 첫 번째 배경 그레디언트 색." - -msgid "First color for the thumb gradient of the switcher window." -msgstr "전환기 창의 첫 번째 미리 보기 그레디언트 색." - -msgid "First color for the thumb highlight gradient of the switcher window." -msgstr "전환기 창의 첫 번째 미리 보기 강조 그레디언트 색." - -msgid "First color of the arrow of the switcher window." -msgstr "전환기 창의 첫 번째 화살표 색." - -msgid "Flip Down" -msgstr "아래쪽으로 넘기기" - -msgid "Flip Left" -msgstr "왼쪽으로 넘기기" - -msgid "Flip Right" -msgstr "오른쪽으로 넘기기" - -msgid "Flip Up" -msgstr "위쪽으로 넘기기" - -msgid "Flip down" -msgstr "아래쪽으로 넘기기" - -msgid "Flip left" -msgstr "왼쪽으로 넘기기" - -msgid "Flip right" -msgstr "오른쪽으로 넘기기" - -msgid "Flip up" -msgstr "위쪽으로 넘기기" - -msgid "Flip viewport when dragging an object to a screen edge" -msgstr "화면 가장자리에서 객체를 드래그할 때 작업 공간을 넘기기" - -msgid "Flip viewport when moving a window to a screen edge" -msgstr "화면 가장자리에서 창을 이동할 때 작업 공간을 넘기기" - -msgid "Flip viewport when moving the pointer to a screen edge" -msgstr "화면 가장자리에서 포인터를 이동할 때 작업 공간을 넘기기" - -msgid "Highlight Gradient" -msgstr "강조 그레디언트" - -msgid "How should a multimonitor configuration be handled" -msgstr "멀티 모니터 설정 처리 방법" - -msgid "Move Down With Window" -msgstr "창과 함께 아래로 이동" - -msgid "Move Left With Window" -msgstr "창과 함께 왼쪽으로 이동" - -msgid "Move Right With Window" -msgstr "창과 함께 오른쪽으로 이동" - -msgid "Move Up With Window" -msgstr "창과 함께 위로 이동" - -msgid "Move along the wall down" -msgstr "벽을 따라 아래로 이동" - -msgid "Move along the wall to the left" -msgstr "벽을 따라 왼쪽으로 이동" - -msgid "Move along the wall to the next viewport" -msgstr "벽을 따라 다음 작업 공간으로 이동" - -msgid "Move along the wall to the previous viewport" -msgstr "벽을 따라 이전 작업 공간으로 이동" - -msgid "Move along the wall to the right" -msgstr "벽을 따라 오른쪽으로 이동" - -msgid "Move along the wall up" -msgstr "벽을 따라 위로 이동" - -msgid "Move with window along the wall down" -msgstr "벽을 따라 창과 함께 아래로 이동" - -msgid "Move with window along the wall to the left" -msgstr "벽을 따라 창과 함께 왼쪽으로 이동" - -msgid "Move with window along the wall to the right" -msgstr "벽을 따라 창과 함께 오른쪽으로 이동" - -msgid "Move with window along the wall up" -msgstr "벽을 따라 창과 함께 위로 이동" - -msgid "Move with window within wall" -msgstr "벽 안에서 창과 함께 이동" - -msgid "Move within wall" -msgstr "벽 안에서 이동" - -msgid "Multimonitor behavior" -msgstr "멀티 모니터 동작" - -msgid "Outline Color" -msgstr "외곽선 색" - -msgid "Outline color of the switcher window." -msgstr "전환기 창의 외곽선 색." - -msgid "Preview Scale" -msgstr "" - -msgid "Radius of the rounded edge" -msgstr "둥근 가장자리의 반경" - -msgid "Second color for the background gradient of the switcher window." -msgstr "전환기 창의 두 번째 배경 그레디언트 색." - -msgid "Second color for the thumb gradient of the switcher window." -msgstr "전환기 창의 두 번째 미리 보기 그레디언트 색." - -msgid "Second color for the thumb highlight gradient of the switcher window." -msgstr "전환기 창의 두 번째 미리 보기 강조 그레디언트 색." - -msgid "Second color of the arrow of the switcher window." -msgstr "전환기 창의 두 번째 화살표 색." - -msgid "Shadow Color" -msgstr "그림자 색" - -msgid "Show Live Viewport Previews" -msgstr "실시간 작업 공간 미리 보기" - -msgid "Show Viewport Switcher Preview" -msgstr "작업 공간 전환기 미리 보기 표시" - -msgid "Show live viewport previews in switcher window" -msgstr "전환기 창에서 실시간 작업 공간 미리 보기 표시" - -msgid "Show switcher window while switching viewports" -msgstr "작업 공간 전환 시 전환기 창 표시" - -#, no-c-format -msgid "Size of the preview in %" -msgstr "" - -msgid "Switch Target Preview Visibility Time" -msgstr "전환 대상 미리 보기 지속 시간" - -msgid "Switch all" -msgstr "모두 전환" - -msgid "Switch separately" -msgstr "각자 전환" - -msgid "Third color for the background gradient of the switcher window." -msgstr "전환기 창의 세 번째 배경 그레디언트 색" - -msgid "Thumb Gradient" -msgstr "미리 보기 그레디언트" - -msgid "Viewport Switch Preview" -msgstr "작업 공간 전환 미리 보기" - -msgid "Viewport Switching" -msgstr "작업 공간 전환" - -msgid "Wall Sliding Duration" -msgstr "벽 슬라이딩 지속 시간" - -msgid "Width of the border between the previews" -msgstr "" - -#, fuzzy -msgid "Background fill type." -msgstr "배경 파일" - -msgid "Backgrounds" -msgstr "배경" - -msgid "Center Tiled" -msgstr "" - -#, fuzzy -msgid "Centered" -msgstr "중앙으로 던지기" - -#, fuzzy -msgid "Color 1" -msgstr "색" - -#, fuzzy -msgid "Color 2" -msgstr "색" - -msgid "Draw the desktop wallpaper" -msgstr "데스크탑 배경 화면 그리기" - -#, fuzzy -msgid "Fill or first gradient color." -msgstr "불꽃의 색." - -#, fuzzy -msgid "Fill type" -msgstr "채워진 외곽선" - -#, fuzzy -msgid "Horizontal gradient" -msgstr "수평으로 접기" - -#, fuzzy -msgid "Image" -msgstr "이미지" - -#, fuzzy -msgid "Image file." -msgstr "천장 이미지 파일 목록" - -#, fuzzy -msgid "Image position." -msgstr "X 위치" - -#, fuzzy -msgid "Position" -msgstr "X 위치" - -#, fuzzy -msgid "Scale and Crop" -msgstr "스케일 부가 기능" - -#, fuzzy -msgid "Scaled" -msgstr "스케일 부가 기능" - -#, fuzzy -msgid "Second gradient color." -msgstr "그래디언트 색 1" - -msgid "Solid fill" -msgstr "" - -#, fuzzy -msgid "Tiled" -msgstr "타일" - -msgid "Vertical gradient" -msgstr "" - -msgid "Wallpaper" -msgstr "배경 화면" - -msgid "Background Brightness" -msgstr "배경 밝기" - -msgid "Background Saturation" -msgstr "배경 채도" - -msgid "Background in Widget Mode" -msgstr "위젯 모드의 배경" - -msgid "Brightness of non-widget windows in widget modes." -msgstr "위젯 모드에서 위젯이 아닌 창들의 밝기." - -msgid "End Widget Mode on Click" -msgstr "클릭하면 위젯 모드를 끝냄" - -msgid "End widget mode when a non-widget window is clicked." -msgstr "위젯이 아닌 창이 클릭되면 위젯 모드를 끝냄" - -#, fuzzy -msgid "Focus Widget Layer" -msgstr "위젯 레이어" - -msgid "Focus a window in the widget layer when activating the layer" -msgstr "" - -msgid "Saturation of non-widget windows in widget modes." -msgstr "위젯모드에서 위젯이 아닌창의 채도" - -msgid "Show or hide widget windows" -msgstr "위젯 창을 숨기거나 보여줌" - -msgid "Show widget windows on a separate layer" -msgstr "위젯 창을 분리된 레이어로 보임" - -msgid "Time (in s) for fading into/out of the widget layer." -msgstr "위젯 레이어의 페이딩 인/아웃시 걸리는 시간(초)" - -msgid "Toggle Widget Display" -msgstr "위젯 디스플레이 토글" - -msgid "Widget Layer" -msgstr "위젯 레이어" - -msgid "Widget Windows" -msgstr "위젯 창" - -msgid "Windows that always should be treated as widgets" -msgstr "기본적으로 위젯으로 다루어질 창들" - -msgid "Above others windows" -msgstr "다른 창 위로" - -msgid "Below others windows" -msgstr "다른 창 아래로" - -msgid "Don't show application in pager" -msgstr "작업 공간 전환기에 표시 안 함" - -msgid "Don't show application in taskbar" -msgstr "창 목록에 표시 안 함" - -msgid "Fixed Size Windows" -msgstr "창 크기 고정" - -msgid "Fullscreen" -msgstr "전체 화면" - -msgid "Fullscreen windows" -msgstr "전체 화면 창" - -msgid "Height values" -msgstr "높이 값" - -msgid "Matches" -msgstr "조건" - -msgid "No ARGB visuals" -msgstr "ARGB 비주얼 사용하지 않음" - -msgid "No focus" -msgstr "초점 없음" - -msgid "Non closable windows" -msgstr "닫히지 않는 창" - -msgid "Non maximizable windows" -msgstr "최대화 되지 않는 창" - -msgid "Non minimizable windows" -msgstr "최소화 되지 않는 창" - -msgid "Non movable windows" -msgstr "창 위치 고정" - -msgid "Non resizable windows" -msgstr "크기 조절 되지 않는 창" - -msgid "Set window as non closable" -msgstr "창을 닫히지 않게 함" - -msgid "Set window as non maximizable" -msgstr "창을 최대화되지 않게 함" - -msgid "Set window as non minimizable" -msgstr "창을 최소화되지 않게 함" - -msgid "Set window as non movable" -msgstr "창을 이동할 수 없게 함" - -msgid "Set window as non resizable" -msgstr "창을 크기 조절 할 수 없게 함" - -msgid "Set windows rules" -msgstr "창의 규칙을 설정함" - -msgid "Size rules" -msgstr "" - -msgid "Sized Windows" -msgstr "크기가 고정된 창" - -msgid "Skip pager" -msgstr "데스크탑 전환기에 표시 안 함" - -msgid "Skip taskbar" -msgstr "창 목록에 표시 안 함" - -msgid "Sticky" -msgstr "끈적임" - -msgid "Sticky windows" -msgstr "끈적이는 윈도우" - -msgid "Width values" -msgstr "넓이 값" - -msgid "Window Rules" -msgstr "창의 규칙들" - -msgid "Windows that should be resized by default" -msgstr "기본적으로 크기 조절될 창들" - -msgid "Windows that should be treated as not supporting transparency" -msgstr "투명화를 지원하지 않는 것처럼 처리되야할 창들" - -msgid "Windows will not have focus" -msgstr "초점을 갖지 않을 창들" - -msgid "\"On all desktops\" sticky match" -msgstr "\"모든 작업 공간에 두기\" 끈적임을 적용" - -msgid "AIGLX Fragment Parameter Fix" -msgstr "AIGLX 조각 매개 변수 고침" - -msgid "Firefox Menu Fix" -msgstr "Firefox 메뉴 고침" - -msgid "Fix broken glProgramEnvParameter4f implementation." -msgstr "잘못된 glProgramEnvParameter4f 구현 고침." - -msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." -msgstr "fglrx의 xgl에서 깨진 GLX_MESA_copy_sub_buffe 고침." - -msgid "Fix screen updates in XGL with fglrx." -msgstr "XGL과 flrx의 화면 갱신을 고침." - -msgid "Fix window type of Firefox and Thunderbird menus." -msgstr "Firefox와 Thunderbird의 메뉴 창 형태 고침." - -msgid "Fix window type of OpenOffice.org menus." -msgstr "오픈 오피스의 메뉴 창 분류 고침." - -msgid "Fix window type of notification daemon windows." -msgstr "알림 데몬 창의 창 분류 고침." - -msgid "Fix window type of various Java windows." -msgstr "다양한 Java 창의 창 분류 고침." - -msgid "Fix window type of various Qt windows." -msgstr "다양한 Qt 창의 창 분류 고침." - -msgid "Java Window Fix" -msgstr "Java 창 고침." - -msgid "Legacy Fullscreen Support" -msgstr "오래된 전체 화면 지원" - -msgid "Make \"on all desktops\" windows \"sticky\"" -msgstr "\"모든 작업 공간에 두기\" 창을 끈적이게 합니다." - -msgid "" -"Make \"on all desktops\" windows sticky. Sticky windows are visible on all " -"viewports." -msgstr "" -"\"모든 작업 공간에 두기\" 창을 끈적이게 합니다. 끈적이 창은 \"모든 작업 공간" -"\"에서 나타납니다." - -msgid "Make Wine and legacy applications fullscreen properly." -msgstr "Wine이나 오래된 응용 프로그램의 전체 화면을 제대로 만들어줍니다." - -msgid "Metacity-like workarounds." -msgstr "Metacity 같은 문제 회피 방법" - -msgid "Notification Daemon Fix" -msgstr "알림 데몬 고침" - -msgid "OpenOffice.org Menu Fix" -msgstr "오픈 오피스 메뉴 고침" - -msgid "Qt Window Fix" -msgstr "QT 창 고침" - -msgid "Window stickyness" -msgstr "끈적이 창" - -msgid "Windows on all desktops that should be made sticky" -msgstr "모든 작업 공간에서 나타날 창들" - -msgid "Workarounds" -msgstr "문제 회피" - -#~ msgid "Animation Speed" -#~ msgstr "애니메이션 속도" - -#~ msgid "Change the speed of the 3D animation" -#~ msgstr "3D 애니메이션 속도" - -#~ msgid "Enable true alpha blending for transparent wallpapers" -#~ msgstr "투명 배경 화면을 위한 알파 블렌딩 사용" - -#~ msgid "Enable true blending" -#~ msgstr "알파 블렌딩 사용" - -#~ msgid "" -#~ "The background specifications (as explained in DOCUMENTATION) to use." -#~ msgstr "사용할 배경 명세 (문서로 설명되어 있음)." - -#~ msgid "Tile backgrounds as opposed to stretching" -#~ msgstr "늘이기와 대조되는 바둑판식 배경" - -#~ msgid "Tilt view" -#~ msgstr "기울어지게 표시" - -#~ msgid "Tilt window view in expo mode" -#~ msgstr "엑스포 모드가 기울어지게 표시됨" - -#~ msgid "Move window to x, y" -#~ msgstr "창을 x, y로 이동" - -#~ msgid "Put Exact" -#~ msgstr "정확히 던지기" - -#~ msgid "Misc. options" -#~ msgstr "기타 옵션" - -#~ msgid "Show minimized windows" -#~ msgstr "최소화된 창도 보여줌" - -#~ msgid "Tile or Stretch" -#~ msgstr "바둑판식이나 늘이기" - -#~ msgid "Create Mipmaps" -#~ msgstr "Mipmap 생성" - -#~ msgid "Disable Caps for Inside Cube" -#~ msgstr "큐브 내부 모드일 때 캡을 사용하지 않음" - -#~ msgid "" -#~ "Disables the drawing of the cube caps when the inside cube mode is set." -#~ msgstr "큐브 내부 모드일 때는 큐브 캡을 그리자 않음" - -#~ msgid "Draw Window Backsides" -#~ msgstr "창의 뒷면을 그림" - -#~ msgid "Enables the drawing of the backside of windows." -#~ msgstr "창의 뒷면을 그리게 함" - -#~ msgid "" -#~ "This will create mipmaps which improve overall texture appearence, and " -#~ "reduce jagged edges." -#~ msgstr "" -#~ "이 옵션은 전체적인 텍스쳐 모양을 향상시키는 mipmaps를 만들고 들쭉날쭉한 모" -#~ "서리를 감소시킵니다." - -#~ msgid "Window width" -#~ msgstr "창 너비" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/LINGUAS /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/LINGUAS --- compiz-fusion-plugins-unsupported-0.7.6/po/LINGUAS 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/LINGUAS 2008-09-17 14:29:32.000000000 +0100 @@ -2,6 +2,7 @@ ar bn ca +cs de el en_GB @@ -12,6 +13,7 @@ fr gl gu +he hi it ja diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/Makefile.in.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/Makefile.in.in --- compiz-fusion-plugins-unsupported-0.7.6/po/Makefile.in.in 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/Makefile.in.in 2008-09-18 17:22:34.000000000 +0100 @@ -1,10 +1,10 @@ # Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper +# Copyright (C) 2004-2008 Rodney Dawes # -# This file file be copied and used freely without restrictions. It can -# be used in projects which are not available under the GNU Public License +# This file may be copied and used freely without restrictions. It may +# be used in projects which are not available under a GNU Public License, # but which still want to provide support for the GNU gettext functionality. -# Please note that the actual code is *not* freely available. # # - Modified by Owen Taylor to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ @@ -12,7 +12,7 @@ # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize # -# - Modified by Rodney Dawes for use with intltool +# - Modified by Rodney Dawes for use with intltool # # We have the following line for use by intltoolize: # INTLTOOL_MAKEFILE @@ -133,7 +133,7 @@ dvi info tags TAGS ID: # Define this as empty until I found a useful application. -installcheck: +install-exec installcheck: uninstall: linguas="$(USE_LINGUAS)"; \ diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/nb.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/nb.po --- compiz-fusion-plugins-unsupported-0.7.6/po/nb.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/nb.po 2008-09-17 14:29:33.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: fusion-plugins 0.6\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" "PO-Revision-Date: 2008-03-16 19:01+0100\n" "Last-Translator: Ketil Wendelbo Aanensen \n" "Language-Team: Norwegian Bokmaal \n" @@ -112,6 +112,12 @@ msgid "Brightness of faded windows" msgstr "Skarphet for uttonede vinduer" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -142,12 +148,6 @@ msgid "Window types that should be Opacified." msgstr "Vindustyper som skal tones ut." -msgid "Airplane" -msgstr "Fly" - -msgid "Airplane Flying Path Length" -msgstr "Svevelengde for fly" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -155,20 +155,6 @@ "Alle effekter blir valgt tilfeldig, og ignorerer den valgte effekten. Hvis " "Ingen er valgt for en hendelse blir ikke hendelsen animert." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplitude (størrelse på bølgene i bretten) på de horisontale brettene, " -"relativt til vindusbredde. Negative verdier bretter utover." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitude (størrelse på bølgene i bretten) på de rundede brettene, relativt " -"til vindusbredde. Negative verdier bretter utover." - msgid "Angle of window at the end of the animation." msgstr "Vinduets vinkel når animasjonen slutter." @@ -178,9 +164,6 @@ msgid "Animation Time Step" msgstr "Tidsskritt for animasjon" -msgid "Animation Time Step For Intense Effects" -msgstr "Tidsskritt for animasjon ved intense effekter" - msgid "Animation duration in milliseconds for close effect." msgstr "Animasjonsvarighet i millisekunder for lukk-effekt." @@ -199,51 +182,12 @@ msgid "Animations" msgstr "Animasjoner" -msgid "Automatic" -msgstr "Automatisk" - msgid "Away Angle" msgstr "Vinkel ved bortglidning" msgid "Away Position" msgstr "Posisjon ved bortglidning" -msgid "Beam" -msgstr "Strål" - -msgid "Beam Color" -msgstr "Strålefarge" - -msgid "Beam Life" -msgstr "Levetid for stråle" - -msgid "Beam Slowdown" -msgstr "Nedbremsing for stråle" - -msgid "Beam Spacing" -msgstr "Stråleavstand" - -msgid "Beam Up" -msgstr "Strål opp" - -msgid "Beam Width" -msgstr "Strålebredde" - -msgid "Beam color." -msgstr "Strålefarge." - -msgid "Beam life." -msgstr "Levetid for stråle." - -msgid "Beam slowdown." -msgstr "Nedbremsing for stråle." - -msgid "Beam width." -msgstr "Strålebredde." - -msgid "Burn" -msgstr "Brenn" - msgid "Close Animation" msgstr "Lukk-animasjon" @@ -267,7 +211,8 @@ msgid "Curved Fold" msgstr "Rundede bretter" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Amplitude for rundede bretter" msgid "Dodge" @@ -276,15 +221,6 @@ msgid "Dodge Gap Ratio" msgstr "Mellomromsratio for Unngå" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Dominobrikkes fallretning" - -msgid "Down" -msgstr "Nedover" - msgid "Dream" msgstr "Drøm" @@ -294,77 +230,22 @@ msgid "Effect Settings" msgstr "Effektinnstillinger" -msgid "Explode" -msgstr "Eksploder" - msgid "Fade" msgstr "Ton ut/inn" -msgid "Falling direction for Domino pieces." -msgstr "Fallretning for dominobrikker." - -msgid "Fire" -msgstr "Brann" - -msgid "Fire Particle Color" -msgstr "Brannpartikkels farge" - -msgid "Fire Particle Life" -msgstr "Brannpartikkels levetid" - -msgid "Fire Particle Size" -msgstr "Brannpartikkels størrelse" - -msgid "Fire Particle Slowdown" -msgstr "Brannpartikkelse nedbremsing" - -msgid "Fire Smoke" -msgstr "Røyk" - -msgid "Fire constant speed" -msgstr "Konstanthastighet for brann" - -msgid "Fire direction" -msgstr "Brannretning" - -msgid "Fire direction." -msgstr "Brannretning." - -msgid "Fire particle color." -msgstr "Farge for brannpartikkel." - -msgid "Fire particle life." -msgstr "Levetid for brannpartikkel." - -msgid "Fire particle size." -msgstr "Størrelse for brannpartikkel." - -msgid "Fire particle slowdown." -msgstr "Nedbremsing for brannpartikkel." - -msgid "Fire smoke." -msgstr "Brannen ryker." - msgid "Fixed window interior during the Rollup animation." msgstr "Fast innhold i vinduer gjennom opprullinganimasjonen." -msgid "Fly to TaskBar on Minimize" -msgstr "Fly til oppgavelinje ved minimer" - msgid "Focus Animation" msgstr "Fokus-animasjon" msgid "Focus Effect" msgstr "Fokus-effekt" -msgid "Fold" -msgstr "Brett" - -msgid "Fold Direction" -msgstr "Bretteretning" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Begynnende bretteretning for deler i \"Razr\"-effekten." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "Glide 1" @@ -372,16 +253,11 @@ msgid "Glide 2" msgstr "Glide 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Ha tilfeldige farger for branneffekten, også kjent som mystisk brann" - -msgid "Hexagonal" -msgstr "Sekskantet" - msgid "Horizontal Folds" msgstr "Horisontale bretter" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Amplitude for horisontale bretter" msgid "How spring-like the Sidekick animation should be." @@ -390,24 +266,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Hvor fjær-lik forstørrelses/forminskings-animasjonen skal være." -msgid "In" -msgstr "Inn" - -msgid "In-out" -msgstr "Inn-ut" - -msgid "Leaf Spread" -msgstr "Løvspredning" - -msgid "Left" -msgstr "Venstre" - -msgid "Left-right" -msgstr "Venstre-høyre" - -msgid "Length of airplane's flying path." -msgstr "Lengde på flyets svevelengde" - msgid "Magic Lamp" msgstr "Magisk lampe" @@ -429,9 +287,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Bevegende ende for åpne/lukk med magisk lampe" -msgid "Make fire effect duration be dependent on window height." -msgstr "Gjør varigheten på brann-effekten avhengig av vindushøyde." - msgid "Minimize Animation" msgstr "Minimer-animasjon" @@ -441,21 +296,12 @@ msgid "Minimize/Unminimize Only" msgstr "Kun minimer/avminimer" -msgid "Movement direction(s) for window pieces." -msgstr "Bevegelsesretning(er) for vindusbiter." - msgid "None" msgstr "Ingen" -msgid "Number Of Fire Particles" -msgstr "Antall brannpartikler" - msgid "Number of Horizontal Folds" msgstr "Antall horisontale bretter" -msgid "Number of fire particles." -msgstr "Antall brannpartikler." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -485,15 +331,13 @@ msgid "Options" msgstr "Valg" -msgid "Out" -msgstr "Ut" - msgid "Pool" msgstr "Utvalg" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Utvalg av effekter til å velge fra hvis tilfeldig effekt er valgt. Klikk " "tilbakestill for å gjenopprette full liste." @@ -507,36 +351,15 @@ msgid "Random Effects" msgstr "Tilfeldige effekter" -msgid "Randomly Colored Fire" -msgstr "Tilfeldig farget brann" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "Ratio av avstander mellom starttid til fokus for Unngå." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Retning for bretteåpning" - -msgid "Rectangular" -msgstr "Rektangulær" - -msgid "Right" -msgstr "Høyre" - msgid "Roll Up" msgstr "Rull opp" msgid "Rollup Fixed Interior" msgstr "Fast innhold ved rull opp" -msgid "Rotation Angle" -msgstr "Rotasjonsvinkel" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Rotasjonsvinkel for animerte vindusbiter (i grader)." - msgid "Shade Animation" msgstr "Skyggelegg-animasjon" @@ -552,15 +375,6 @@ msgid "Sidekick Springiness" msgstr "Fjæring for sidespark" -msgid "Skewer" -msgstr "Skjevhet" - -msgid "Skewer Direction" -msgstr "Skjevhetsretning" - -msgid "Spacing between beams." -msgstr "Mellomrom mellom stråler" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -573,15 +387,6 @@ msgstr "" "Oppstartsbredde for åpneeffekt, og endebredde for lukkeeffekt for støvsuger." -msgid "Tessellation Type" -msgstr "Tesseleringstype" - -msgid "Tessellation type for exploding window pieces." -msgstr "Tesseleringstype for eksploderende vindusbiter." - -msgid "Tessellation type for window pieces." -msgstr "Tesseleringstype for vindusbiter." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -589,28 +394,6 @@ "Antall millisekunder mellom hver gjengivelse av animasjonen. Jo høyere " "antall, jo mer hakkete blir bevegelsene." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Antall millisekunder mellom hver gjengivelse av den intense animasjonen (f." -"eks, brenn, strål). Jo høyere antall, jo mer hakkete blir bevegelsene." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Det animerte vinduet vil bli delt i biter langs et rutenett. Spesifiser " -"antall celler i rutenettet langs vindushøyden." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Det animerte vinduet vil bli delt i biter langs et rutenett. Spesifiser " -"antall celler i rutenettet langs vindusbredden." - msgid "The animation effect shown when closing a window." msgstr "Animasjonseffekten som blir vist når du lukker et vindu." @@ -626,20 +409,6 @@ msgid "The animation effect shown when shading a window." msgstr "Animasjonseffekten som blir vist når du skyggelegger et vindu." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Det eksploderende vinduet vil bli delt i biter langs et rutenett. Spesifiser " -"antall celler i rutenettet langs vindushøyden." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Det eksploderende vinduet vil bli delt i biter langs et rutenett. Spesifiser " -"antall celler i rutenettet langs vindusbredden." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "Maksimal amplitude (bølgestørrelse) for magisk lampe." @@ -654,36 +423,12 @@ msgstr "" "Antall horisontale bretter som forekommer i animasjonen horisontal brett." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Bølgeamplituden (bølgestørrelse), relativ til vindushøyden." - msgid "The width of the wave relative to the window height." msgstr "Bølgebredden, relativ til vindushøyden." msgid "The windows that will be animated." msgstr "Vinduene som vil bli animert." -msgid "Thickness" -msgstr "Tykkelse" - -msgid "Thickness of Animated Polygons" -msgstr "Tykkelse på animerte polygoner" - -msgid "Thickness of Exploding Polygons" -msgstr "Tykkelse på eksploderende polygoner" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Tykkelse på animerte vindusbiter (i piksler)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Tykkelse på eksploderende vindusbiter (i piksler)." - -msgid "Up" -msgstr "Opp" - -msgid "Up-down" -msgstr "Opp-ned" - msgid "Use various animations as window effects" msgstr "Bruk diverse animasjoner som vinduseffekter" @@ -720,16 +465,17 @@ msgid "Wave" msgstr "Bølge" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Bølgeamplitude" msgid "Wave Width" msgstr "Bølgebredde" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Om vinduet skal fly til oppgavelinjen når det blir minimert med effekten fly." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -763,28 +509,12 @@ "Om vinduet skal skaleres til oppgavelinjen når det blir minimert med " "effekten glide 2." -msgid "Window Grid Height" -msgstr "Høyde for rutenenett for vindu" - -msgid "Window Grid Width" -msgstr "Bredde for rutenett for vindu" - -msgid "Window folding direction." -msgstr "Bretteretning for vindu" - msgid "Window that should animate with this effect when focused." msgstr "Vindu som skal animeres med denne effekten når det blir fokusert." msgid "Window that should animate with this effect when shaded." msgstr "Vindu som skal animeres med denne effekten når det blir skyggelagt." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Vindustykkelse i piksler. Å sette denne til en større verdi enn 0 vil slå av " -"skygge, utydeliggjør og speiling gjennom animasjonen." - msgid "Zoom" msgstr "Forstørr/forminsk" @@ -894,65 +624,12 @@ msgid "Y position" msgstr "Y-posisjon" -msgid "Brightness Decrease" -msgstr "Redusert skarphet" - -msgid "Brightness Increase" -msgstr "Økt skarphet" - -msgid "Brightness Step" -msgstr "Steg for skarphet" - -msgid "Brightness and Saturation" -msgstr "Skarphet og metning" - -msgid "Brightness and Saturation adjustments" -msgstr "Justeringer for Skarphet og metning" - -msgid "Brightness settings" -msgstr "Innstillinger for skarphet" - -msgid "Brightness values for windows" -msgstr "Skarphetsverdier for vinduer" - -msgid "Brightness window values" -msgstr "Skarphetsverdier for vinduer" - -msgid "Brightness windows" -msgstr "Skarphet for vinduer" - -msgid "General" -msgstr "Generelt" - -msgid "Saturation Decrease" -msgstr "Redusert metning" - -msgid "Saturation Increase" -msgstr "Økt metning" - -msgid "Saturation Step" -msgstr "Steg for metning" - -msgid "Saturation settings" -msgstr "Instillinger for metning" - -msgid "Saturation values for windows" -msgstr "Metningsverdier for vinduer" - -msgid "Saturation window values" -msgstr "Metningsverdier for vinduer" - -msgid "Saturation windows" -msgstr "Metning for vinduer" - -msgid "Window specific" -msgstr "Vindusspesifikk" - -msgid "Windows that should have a different brightness by default" -msgstr "Vinduer som skal ha en endret skarphet som standard" +#, fuzzy +msgid "Bicubic filter" +msgstr "Bytt filter" -msgid "Windows that should have a different saturation by default" -msgstr "Vinduer som skal ha en endret metning som standard" +msgid "Bicubic texture filtering" +msgstr "" msgid "Color filter" msgstr "Fargefilter" @@ -1046,6 +723,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Kommandolinje for vindushåndterer. IKKE SKRIV COMPIZ HER!" +msgid "Above" +msgstr "Over" + msgid "Adjust bottom face image to rotation" msgstr "Juster bunnbilde til rotasjon" @@ -1067,6 +747,19 @@ msgid "Appearance" msgstr "Utseende" +#, fuzzy +msgid "Aspect ratio" +msgstr "Størrelsesforhold" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Autoforstørr/forminsk" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Autoforstørr/forminsk kun ved muserotering" + msgid "Behaviour" msgstr "Oppførsel" @@ -1102,18 +795,62 @@ msgid "Color of bottom face of the cube" msgstr "Farge på bunnen av kuben" +msgid "Color of the ground (far)." +msgstr "Farge på bakken (langt unna)." + +msgid "Color of the ground (near)." +msgstr "Farge på bakken (nært)." + msgid "Color of top face of the cube" msgstr "Farge på toppen av kuben" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Compiz' kuberefleksjon" + msgid "Cube Bottom Color" msgstr "Kubens bunnfarge" -msgid "Cube Caps" -msgstr "Kubeluer" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Speiling for deokrasjoner" msgid "Cube Top Color" msgstr "Kubens toppfarge" +#, fuzzy +msgid "Cube caps" +msgstr "Kubeluer" + +#, fuzzy +msgid "Cylinder" +msgstr "Rens" + +#, fuzzy +msgid "Deform caps" +msgstr "Deformering" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Autoforstørr/forminsk kun ved muserotering" + +msgid "Deformation" +msgstr "Deformering" + +#, fuzzy +msgid "Deformation in unfold cube mode." +msgstr "Deformeringens styrke i kurvemodus" + +#, fuzzy +msgid "Deformation mode." +msgstr "Deformering" + +msgid "Distance" +msgstr "Avstand" + msgid "Draw bottom face" msgstr "Tegn bunn" @@ -1126,12 +863,38 @@ msgid "Draw top face of the cube" msgstr "Tegn toppen på kuben" +#, fuzzy +msgid "Enabled" +msgstr "Bruk" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Compiz' kuberefleksjon" + msgid "Go back to previous image for bottom face of the cube" msgstr "Gå tilbake til forrige bilde for bunnen av kuben" msgid "Go back to previous image for top face of the cube" msgstr "Gå tilbake til forrige bilde for toppen av kuben" +msgid "Ground color(far)" +msgstr "Bakkefarge (langt unna)" + +msgid "Ground color(near)" +msgstr "Bakkfarge (nært)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensitet" + +msgid "Jumpy" +msgstr "Hoppende" + +msgid "Jumpy reflection" +msgstr "Hoppende refleksjon" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "Liste med PNG- og SVG-filer som skal gjengis på bunnen av kuben" @@ -1139,6 +902,22 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "Liste med PNG- og SVG-filer som skal gjengis på toppen av kuben" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Størrelsesforhold for ekspo-modus" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Juster bunnbilde til rotasjon" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Størrelsesforhold for ekspo-modus" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Juster toppbilde til rotasjon" + msgid "Next bottom image" msgstr "Neste bunnbilde" @@ -1151,8 +930,23 @@ msgid "Prev top image" msgstr "Forrige toppbilde" -msgid "Render images on top and bottom of the cube" -msgstr "Gjengi bilder på toppen og bunnen av kuben" +msgid "Reflection" +msgstr "Speiling" + +msgid "Reflection ground size" +msgstr "Refleksjonens størrelse" + +msgid "Reflection ground size." +msgstr "Refleksjonens størrelse" + +msgid "Reflection intensity" +msgstr "Refleksjonens intensitet" + +msgid "Reflection mode" +msgstr "Refleksjonsmodus" + +msgid "Reflection mode." +msgstr "Refleksjonsmodus." msgid "Scale bottom image" msgstr "Skaler bunnbilde" @@ -1166,69 +960,36 @@ msgid "Scale top image" msgstr "Skaler toppbilde" +#, fuzzy +msgid "Sphere" +msgstr "Hastighet" + msgid "Top image files" msgstr "Toppbildefiler" -msgid "Above" -msgstr "Over" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Autoforstørr/forminsk" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Forminsk automatisk kun ved muserotering." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Autoforstørr/forminsk kun ved muserotering" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Forminsk automatisk for å få kuben til å passe til skjermen." -msgid "Color of the ground (far)." -msgstr "Farge på bakken (langt unna)." +#, fuzzy +msgid "Cube Caps" +msgstr "Kubeluer" -msgid "Color of the ground (near)." -msgstr "Farge på bakken (nært)." +msgid "Render images on top and bottom of the cube" +msgstr "Gjengi bilder på toppen og bunnen av kuben" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz' kuberefleksjon" +msgstr "Kuberefleksjon" msgid "Cube Reflection" msgstr "Kuberefleksjon" -msgid "Distance" -msgstr "Avstand" - -msgid "Ground color(far)" -msgstr "Bakkefarge (langt unna)" - -msgid "Ground color(near)" -msgstr "Bakkfarge (nært)" - -msgid "Intensity" -msgstr "Intensitet" - -msgid "Jumpy" -msgstr "Hoppende" - -msgid "Jumpy reflection" -msgstr "Hoppende refleksjon" - -msgid "Reflection ground size" -msgstr "Refleksjonens størrelse" - -msgid "Reflection ground size." -msgstr "Refleksjonens størrelse" - -msgid "Reflection intensity" -msgstr "Refleksjonens intensitet" - -msgid "Reflection mode" -msgstr "Refleksjonsmodus" - -msgid "Reflection mode." -msgstr "Refleksjonsmodus." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Forminsk automatisk kun ved muserotering." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Forminsk automatisk for å få kuben til å passe til skjermen." - msgid "Animation used when switching to expo mode" msgstr "Animasjon som brukes ved bytte til ekspo-modus" @@ -1250,9 +1011,6 @@ msgid "Curve strength" msgstr "Kurvestyrke" -msgid "Deformation" -msgstr "Deformering" - msgid "Deformation of the expo wall" msgstr "Deformering av ekspo-veggen" @@ -1343,9 +1101,6 @@ msgid "Previous viewport" msgstr "Forrige arbeidsområde" -msgid "Reflection" -msgstr "Speiling" - msgid "Reflection Scale" msgstr "Speilstørrelse" @@ -1453,6 +1208,10 @@ msgid "Center the mouse" msgstr "Sentrer musen" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Skaler musepekeren" + msgid "Enable focus tracking" msgstr "Bruk fokussporing" @@ -1515,19 +1274,13 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "Skjuler den originale musepekeren når forstørret og musen skalert" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"HVor ofte skal museposisjonen prøves, i millisekunder. Reduser dette for å " -"minske hakkete oppførsel." +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Minimum skaleringsfaktor" msgid "Mouse Behaviour" msgstr "Oppførsel for mus" -msgid "Mouse Poll Interval" -msgstr "Intervall for museprøving" - msgid "Mouse Restrain Margin" msgstr "Tilbakeholdingsmargin for mus" @@ -1615,12 +1368,21 @@ msgid "Speed" msgstr "Hastighet" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Skaler musepekeren" + msgid "Sync Mouse" msgstr "Synkroniser mus" msgid "Target Focused Window on Specific level" msgstr "Sikt fokusert vindu på spesifikt nivå" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "Størrelsen på margen som legges til når musen forsøkes holdt tilbake." @@ -1638,9 +1400,23 @@ msgid "Use linear filter when zoomed in" msgstr "Bruk lineært filter når forstørret" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Bevegelse for forstørrelsesområde" +#, fuzzy +msgid "Zoom Box" +msgstr "Forstørr/forminsk" + msgid "Zoom In" msgstr "Forstørr" @@ -1668,6 +1444,9 @@ msgid "Zoom factor" msgstr "Forstørrelsesfaktor" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Forstørr/forminsk med denne faktoren. Høyerer verdi betyr raskere " @@ -1725,20 +1504,54 @@ msgid "Toggle window fake ARGB." msgstr "Skru av/på falsk ARGB for vinduer" +#, fuzzy +msgid "Add Particle" +msgstr "Partiklenes levetid" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Bakgrunnens skarphet" msgid "Background brightness during paint" msgstr "Bakgrunnens skarphet ved maling" -msgid "Clear" -msgstr "Rens" +msgid "Clear" +msgstr "Rens" + +msgid "Clear (button)" +msgstr "Rens (knapp)" + +msgid "Clear (key)" +msgstr "Rens (tast)" + +msgid "Fire Particle Color" +msgstr "Brannpartikkels farge" + +msgid "Fire Particle Life" +msgstr "Brannpartikkels levetid" + +msgid "Fire Particle Size" +msgstr "Brannpartikkels størrelse" + +msgid "Fire Particle Slowdown" +msgstr "Brannpartikkelse nedbremsing" + +msgid "Fire particle color." +msgstr "Farge for brannpartikkel." + +msgid "Fire particle life." +msgstr "Levetid for brannpartikkel." -msgid "Clear (button)" -msgstr "Rens (knapp)" +msgid "Fire particle size." +msgstr "Størrelse for brannpartikkel." -msgid "Clear (key)" -msgstr "Rens (tast)" +msgid "Fire particle slowdown." +msgstr "Nedbremsing for brannpartikkel." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Ha tilfeldige farger for branneffekten, også kjent som mystisk brann" msgid "Initiate (button)" msgstr "Start (knapp)" @@ -1761,6 +1574,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Mal brann eller andre partikler på skjermen" +msgid "Randomly Colored Fire" +msgstr "Tilfeldig farget brann" + msgid "Cube Gears" msgstr "Kube-tannhjul" @@ -1856,6 +1672,9 @@ msgid "Font Size" msgstr "Skriftstørrelse" +msgid "General" +msgstr "Generelt" + msgid "Glass" msgstr "Glass" @@ -2458,9 +2277,19 @@ msgid "Start gesture" msgstr "Start gest" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"HVor ofte skal museposisjonen prøves, i millisekunder. Reduser dette for å " +"minske hakkete oppførsel." + msgid "Misc" msgstr "Div" +msgid "Mouse Poll Interval" +msgstr "Intervall for museprøving" + msgid "Mouse position polling" msgstr "Prøving av museposisjon" @@ -3187,8 +3016,13 @@ msgid "Background color of the window title" msgstr "Bakgrunnsfarge på vindustittelen" -msgid "Close Windows In Scale" -msgstr "Lukk vinduer i Skaler" +#, fuzzy +msgid "Close Window" +msgstr "Flislegg vinduer" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Lukk vinduer mens modus er Skaler" msgid "Close windows while in scale mode" msgstr "Lukk vinduer mens modus er Skaler" @@ -3196,9 +3030,18 @@ msgid "Color used for highlighting the hovered window" msgstr "Farge brukt for å fremheve det svevende vinduet" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Tegn vindusfremheving" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Skriftfarge på vindustittelen" @@ -3214,6 +3057,11 @@ msgid "Highlights the hovered window with the given color" msgstr "Fremhever det svevende vinduet med den gitte fargen" +#, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "Gjør vinduer lett synlige ved å sveve musen over dem" + msgid "No display" msgstr "Ingen visning" @@ -3223,6 +3071,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organisk - EKSPERIMENTELT" +#, fuzzy +msgid "Pull Window" +msgstr "Plasser vindu" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Lukk vinduer mens modus er Skaler" + msgid "Scale Addons" msgstr "Skaler-tillegg" @@ -3247,6 +3103,10 @@ msgid "Window Layout Mode" msgstr "Modus for vindusutforming" +#, fuzzy +msgid "Window Pull" +msgstr "Vindusregler" + msgid "Window Title" msgstr "Vindustittel" @@ -3256,10 +3116,12 @@ msgid "Window title display in scale mode" msgstr "Vindustittelvisning i Skaler-modus" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "Forstørr vinduer i Skaler" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "Forstørr vinduer i Skaler-modus" msgid "Filter Case Insensitive" @@ -3521,18 +3383,30 @@ msgid "Direction of window movement" msgstr "Retning for vindusbevegelse" +msgid "Down" +msgstr "Nedover" + +msgid "Left" +msgstr "Venstre" + msgid "Left/Right" msgstr "Venstre/høyre" msgid "Movement Direction" msgstr "Bevegelsesretning" +msgid "Right" +msgstr "Høyre" + msgid "Show desktop" msgstr "Vis skrivebord" msgid "To Corners" msgstr "Til hjørner" +msgid "Up" +msgstr "Opp" + msgid "Up/Down" msgstr "Opp/ned" @@ -3753,104 +3627,355 @@ msgid "Screen Depth" msgstr "Skjermdybde" -msgid "Select snow flake movement direction" -msgstr "Velg bevegelsesretning for snøfnugg" +msgid "Select snow flake movement direction" +msgstr "Velg bevegelsesretning for snøfnugg" + +msgid "Settings" +msgstr "Innstillinger" + +msgid "Size Of Snowflakes" +msgstr "Snøfnuggenes størrelse" + +msgid "Size of snowflakes" +msgstr "Snøfnuggenes størrelse" + +msgid "Snow" +msgstr "Snø" + +msgid "Snow Direction" +msgstr "Snøretning" + +msgid "Snow Over Windows" +msgstr "Snø over vinduer" + +msgid "Snow Speed" +msgstr "Snøhastighet" + +msgid "Snow Textures" +msgstr "Snøteksturer" + +msgid "Snow Toggle" +msgstr "Slå av/på snø" + +msgid "Snow for Compiz" +msgstr "Snø for Compiz" + +msgid "Snow is drawn above windows" +msgstr "Snø tegnes over vinduer" + +msgid "Snow textures" +msgstr "Snøteksturer" + +msgid "Snow toggle key" +msgstr "Tast for å slå av/på snø" + +msgid "Speed of falling snow" +msgstr "Hastighet for fallende snø" + +msgid "Textures" +msgstr "Teksturer" + +msgid "Top to Bottom" +msgstr "Øverst til nederst" + +msgid "Update Delay" +msgstr "Oppdateringsforsinkelse" + +msgid "A simple splash plugin" +msgstr "Et enkel Plask-tillegg" + +msgid "Background File" +msgstr "Bakgrunnsfil" + +msgid "Background brightness." +msgstr "Bakgrunnens skarphet" + +msgid "Background image File." +msgstr "Bildefil for bakgrunn" + +msgid "Background saturation." +msgstr "Bakgrunnsmetning" + +msgid "Display In/Out Time." +msgstr "Visningens inn-/ut-varighet." + +msgid "Display Time" +msgstr "Visningsvarighet" + +msgid "Images" +msgstr "Bilder" + +msgid "Initiate Splash" +msgstr "Start Plask" + +msgid "Logo File" +msgstr "Logofil" + +msgid "Logo image File." +msgstr "Bildefil for logo." + +msgid "Show on first start" +msgstr "Vis på første start" + +msgid "Show splash on first start." +msgstr "Vis Plask ved første start" + +msgid "Splash" +msgstr "Plask" + +msgid "Start Splash." +msgstr "Start Plask" + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "Dekkevne (i prosent) for vinduer i i ringen, som ikke er valgt" + +#, fuzzy +msgid "Behavior" +msgstr "Oppførsel" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Gjør bakgrunnen mørkere når ringen vises" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Miniatyrbredde" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Aktiver et gitt vindu" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Skal være vindustittelen fet." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Ringskifter" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Farge 1 av fargeoverganen i bakgrunnen" + +#, fuzzy +msgid "Windows" +msgstr "3D-vinduer" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Vinduer som skal bli vist i Bytt-skifteren" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Bakgrunnens skarphet ved maling" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Ikke vis program i oversikt" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Plasser på arbeidsområde" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "Plasser i midten" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Fyllfarge for utvalgsrektangelet" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Lag MIP-kart når det er mulig for skalering med høyere kvalitet" + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Farge for fremheving" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Farge for fremheving" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Farge for fremheving" + +#, fuzzy +msgid "Icon" +msgstr "Inn" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Fremhev vindu" + +#, fuzzy +msgid "Mipmap" +msgstr "MIP-kart" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Farge brukt for å fremheve det svevende vinduet" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Neste vindu" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Neste vindu (alle arbeidsområder)" -msgid "Settings" -msgstr "Innstillinger" +#, fuzzy +msgid "Next window (Group)" +msgstr "Neste vindu (gruppe)" -msgid "Size Of Snowflakes" -msgstr "Snøfnuggenes størrelse" +#, fuzzy +msgid "Next window (No popup)" +msgstr "Neste vindu (gruppe)" -msgid "Size of snowflakes" -msgstr "Snøfnuggenes størrelse" +msgid "Original Window Position" +msgstr "" -msgid "Snow" -msgstr "Snø" +#, fuzzy +msgid "Popup Window Delay" +msgstr "Vinduer som skal grupperes" -msgid "Snow Direction" -msgstr "Snøretning" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Vis skifter hvis ikke synlig og velg neste vindu." -msgid "Snow Over Windows" -msgstr "Snø over vinduer" +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Vis skifteren hvis den ikke er synlig, og velg neste vindu av nåværende " +"program." -msgid "Snow Speed" -msgstr "Snøhastighet" +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "Vis skifteren hvis ikke synlig, og velg neste vindu av alle vinduer." -msgid "Snow Textures" -msgstr "Snøteksturer" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Vis skifter hvis ikke synlig og velg neste vindu." -msgid "Snow Toggle" -msgstr "Slå av/på snø" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Vis skifteren hvis den ikke er synlig, og velg forrige vindu av nåværende " +"program." -msgid "Snow for Compiz" -msgstr "Snø for Compiz" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "Vis skifter hvis ikke synlig, og velg forrige vindu av alle vinduer." -msgid "Snow is drawn above windows" -msgstr "Snø tegnes over vinduer" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Snøteksturer" +#, fuzzy +msgid "Prev window" +msgstr "Forrige vindu" -msgid "Snow toggle key" -msgstr "Tast for å slå av/på snø" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Forrige vindu (alle arbeidsområder)" -msgid "Speed of falling snow" -msgstr "Hastighet for fallende snø" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Forrige vindu (gruppe)" -msgid "Textures" -msgstr "Teksturer" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Forrige vindu (gruppe)" -msgid "Top to Bottom" -msgstr "Øverst til nederst" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Oppdateringsforsinkelse" +#, fuzzy +msgid "Select next panel type window." +msgstr "Velger hvor vindustittelen plasseres." -msgid "A simple splash plugin" -msgstr "Et enkel Plask-tillegg" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Bakgrunnsfil" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Velger hvor vindustittelen plasseres." -msgid "Background brightness." -msgstr "Bakgrunnens skarphet" +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Bildefil for bakgrunn" +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Fremhev vindu" -msgid "Background saturation." -msgstr "Bakgrunnsmetning" +#, fuzzy +msgid "Show Rectangle" +msgstr "Rektangulær" -msgid "Display In/Out Time." -msgstr "Visningens inn-/ut-varighet." +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Vis vindustittel i miniatyr." -msgid "Display Time" -msgstr "Visningsvarighet" +msgid "Show minimized windows" +msgstr "Vis minimerte vinduer" -msgid "Images" -msgstr "Bilder" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Start Plask" +#, fuzzy +msgid "Switcher speed" +msgstr "Skiftermodus" -msgid "Logo File" -msgstr "Logofil" +#, fuzzy +msgid "Switcher timestep" +msgstr "Tidsskritt for Bytt" -msgid "Logo image File." -msgstr "Bildefil for logo." +#, fuzzy +msgid "Switcher windows" +msgstr "Filtrerte vinduer" -msgid "Show on first start" -msgstr "Vis på første start" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Oppgavelinje" -msgid "Show splash on first start." -msgstr "Vis Plask ved første start" +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Plask" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Start Plask" +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Vinduer som skal bli vist i Bytt-skifteren" msgid "Render text to texture" msgstr "Gjengi tekst til tekstur" @@ -4545,10 +4670,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "Plasser i midten" - -#, fuzzy msgid "Color 1" msgstr "Farger" @@ -4690,6 +4811,14 @@ msgid "Matches" msgstr "Treff" +#, fuzzy +msgid "Maximized" +msgstr "Maksimumer" + +#, fuzzy +msgid "Maximized windows" +msgstr "Ikke-maksimerbare vinduer" + msgid "No ARGB visuals" msgstr "Ingen ARGB-synligheter" @@ -4768,6 +4897,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Korreksjon for parameter for AIGLX-fragment" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Korreksjon for Firefox-meny" @@ -4811,6 +4943,9 @@ "La vinduer som er markert \"på alle skrivebord\" klistre. Klistrevinduer er " "synlige på alle arbeidsområder." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "La Wine-programmer og gamle programmer bruke fullskjermmodus ordentlig." @@ -4836,6 +4971,317 @@ msgid "Workarounds" msgstr "Omveier" +#~ msgid "Airplane" +#~ msgstr "Fly" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Svevelengde for fly" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Tidsskritt for animasjon ved intense effekter" + +#~ msgid "Automatic" +#~ msgstr "Automatisk" + +#~ msgid "Beam" +#~ msgstr "Strål" + +#~ msgid "Beam Color" +#~ msgstr "Strålefarge" + +#~ msgid "Beam Life" +#~ msgstr "Levetid for stråle" + +#~ msgid "Beam Slowdown" +#~ msgstr "Nedbremsing for stråle" + +#~ msgid "Beam Spacing" +#~ msgstr "Stråleavstand" + +#~ msgid "Beam Up" +#~ msgstr "Strål opp" + +#~ msgid "Beam Width" +#~ msgstr "Strålebredde" + +#~ msgid "Beam color." +#~ msgstr "Strålefarge." + +#~ msgid "Beam life." +#~ msgstr "Levetid for stråle." + +#~ msgid "Beam slowdown." +#~ msgstr "Nedbremsing for stråle." + +#~ msgid "Beam width." +#~ msgstr "Strålebredde." + +#~ msgid "Burn" +#~ msgstr "Brenn" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Dominobrikkes fallretning" + +#~ msgid "Explode" +#~ msgstr "Eksploder" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Fallretning for dominobrikker." + +#~ msgid "Fire" +#~ msgstr "Brann" + +#~ msgid "Fire Smoke" +#~ msgstr "Røyk" + +#~ msgid "Fire constant speed" +#~ msgstr "Konstanthastighet for brann" + +#~ msgid "Fire direction" +#~ msgstr "Brannretning" + +#~ msgid "Fire direction." +#~ msgstr "Brannretning." + +#~ msgid "Fire smoke." +#~ msgstr "Brannen ryker." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Fly til oppgavelinje ved minimer" + +#~ msgid "Fold" +#~ msgstr "Brett" + +#~ msgid "Fold Direction" +#~ msgstr "Bretteretning" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Begynnende bretteretning for deler i \"Razr\"-effekten." + +#~ msgid "Hexagonal" +#~ msgstr "Sekskantet" + +#~ msgid "In" +#~ msgstr "Inn" + +#~ msgid "In-out" +#~ msgstr "Inn-ut" + +#~ msgid "Leaf Spread" +#~ msgstr "Løvspredning" + +#~ msgid "Left-right" +#~ msgstr "Venstre-høyre" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Lengde på flyets svevelengde" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Gjør varigheten på brann-effekten avhengig av vindushøyde." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Bevegelsesretning(er) for vindusbiter." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Antall brannpartikler" + +#~ msgid "Number of fire particles." +#~ msgstr "Antall brannpartikler." + +#~ msgid "Out" +#~ msgstr "Ut" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Retning for bretteåpning" + +#~ msgid "Rectangular" +#~ msgstr "Rektangulær" + +#~ msgid "Rotation Angle" +#~ msgstr "Rotasjonsvinkel" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Rotasjonsvinkel for animerte vindusbiter (i grader)." + +#~ msgid "Skewer" +#~ msgstr "Skjevhet" + +#~ msgid "Skewer Direction" +#~ msgstr "Skjevhetsretning" + +#~ msgid "Spacing between beams." +#~ msgstr "Mellomrom mellom stråler" + +#~ msgid "Tessellation Type" +#~ msgstr "Tesseleringstype" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Tesseleringstype for eksploderende vindusbiter." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Tesseleringstype for vindusbiter." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Antall millisekunder mellom hver gjengivelse av den intense animasjonen " +#~ "(f.eks, brenn, strål). Jo høyere antall, jo mer hakkete blir bevegelsene." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Det animerte vinduet vil bli delt i biter langs et rutenett. Spesifiser " +#~ "antall celler i rutenettet langs vindushøyden." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Det animerte vinduet vil bli delt i biter langs et rutenett. Spesifiser " +#~ "antall celler i rutenettet langs vindusbredden." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Det eksploderende vinduet vil bli delt i biter langs et rutenett. " +#~ "Spesifiser antall celler i rutenettet langs vindushøyden." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Det eksploderende vinduet vil bli delt i biter langs et rutenett. " +#~ "Spesifiser antall celler i rutenettet langs vindusbredden." + +#~ msgid "Thickness" +#~ msgstr "Tykkelse" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Tykkelse på animerte polygoner" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Tykkelse på eksploderende polygoner" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Tykkelse på animerte vindusbiter (i piksler)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Tykkelse på eksploderende vindusbiter (i piksler)." + +#~ msgid "Up-down" +#~ msgstr "Opp-ned" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Om vinduet skal fly til oppgavelinjen når det blir minimert med effekten " +#~ "fly." + +#~ msgid "Window Grid Height" +#~ msgstr "Høyde for rutenenett for vindu" + +#~ msgid "Window Grid Width" +#~ msgstr "Bredde for rutenett for vindu" + +#~ msgid "Window folding direction." +#~ msgstr "Bretteretning for vindu" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Vindustykkelse i piksler. Å sette denne til en større verdi enn 0 vil slå " +#~ "av skygge, utydeliggjør og speiling gjennom animasjonen." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (størrelse på bølgene i bretten) på de horisontale brettene, " +#~ "relativt til vindusbredde. Negative verdier bretter utover." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (størrelse på bølgene i bretten) på de rundede brettene, " +#~ "relativt til vindusbredde. Negative verdier bretter utover." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "Bølgeamplituden (bølgestørrelse), relativ til vindushøyden." + +#~ msgid "Brightness Decrease" +#~ msgstr "Redusert skarphet" + +#~ msgid "Brightness Increase" +#~ msgstr "Økt skarphet" + +#~ msgid "Brightness Step" +#~ msgstr "Steg for skarphet" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Skarphet og metning" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Justeringer for Skarphet og metning" + +#~ msgid "Brightness settings" +#~ msgstr "Innstillinger for skarphet" + +#~ msgid "Brightness values for windows" +#~ msgstr "Skarphetsverdier for vinduer" + +#~ msgid "Brightness window values" +#~ msgstr "Skarphetsverdier for vinduer" + +#~ msgid "Brightness windows" +#~ msgstr "Skarphet for vinduer" + +#~ msgid "Saturation Decrease" +#~ msgstr "Redusert metning" + +#~ msgid "Saturation Increase" +#~ msgstr "Økt metning" + +#~ msgid "Saturation Step" +#~ msgstr "Steg for metning" + +#~ msgid "Saturation settings" +#~ msgstr "Instillinger for metning" + +#~ msgid "Saturation values for windows" +#~ msgstr "Metningsverdier for vinduer" + +#~ msgid "Saturation window values" +#~ msgstr "Metningsverdier for vinduer" + +#~ msgid "Saturation windows" +#~ msgstr "Metning for vinduer" + +#~ msgid "Window specific" +#~ msgstr "Vindusspesifikk" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Vinduer som skal ha en endret skarphet som standard" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Vinduer som skal ha en endret metning som standard" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Lukk vinduer i Skaler" + #~ msgid "Animation Speed" #~ msgstr "Animasjonshastighet" @@ -4871,9 +5317,6 @@ #~ msgid "Misc. options" #~ msgstr "Diverse valg" -#~ msgid "Show minimized windows" -#~ msgstr "Vis minimerte vinduer" - #~ msgid "Show window title in scale mode" #~ msgstr "Vis vindustittel i Skaler-modus" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/nl.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/nl.po --- compiz-fusion-plugins-unsupported-0.7.6/po/nl.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/nl.po 2008-09-17 14:29:33.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: i18n\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" "PO-Revision-Date: 2008-01-31 15:42+0100\n" "Last-Translator: Elve \n" "Language-Team: Dutch \n" @@ -131,6 +131,12 @@ msgid "Brightness of faded windows" msgstr "Helderheid van opgerolde vensters" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -161,12 +167,6 @@ msgid "Window types that should be Opacified." msgstr "Venster typen die geopacificeerd moeten worden." -msgid "Airplane" -msgstr "Vliegtuig" - -msgid "Airplane Flying Path Length" -msgstr "Vliegtuig vlieg pad lengte" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -175,21 +175,6 @@ "wordt genegeerd. Als er geen effect is gekozen voor een gebeurtenis wordt er " "geen animatie toegepast." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplitude (grootte van de golven tijdens het vouwen) van de Horizontale " -"Vouwen relatief tot de venster breedte . Negatieve waarden vouwen naar " -"buiten." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitude (grootte van de golven tijdens het vouwen) van het gebogen vouwen " -"relatief tot de venster breedte. Negatieve waarden vouwen naar buiten." - msgid "Angle of window at the end of the animation." msgstr "Hoek van venster aan het eind van de animatie." @@ -199,9 +184,6 @@ msgid "Animation Time Step" msgstr "Animatie Tijd Stap" -msgid "Animation Time Step For Intense Effects" -msgstr "Animatie tijd stap voor intense effecten" - msgid "Animation duration in milliseconds for close effect." msgstr "Duur animatie (in milliseconden) voor sluit effect." @@ -220,51 +202,12 @@ msgid "Animations" msgstr "Animaties" -msgid "Automatic" -msgstr "Automatisch" - msgid "Away Angle" msgstr "Afwezig hoek" msgid "Away Position" msgstr "Afwezig positie" -msgid "Beam" -msgstr "Straal" - -msgid "Beam Color" -msgstr "Straal kleur" - -msgid "Beam Life" -msgstr "Straal levensduur" - -msgid "Beam Slowdown" -msgstr "Straal vertraging" - -msgid "Beam Spacing" -msgstr "Straal ruimte" - -msgid "Beam Up" -msgstr "Straal omhoog" - -msgid "Beam Width" -msgstr "Straal breedte" - -msgid "Beam color." -msgstr "Straal kleur." - -msgid "Beam life." -msgstr "Straal levensduur." - -msgid "Beam slowdown." -msgstr "Straal vertraging." - -msgid "Beam width." -msgstr "Straal breedte." - -msgid "Burn" -msgstr "Branden" - msgid "Close Animation" msgstr "Animatie bij sluiten" @@ -288,7 +231,8 @@ msgid "Curved Fold" msgstr "Gebogen vouwen" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Gebogen vouwen amplitude" msgid "Dodge" @@ -297,15 +241,6 @@ msgid "Dodge Gap Ratio" msgstr "Dodge open ruimte verhouding" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Valrichting dominostuk" - -msgid "Down" -msgstr "Omlaag" - msgid "Dream" msgstr "Droom" @@ -315,77 +250,22 @@ msgid "Effect Settings" msgstr "Effect instellingen" -msgid "Explode" -msgstr "Exploderen" - msgid "Fade" msgstr "Vervagen" -msgid "Falling direction for Domino pieces." -msgstr "Valrichting voor dominostukken." - -msgid "Fire" -msgstr "Vuur" - -msgid "Fire Particle Color" -msgstr "Kleur vuurdeeltje" - -msgid "Fire Particle Life" -msgstr "Vuur particle levensduur" - -msgid "Fire Particle Size" -msgstr "Grootte vuurdeeltje" - -msgid "Fire Particle Slowdown" -msgstr "Vertraging vuurdeeltje" - -msgid "Fire Smoke" -msgstr "Rook" - -msgid "Fire constant speed" -msgstr "Vuur constante snelheid" - -msgid "Fire direction" -msgstr "Richting vuur" - -msgid "Fire direction." -msgstr "Richting vuur." - -msgid "Fire particle color." -msgstr "Vuur partikel kleur." - -msgid "Fire particle life." -msgstr "Vuur partikel levensduur." - -msgid "Fire particle size." -msgstr "Vuur partikel grootte." - -msgid "Fire particle slowdown." -msgstr "Vuur partikel vertraging." - -msgid "Fire smoke." -msgstr "Vuur rook." - msgid "Fixed window interior during the Rollup animation." msgstr "Binnenkant venster vastgezet gedurende oprol animatie." -msgid "Fly to TaskBar on Minimize" -msgstr "Vlieg naar taakbalk bij minimaliseren" - msgid "Focus Animation" msgstr "Animatie bij focus" msgid "Focus Effect" msgstr "Focus effect" -msgid "Fold" -msgstr "Vouwen" - -msgid "Fold Direction" -msgstr "Richting vouwen" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Richting van openen van vouw voor stukken in Razr effect." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "" @@ -393,18 +273,11 @@ msgid "Glide 2" msgstr "" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Gebruik diverse kleuren voor het vuur effect, ook wel bekend als Mystiek " -"Vuur." - -msgid "Hexagonal" -msgstr "Zeshoekig" - msgid "Horizontal Folds" msgstr "Horizontaal vouwen" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Horizontaal vouwen amplitude" msgid "How spring-like the Sidekick animation should be." @@ -413,24 +286,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Hoe verend de Zoom animatie zijn moet." -msgid "In" -msgstr "In" - -msgid "In-out" -msgstr "In-uit" - -msgid "Leaf Spread" -msgstr "Blad spreiding" - -msgid "Left" -msgstr "Links" - -msgid "Left-right" -msgstr "Links-rechts" - -msgid "Length of airplane's flying path." -msgstr "Lengte van vliegtuig vliegpad." - msgid "Magic Lamp" msgstr "Magische lamp" @@ -452,9 +307,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Magische Lamp Open/Sluit bewegend einde" -msgid "Make fire effect duration be dependent on window height." -msgstr "Maak duur van Vuur effect afhankelijk van venster hoogte." - msgid "Minimize Animation" msgstr "Animatie bij minimaliseren" @@ -464,21 +316,12 @@ msgid "Minimize/Unminimize Only" msgstr "Minimaliseer/Maximaliseer enkel" -msgid "Movement direction(s) for window pieces." -msgstr "Bewegings richting(en) voor venster stukken." - msgid "None" msgstr "Geen" -msgid "Number Of Fire Particles" -msgstr "Aantal vuurdeeltjes" - msgid "Number of Horizontal Folds" msgstr "Aantal horizontale vouwen" -msgid "Number of fire particles." -msgstr "Aantal vuurdeeltjes." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -509,15 +352,13 @@ msgid "Options" msgstr "Optie's" -msgid "Out" -msgstr "Uit" - msgid "Pool" msgstr "Pool" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Pool van effecten om uit te kiezen als Willekeurig effect is geselecteerd. " "Klik reset om de volledige lijst te herstellen." @@ -531,36 +372,15 @@ msgid "Random Effects" msgstr "Willekeurige effecten" -msgid "Randomly Colored Fire" -msgstr "Wisselende kleuren Vuur" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "Verhouding van openingen tussen dodge start tijden naar duur focus." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Razr richting van vouw opening" - -msgid "Rectangular" -msgstr "Rechthoekig" - -msgid "Right" -msgstr "Rechts" - msgid "Roll Up" msgstr "Oprollen" msgid "Rollup Fixed Interior" msgstr "Oprollen met gefixeerde binnenkant" -msgid "Rotation Angle" -msgstr "Rotatie hoek" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Rotatie hoek van geanimeerde venster stukken." - msgid "Shade Animation" msgstr "Animatie bij oprollen" @@ -576,15 +396,6 @@ msgid "Sidekick Springiness" msgstr "Sidekick mate van vering" -msgid "Skewer" -msgstr "" - -msgid "Skewer Direction" -msgstr "" - -msgid "Spacing between beams." -msgstr "Ruimte tussen stralen." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -597,15 +408,6 @@ msgstr "" "Beginbreedte van open effect en eind breedte van sluit effect voor Vacuum." -msgid "Tessellation Type" -msgstr "" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -msgid "Tessellation type for window pieces." -msgstr "" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -613,28 +415,6 @@ "De tijd in milliseconden tussen elke rendering van de animatie. Hoe hoger de " "waarde, hoe schokkeriger de beweging wordt." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"De tijd in milliseconden tussen elke rendering van de intense animatie's " -"(bijv. Branden, Straal). Hoe hoger de waarde hoe schokkeriger de animatie." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"De geanimeerde vensters zullen worden opgesplitst lang een raster. " -"Specificeer het aantal rastervakken langs de hoogte van het venster." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"De geanimeerde vensters zullen worden opgesplitst lang een raster. " -"Specificeer het aantal rastervakken langs de breedte van het venster." - msgid "The animation effect shown when closing a window." msgstr "Getoonde animatie bij het sluiten van een venster." @@ -650,20 +430,6 @@ msgid "The animation effect shown when shading a window." msgstr "Getoonde animatie bij het verbergen van een venster." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Het exploderende venster zal worden opgesplitst in stukken langs een raster. " -"Specificeer het aantal raster vakken langs de hoogte van het venster." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Het exploderende venster zal worden opgesplitst in stukken langs een raster. " -"Specificeer het aantal raster vakken langs de breedte van het venster." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" "De maximum amplitude (grootte van de golven) die de Magische Lamp hebben zal." @@ -680,37 +446,12 @@ msgstr "" "Het aantal horizontale vouwen die ontstaan gedurende Horizontaal Vouwen." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" -"De golf amplitude (grootte van de golven) relatief tot de venster hoogte." - msgid "The width of the wave relative to the window height." msgstr "De breedte van de golf relatief tot de venster hoogte." msgid "The windows that will be animated." msgstr "De vensters die zullen worden geanimeerd." -msgid "Thickness" -msgstr "Dikte" - -msgid "Thickness of Animated Polygons" -msgstr "Dikte van geanimeerde polygonen" - -msgid "Thickness of Exploding Polygons" -msgstr "Dikte van exploderende polygonen" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Dikte van geanimeerde venster delen (in pixels)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Dikte van exploderende venster stukken (in pixels)." - -msgid "Up" -msgstr "Omhoog" - -msgid "Up-down" -msgstr "Op en neer" - msgid "Use various animations as window effects" msgstr "Gebruik diverse animatie's als venster effect" @@ -747,17 +488,17 @@ msgid "Wave" msgstr "Golf" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Golf amplitude" msgid "Wave Width" msgstr "Golf breedte" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Of het venster naar de taakbalk moet vliegen indien geminimaliseerd met " -"Vliegtuig effect." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -791,28 +532,12 @@ "Of het venster naar detaakbalk zou moeten zoomen indien geminimaliseerd met " "Horizontaal Vouwen effect." -msgid "Window Grid Height" -msgstr "Venster raster hoogte" - -msgid "Window Grid Width" -msgstr "Venster raster breedte" - -msgid "Window folding direction." -msgstr "Venster vouw richting." - msgid "Window that should animate with this effect when focused." msgstr "Venster dat moet worden geanimeerd met dit effect als het focus krijgt." msgid "Window that should animate with this effect when shaded." msgstr "Venster dat moet worden geanimeerd met dit effect tijdens het oprollen." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Venster dikte in pixels. Door deze instellingen hoger in te stellen dan 0 " -"wordt schaduw, vervaging en reflectie uitgeschakeld gedurende animatie." - msgid "Zoom" msgstr "Inzoomen" @@ -922,65 +647,12 @@ msgid "Y position" msgstr "Y positie" -msgid "Brightness Decrease" -msgstr "Helderheid verminderen" - -msgid "Brightness Increase" -msgstr "Helderheid verhogen" - -msgid "Brightness Step" -msgstr "Helderheid stap" - -msgid "Brightness and Saturation" -msgstr "Helderheid en verzadiging" - -msgid "Brightness and Saturation adjustments" -msgstr "Aanpassingen helderheid en verzadiging" - -msgid "Brightness settings" -msgstr "Helderheid instellingen" - -msgid "Brightness values for windows" -msgstr "Helderheid waarden voor vensters" - -msgid "Brightness window values" -msgstr "Helderheid venster waarden" - -msgid "Brightness windows" -msgstr "Helderheid vensters" - -msgid "General" -msgstr "Algemeen" - -msgid "Saturation Decrease" -msgstr "Verzadiging verlagen" - -msgid "Saturation Increase" -msgstr "Verzadiging verhogen" - -msgid "Saturation Step" -msgstr "Verzadiging stap" - -msgid "Saturation settings" -msgstr "Verzadiging instellingen" - -msgid "Saturation values for windows" -msgstr "Verzadiging waarden voor vensters" - -msgid "Saturation window values" -msgstr "Verzadiging venster waarden" - -msgid "Saturation windows" -msgstr "Verzadiging vensters" - -msgid "Window specific" -msgstr "Venster specifiek" - -msgid "Windows that should have a different brightness by default" -msgstr "Vensters die standaard afwijkende helderheid moeten hebben" +#, fuzzy +msgid "Bicubic filter" +msgstr "Schakel filter" -msgid "Windows that should have a different saturation by default" -msgstr "Vensters die standaard afwijkende verzadiging moeten hebben" +msgid "Bicubic texture filtering" +msgstr "" msgid "Color filter" msgstr "Kleur filter" @@ -1074,6 +746,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Venster beheerder commando regel. HIER NIET COMPIZ INVULLEN!!!" +msgid "Above" +msgstr "Boven" + msgid "Adjust bottom face image to rotation" msgstr "Onderzijde afbeelding bijstellen op rotatie" @@ -1095,6 +770,19 @@ msgid "Appearance" msgstr "Verschijning" +#, fuzzy +msgid "Aspect ratio" +msgstr "Expo modus aspect ratio" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Auto zoom" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Auto zoom alleen bij roteren met muis" + msgid "Behaviour" msgstr "Gedrag" @@ -1130,18 +818,62 @@ msgid "Color of bottom face of the cube" msgstr "Kleur van de onderzijde van de kubus" +msgid "Color of the ground (far)." +msgstr "Kleur van de grond (ver)." + +msgid "Color of the ground (near)." +msgstr "Kleur van de grond (dichtij)." + msgid "Color of top face of the cube" msgstr "Kleur van de bovenzijde van de kubus" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Compiz kubus reflectie " + msgid "Cube Bottom Color" msgstr "Kleur onderkant kubus" -msgid "Cube Caps" -msgstr "Kleur deksels" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Reflectie voor decoratie's" msgid "Cube Top Color" msgstr "Kubus bovenkant kleur" +#, fuzzy +msgid "Cube caps" +msgstr "Kleur deksels" + +#, fuzzy +msgid "Cylinder" +msgstr "Wissen" + +#, fuzzy +msgid "Deform caps" +msgstr "Duur" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Auto zoom alleen bij roteren met muis" + +#, fuzzy +msgid "Deformation" +msgstr "Duur" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "Duur" + +msgid "Distance" +msgstr "Afstand" + msgid "Draw bottom face" msgstr "Teken onderzijde" @@ -1154,12 +886,38 @@ msgid "Draw top face of the cube" msgstr "Teken bovenzijde van de kubus" +#, fuzzy +msgid "Enabled" +msgstr "Inschakelen" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Compiz kubus reflectie " + msgid "Go back to previous image for bottom face of the cube" msgstr "Ga terug naar vorige afbeelding voor onderzijde van de kubus" msgid "Go back to previous image for top face of the cube" msgstr "Ga terug naar vorige afbeelding voor bovenzijde kubus" +msgid "Ground color(far)" +msgstr "Grond kleur (ver)" + +msgid "Ground color(near)" +msgstr "Grond kleur (dichtbij)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensiteit" + +msgid "Jumpy" +msgstr "Springerig" + +msgid "Jumpy reflection" +msgstr "Springerige reflectie" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1171,6 +929,22 @@ "Lijst van PNG en SVG bestanden die afgebeeld moeten worden op de bovenzijde " "van de kubus" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Expo modus aspect ratio" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Onderzijde afbeelding bijstellen op rotatie" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Expo modus aspect ratio" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Top zijde afbeelding bijstellen op rotatie" + msgid "Next bottom image" msgstr "Volgende afbeelding onderzijde" @@ -1183,8 +957,23 @@ msgid "Prev top image" msgstr "Vorige afbeelding onderzijde" -msgid "Render images on top and bottom of the cube" -msgstr "Teken afbeeldingen op boven- en onderzijde" +msgid "Reflection" +msgstr "Reflectie" + +msgid "Reflection ground size" +msgstr "Reflectie grond grootte" + +msgid "Reflection ground size." +msgstr "Reflectie grond grootte." + +msgid "Reflection intensity" +msgstr "Reflectie intensiteit" + +msgid "Reflection mode" +msgstr "Reflectie modus" + +msgid "Reflection mode." +msgstr "Reflectie modus." msgid "Scale bottom image" msgstr "Schaal afbeelding onderzijde" @@ -1198,69 +987,36 @@ msgid "Scale top image" msgstr "Schaal afbeelding bovenzijde" +#, fuzzy +msgid "Sphere" +msgstr "Snelheid" + msgid "Top image files" msgstr "Afbeelding bovenzijde bestanden" -msgid "Above" -msgstr "Boven" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Auto zoom" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Automatisch uitzoomen alleen bij muis rotatie." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Auto zoom alleen bij roteren met muis" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Automatisch uitzoomen om de kubus in het beeld te laten passen." -msgid "Color of the ground (far)." -msgstr "Kleur van de grond (ver)." +#, fuzzy +msgid "Cube Caps" +msgstr "Kleur deksels" -msgid "Color of the ground (near)." -msgstr "Kleur van de grond (dichtij)." +msgid "Render images on top and bottom of the cube" +msgstr "Teken afbeeldingen op boven- en onderzijde" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz kubus reflectie " +msgstr "Kubus reflectie" msgid "Cube Reflection" msgstr "Kubus reflectie" -msgid "Distance" -msgstr "Afstand" - -msgid "Ground color(far)" -msgstr "Grond kleur (ver)" - -msgid "Ground color(near)" -msgstr "Grond kleur (dichtbij)" - -msgid "Intensity" -msgstr "Intensiteit" - -msgid "Jumpy" -msgstr "Springerig" - -msgid "Jumpy reflection" -msgstr "Springerige reflectie" - -msgid "Reflection ground size" -msgstr "Reflectie grond grootte" - -msgid "Reflection ground size." -msgstr "Reflectie grond grootte." - -msgid "Reflection intensity" -msgstr "Reflectie intensiteit" - -msgid "Reflection mode" -msgstr "Reflectie modus" - -msgid "Reflection mode." -msgstr "Reflectie modus." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Automatisch uitzoomen alleen bij muis rotatie." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Automatisch uitzoomen om de kubus in het beeld te laten passen." - msgid "Animation used when switching to expo mode" msgstr "Animatie die wordt gebruikt wanneer geschakeld wordt naar expo mode" @@ -1285,10 +1041,6 @@ msgstr "Bewegingsvervaging sterkte." #, fuzzy -msgid "Deformation" -msgstr "Duur" - -#, fuzzy msgid "Deformation of the expo wall" msgstr "Afstand van expo muur" @@ -1380,9 +1132,6 @@ msgid "Previous viewport" msgstr "Vorige viewport" -msgid "Reflection" -msgstr "Reflectie" - msgid "Reflection Scale" msgstr "Reflectie schaal" @@ -1494,6 +1243,10 @@ msgid "Center the mouse" msgstr "Centreer de muis" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Schaal de muis aanwijzer" + msgid "Enable focus tracking" msgstr "Focus tracking inschakelen" @@ -1556,19 +1309,13 @@ msgstr "" "Verbergt de originele muis aanwijzer tijdens inzoomen en schalen van de muis" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Hoe vaak de muis positie opvragen, in miliseconden. Verminder dit om " -"schokkerige beweging te verminderen." +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Minimum schaal factor" msgid "Mouse Behaviour" msgstr "Muis gedrag" -msgid "Mouse Poll Interval" -msgstr "Muis opvraag interval" - msgid "Mouse Restrain Margin" msgstr "Muis inperking marge" @@ -1656,12 +1403,21 @@ msgid "Speed" msgstr "Snelheid" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Schaal de muis aanwijzer" + msgid "Sync Mouse" msgstr "Synchroniseer muis" msgid "Target Focused Window on Specific level" msgstr "Zet venster met focus als doel op specifiek niveau" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" "De grootte van de marge om toe te voegen als geprobeerd wordt de muis te " @@ -1681,9 +1437,23 @@ msgid "Use linear filter when zoomed in" msgstr "Gebruik lineair filter zodra ingezoomd" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Zoom gebied beweging" +#, fuzzy +msgid "Zoom Box" +msgstr "Inzoomen" + msgid "Zoom In" msgstr "Inzoomen" @@ -1711,6 +1481,9 @@ msgid "Zoom factor" msgstr "Zoom factor" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "Zoom in/uit met deze factor. Hogere waarde betekent sneller zoomen." @@ -1764,6 +1537,13 @@ msgid "Toggle window fake ARGB." msgstr "Wissel venster nep ARGB." +#, fuzzy +msgid "Add Particle" +msgstr "Vuur particle levensduur" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Achtergrond helderheid" @@ -1773,11 +1553,40 @@ msgid "Clear" msgstr "Wissen" -msgid "Clear (button)" -msgstr "Wissen (knop)" +msgid "Clear (button)" +msgstr "Wissen (knop)" + +msgid "Clear (key)" +msgstr "Wissen (toets)" + +msgid "Fire Particle Color" +msgstr "Kleur vuurdeeltje" + +msgid "Fire Particle Life" +msgstr "Vuur particle levensduur" + +msgid "Fire Particle Size" +msgstr "Grootte vuurdeeltje" + +msgid "Fire Particle Slowdown" +msgstr "Vertraging vuurdeeltje" + +msgid "Fire particle color." +msgstr "Vuur partikel kleur." + +msgid "Fire particle life." +msgstr "Vuur partikel levensduur." + +msgid "Fire particle size." +msgstr "Vuur partikel grootte." + +msgid "Fire particle slowdown." +msgstr "Vuur partikel vertraging." -msgid "Clear (key)" -msgstr "Wissen (toets)" +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Gebruik diverse kleuren voor het vuur effect, ook wel bekend als Mystiek " +"Vuur." msgid "Initiate (button)" msgstr "Initiëer (knop)" @@ -1800,6 +1609,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Teken vuur of andere particles op het scherm" +msgid "Randomly Colored Fire" +msgstr "Wisselende kleuren Vuur" + msgid "Cube Gears" msgstr "Kubus Tandwielen" @@ -1898,6 +1710,9 @@ msgid "Font Size" msgstr "Letter grootte" +msgid "General" +msgstr "Algemeen" + msgid "Glass" msgstr "Glas" @@ -2516,9 +2331,19 @@ msgid "Start gesture" msgstr "Begin muis beweging" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Hoe vaak de muis positie opvragen, in miliseconden. Verminder dit om " +"schokkerige beweging te verminderen." + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "Muis opvraag interval" + #, fuzzy msgid "Mouse position polling" msgstr "Muis schuiven" @@ -3263,8 +3088,13 @@ msgid "Background color of the window title" msgstr "Achtergrond kleur van de venster titel" -msgid "Close Windows In Scale" -msgstr "Sluit venster in Schalen" +#, fuzzy +msgid "Close Window" +msgstr "Tegelen van vensters" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Sluit venster in Schaal modus" msgid "Close windows while in scale mode" msgstr "Sluit venster in Schaal modus" @@ -3273,9 +3103,18 @@ msgstr "" "Kleur gebruikt om het venster op te laten lichten waaroverheen gezweefd wordt" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Teken venster oplichten" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Font kleur van de venster titel" @@ -3293,6 +3132,12 @@ msgstr "" "Laat het venster waar over heen gezweefd wordt oplichten met de gegeven kleur" +#, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"Maak vensters makkelijk zichtbaar door er met de muis overheen te zweven" + msgid "No display" msgstr "Geen display" @@ -3302,6 +3147,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organisch - EXPERIMENTEEL" +#, fuzzy +msgid "Pull Window" +msgstr "Plaats venster" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Sluit venster in Schaal modus" + msgid "Scale Addons" msgstr "Schaal addons" @@ -3326,6 +3179,10 @@ msgid "Window Layout Mode" msgstr "Venster uitleg modus" +#, fuzzy +msgid "Window Pull" +msgstr "Breedte regels" + msgid "Window Title" msgstr "Venster titel" @@ -3335,10 +3192,12 @@ msgid "Window title display in scale mode" msgstr "Toon venster titel in schaal modus" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "Zoom vensters in Schaal" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "Toon vensters terwijl in Schaal modus" msgid "Filter Case Insensitive" @@ -3598,18 +3457,30 @@ msgid "Direction of window movement" msgstr "Richting van venster beweging" +msgid "Down" +msgstr "Omlaag" + +msgid "Left" +msgstr "Links" + msgid "Left/Right" msgstr "Links/Rechts" msgid "Movement Direction" msgstr "Bewegings richting" +msgid "Right" +msgstr "Rechts" + msgid "Show desktop" msgstr "Toon bureaublad" msgid "To Corners" msgstr "Naar de hoeken" +msgid "Up" +msgstr "Omhoog" + msgid "Up/Down" msgstr "Op/Neer" @@ -3862,104 +3733,362 @@ msgid "Screen Depth" msgstr "Scherm diepte" -msgid "Select snow flake movement direction" -msgstr "Selecteer sneeuw vlok bewegings richting" +msgid "Select snow flake movement direction" +msgstr "Selecteer sneeuw vlok bewegings richting" + +msgid "Settings" +msgstr "Instellingen" + +msgid "Size Of Snowflakes" +msgstr "Grootte van sneeuwvlokken" + +msgid "Size of snowflakes" +msgstr "Grootte sneeuwvlokken" + +msgid "Snow" +msgstr "Sneeuw" + +msgid "Snow Direction" +msgstr "Sneeuw richting" + +msgid "Snow Over Windows" +msgstr "Sneeuw over vensters" + +msgid "Snow Speed" +msgstr "Sneeuw vensters" + +msgid "Snow Textures" +msgstr "Sneeuw texturen" + +msgid "Snow Toggle" +msgstr "Sneeuw schakelen" + +msgid "Snow for Compiz" +msgstr "Sneeuw voor Compiz" + +msgid "Snow is drawn above windows" +msgstr "Sneeuw wordt getekend boven vensters" + +msgid "Snow textures" +msgstr "Sneeuw texturen" + +msgid "Snow toggle key" +msgstr "Sneeuw schakel toets" + +msgid "Speed of falling snow" +msgstr "Snelheid van vallende sneeuw" + +msgid "Textures" +msgstr "Texturen" + +msgid "Top to Bottom" +msgstr "Boven naar beneden" + +msgid "Update Delay" +msgstr "Update vertraging" + +msgid "A simple splash plugin" +msgstr "Een simpele splash plugin" + +msgid "Background File" +msgstr "Achtergrond bestand" + +msgid "Background brightness." +msgstr "Achtergrond helderheid." + +msgid "Background image File." +msgstr "Achtergrond afbeeldings bestand." + +msgid "Background saturation." +msgstr "Achtergrond verzadiging." + +msgid "Display In/Out Time." +msgstr "Display in/uit tijd." + +msgid "Display Time" +msgstr "Display tijd" + +msgid "Images" +msgstr "Afbeeldingen" + +msgid "Initiate Splash" +msgstr "Initiëer Splash" + +msgid "Logo File" +msgstr "Logo bestand" + +msgid "Logo image File." +msgstr "Logo afbeeldingsbestand." + +msgid "Show on first start" +msgstr "Toon bij eerste start" + +msgid "Show splash on first start." +msgstr "Toon splash bij eerste start." + +msgid "Splash" +msgstr "Splash" + +msgid "Start Splash." +msgstr "Start Splash." + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Mate van opacificeer (in procent) voor vensters in de ring welke niet " +"geselecteerd zijn" + +#, fuzzy +msgid "Behavior" +msgstr "Gedrag" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Maak de achtergrond donker als de ring getoond wordt" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Thumbnail breedte" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Activeer een gegeven venster" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "De venstertitel in vet lettertype." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Ring wisselaar" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Kleur 1 van de gradatie achtergrond." + +#, fuzzy +msgid "Windows" +msgstr "3D vensters" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Vensters die moeten worden getoond in de schuif wisselaar" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Achtergrond helderheid gedurende tekenen" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Toon programma niet in pager" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Plaats op viewport" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "Plaats middenpunt" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Vul kleur voor de selectie rechthoek" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Mipmaps genereren indien mogelijk voor hogere kwaliteit schalen." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Oplicht kleur" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Oplicht kleur" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Oplicht kleur" + +#, fuzzy +msgid "Icon" +msgstr "In" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Venster oplichten" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "" +"Kleur gebruikt om het venster op te laten lichten waaroverheen gezweefd wordt" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Volgende venster" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Volgende venster (Alle werkruitmen)" -msgid "Settings" -msgstr "Instellingen" +#, fuzzy +msgid "Next window (Group)" +msgstr "Volgende venster (groep)" -msgid "Size Of Snowflakes" -msgstr "Grootte van sneeuwvlokken" +#, fuzzy +msgid "Next window (No popup)" +msgstr "Volgende venster (groep)" -msgid "Size of snowflakes" -msgstr "Grootte sneeuwvlokken" +msgid "Original Window Position" +msgstr "" -msgid "Snow" -msgstr "Sneeuw" +#, fuzzy +msgid "Popup Window Delay" +msgstr "Groepeer venster match" -msgid "Snow Direction" -msgstr "Sneeuw richting" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Toon wisselaar indien niet zichtbaar en selecteer vogende venster." -msgid "Snow Over Windows" -msgstr "Sneeuw over vensters" +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Toon wisselaar indien niet zichtbaar en toon volgende venster van de huidige " +"applicatie." -msgid "Snow Speed" -msgstr "Sneeuw vensters" +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Toon wisselaar indien niet zichtbaar en selecteer volgende venster uit alle " +"vensters." -msgid "Snow Textures" -msgstr "Sneeuw texturen" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Toon venster indien niet zichtbaar en selecteer vorige venster." -msgid "Snow Toggle" -msgstr "Sneeuw schakelen" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Toon wisselaar indien niet zichtbaar en selecteer vorige venster van de " +"huidige applicatie." -msgid "Snow for Compiz" -msgstr "Sneeuw voor Compiz" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Toon wisselaar indien niet zichtbaar en selecteer vorige venster uit alle " +"vensters." -msgid "Snow is drawn above windows" -msgstr "Sneeuw wordt getekend boven vensters" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Sneeuw texturen" +#, fuzzy +msgid "Prev window" +msgstr "Vorige venster" -msgid "Snow toggle key" -msgstr "Sneeuw schakel toets" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Vorige venster (Alle werkruimten)" -msgid "Speed of falling snow" -msgstr "Snelheid van vallende sneeuw" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Vorige venster (groep)" -msgid "Textures" -msgstr "Texturen" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Vorige venster (groep)" -msgid "Top to Bottom" -msgstr "Boven naar beneden" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Update vertraging" +#, fuzzy +msgid "Select next panel type window." +msgstr "Selecteert waar de venster titel geplaatst moet worden." -msgid "A simple splash plugin" -msgstr "Een simpele splash plugin" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Achtergrond bestand" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Selecteert waar de venster titel geplaatst moet worden." -msgid "Background brightness." -msgstr "Achtergrond helderheid." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Achtergrond afbeeldings bestand." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Venster oplichten" -msgid "Background saturation." -msgstr "Achtergrond verzadiging." +#, fuzzy +msgid "Show Rectangle" +msgstr "Rechthoekig" -msgid "Display In/Out Time." -msgstr "Display in/uit tijd." +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Toon venster titel in thumbnail." -msgid "Display Time" -msgstr "Display tijd" +msgid "Show minimized windows" +msgstr "Toon geminimaliseerde vensters" -msgid "Images" -msgstr "Afbeeldingen" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Initiëer Splash" +#, fuzzy +msgid "Switcher speed" +msgstr "Wisselaar modus" -msgid "Logo File" -msgstr "Logo bestand" +#, fuzzy +msgid "Switcher timestep" +msgstr "Schuif tijdstap" -msgid "Logo image File." -msgstr "Logo afbeeldingsbestand." +#, fuzzy +msgid "Switcher windows" +msgstr "Gefilterde vensters" -msgid "Show on first start" -msgstr "Toon bij eerste start" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Taakbalk" -msgid "Show splash on first start." -msgstr "Toon splash bij eerste start." +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Splash" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Start Splash." +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Vensters die moeten worden getoond in de schuif wisselaar" msgid "Render text to texture" msgstr "Render tekst naar een tekstuur" @@ -4656,10 +4785,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "Plaats middenpunt" - -#, fuzzy msgid "Color 1" msgstr "Kleuren" @@ -4799,6 +4924,14 @@ msgid "Matches" msgstr "" +#, fuzzy +msgid "Maximized" +msgstr "Toon geminimaliseerd" + +#, fuzzy +msgid "Maximized windows" +msgstr "Niet maximaliseerbare vensters" + msgid "No ARGB visuals" msgstr "Geen ARGB visuals" @@ -4878,6 +5011,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "fix voor AIGLX fragment parameter " +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Fix voor Firefox menu" @@ -4921,6 +5057,9 @@ "Maak \"op alle bureaubladen\" vensters sticky.Sticky vensters zijn zichtbaar " "op alle viewports." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "Maak Wine en legacy vensters op de juiste manier volledig scherm." @@ -4945,6 +5084,307 @@ msgid "Workarounds" msgstr "Workarounds" +#~ msgid "Airplane" +#~ msgstr "Vliegtuig" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Vliegtuig vlieg pad lengte" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Animatie tijd stap voor intense effecten" + +#~ msgid "Automatic" +#~ msgstr "Automatisch" + +#~ msgid "Beam" +#~ msgstr "Straal" + +#~ msgid "Beam Color" +#~ msgstr "Straal kleur" + +#~ msgid "Beam Life" +#~ msgstr "Straal levensduur" + +#~ msgid "Beam Slowdown" +#~ msgstr "Straal vertraging" + +#~ msgid "Beam Spacing" +#~ msgstr "Straal ruimte" + +#~ msgid "Beam Up" +#~ msgstr "Straal omhoog" + +#~ msgid "Beam Width" +#~ msgstr "Straal breedte" + +#~ msgid "Beam color." +#~ msgstr "Straal kleur." + +#~ msgid "Beam life." +#~ msgstr "Straal levensduur." + +#~ msgid "Beam slowdown." +#~ msgstr "Straal vertraging." + +#~ msgid "Beam width." +#~ msgstr "Straal breedte." + +#~ msgid "Burn" +#~ msgstr "Branden" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Valrichting dominostuk" + +#~ msgid "Explode" +#~ msgstr "Exploderen" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Valrichting voor dominostukken." + +#~ msgid "Fire" +#~ msgstr "Vuur" + +#~ msgid "Fire Smoke" +#~ msgstr "Rook" + +#~ msgid "Fire constant speed" +#~ msgstr "Vuur constante snelheid" + +#~ msgid "Fire direction" +#~ msgstr "Richting vuur" + +#~ msgid "Fire direction." +#~ msgstr "Richting vuur." + +#~ msgid "Fire smoke." +#~ msgstr "Vuur rook." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Vlieg naar taakbalk bij minimaliseren" + +#~ msgid "Fold" +#~ msgstr "Vouwen" + +#~ msgid "Fold Direction" +#~ msgstr "Richting vouwen" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Richting van openen van vouw voor stukken in Razr effect." + +#~ msgid "Hexagonal" +#~ msgstr "Zeshoekig" + +#~ msgid "In" +#~ msgstr "In" + +#~ msgid "In-out" +#~ msgstr "In-uit" + +#~ msgid "Leaf Spread" +#~ msgstr "Blad spreiding" + +#~ msgid "Left-right" +#~ msgstr "Links-rechts" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Lengte van vliegtuig vliegpad." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Maak duur van Vuur effect afhankelijk van venster hoogte." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Bewegings richting(en) voor venster stukken." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Aantal vuurdeeltjes" + +#~ msgid "Number of fire particles." +#~ msgstr "Aantal vuurdeeltjes." + +#~ msgid "Out" +#~ msgstr "Uit" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Razr richting van vouw opening" + +#~ msgid "Rectangular" +#~ msgstr "Rechthoekig" + +#~ msgid "Rotation Angle" +#~ msgstr "Rotatie hoek" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Rotatie hoek van geanimeerde venster stukken." + +#~ msgid "Spacing between beams." +#~ msgstr "Ruimte tussen stralen." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "De tijd in milliseconden tussen elke rendering van de intense animatie's " +#~ "(bijv. Branden, Straal). Hoe hoger de waarde hoe schokkeriger de animatie." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "De geanimeerde vensters zullen worden opgesplitst lang een raster. " +#~ "Specificeer het aantal rastervakken langs de hoogte van het venster." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "De geanimeerde vensters zullen worden opgesplitst lang een raster. " +#~ "Specificeer het aantal rastervakken langs de breedte van het venster." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Het exploderende venster zal worden opgesplitst in stukken langs een " +#~ "raster. Specificeer het aantal raster vakken langs de hoogte van het " +#~ "venster." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Het exploderende venster zal worden opgesplitst in stukken langs een " +#~ "raster. Specificeer het aantal raster vakken langs de breedte van het " +#~ "venster." + +#~ msgid "Thickness" +#~ msgstr "Dikte" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Dikte van geanimeerde polygonen" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Dikte van exploderende polygonen" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Dikte van geanimeerde venster delen (in pixels)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Dikte van exploderende venster stukken (in pixels)." + +#~ msgid "Up-down" +#~ msgstr "Op en neer" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Of het venster naar de taakbalk moet vliegen indien geminimaliseerd met " +#~ "Vliegtuig effect." + +#~ msgid "Window Grid Height" +#~ msgstr "Venster raster hoogte" + +#~ msgid "Window Grid Width" +#~ msgstr "Venster raster breedte" + +#~ msgid "Window folding direction." +#~ msgstr "Venster vouw richting." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Venster dikte in pixels. Door deze instellingen hoger in te stellen dan 0 " +#~ "wordt schaduw, vervaging en reflectie uitgeschakeld gedurende animatie." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (grootte van de golven tijdens het vouwen) van de Horizontale " +#~ "Vouwen relatief tot de venster breedte . Negatieve waarden vouwen naar " +#~ "buiten." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (grootte van de golven tijdens het vouwen) van het gebogen " +#~ "vouwen relatief tot de venster breedte. Negatieve waarden vouwen naar " +#~ "buiten." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "" +#~ "De golf amplitude (grootte van de golven) relatief tot de venster hoogte." + +#~ msgid "Brightness Decrease" +#~ msgstr "Helderheid verminderen" + +#~ msgid "Brightness Increase" +#~ msgstr "Helderheid verhogen" + +#~ msgid "Brightness Step" +#~ msgstr "Helderheid stap" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Helderheid en verzadiging" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Aanpassingen helderheid en verzadiging" + +#~ msgid "Brightness settings" +#~ msgstr "Helderheid instellingen" + +#~ msgid "Brightness values for windows" +#~ msgstr "Helderheid waarden voor vensters" + +#~ msgid "Brightness window values" +#~ msgstr "Helderheid venster waarden" + +#~ msgid "Brightness windows" +#~ msgstr "Helderheid vensters" + +#~ msgid "Saturation Decrease" +#~ msgstr "Verzadiging verlagen" + +#~ msgid "Saturation Increase" +#~ msgstr "Verzadiging verhogen" + +#~ msgid "Saturation Step" +#~ msgstr "Verzadiging stap" + +#~ msgid "Saturation settings" +#~ msgstr "Verzadiging instellingen" + +#~ msgid "Saturation values for windows" +#~ msgstr "Verzadiging waarden voor vensters" + +#~ msgid "Saturation window values" +#~ msgstr "Verzadiging venster waarden" + +#~ msgid "Saturation windows" +#~ msgstr "Verzadiging vensters" + +#~ msgid "Window specific" +#~ msgstr "Venster specifiek" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Vensters die standaard afwijkende helderheid moeten hebben" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Vensters die standaard afwijkende verzadiging moeten hebben" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Sluit venster in Schalen" + #~ msgid "Animation Speed" #~ msgstr "Animatie snelheid" @@ -4983,8 +5423,5 @@ #~ msgid "Misc. options" #~ msgstr "Diverse optie's" -#~ msgid "Show minimized windows" -#~ msgstr "Toon geminimaliseerde vensters" - #~ msgid "Tile or Stretch" #~ msgstr "Tegelen of uitrekken" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/pl.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/pl.po --- compiz-fusion-plugins-unsupported-0.7.6/po/pl.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/pl.po 2008-09-17 14:29:33.000000000 +0100 @@ -11,9 +11,9 @@ msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" -"PO-Revision-Date: 2008-04-23 03:16+0200\n" -"Last-Translator: Jarek Sobolewski \n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" +"PO-Revision-Date: 2008-06-19 15:21+0200\n" +"Last-Translator: Michal Kaluzniak \n" "Language-Team: pl_PL \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,6 +118,12 @@ msgid "Brightness of faded windows" msgstr "Jasność zanikających okien" +msgid "Enable ADD Helper on start" +msgstr "Uruchom ADD Helper przy starcie" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Uruchom ADD Helper przy pierwszym załadowaniu" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -147,12 +153,6 @@ msgid "Window types that should be Opacified." msgstr "Typy okien, które powinny być przezroczyste." -msgid "Airplane" -msgstr "Samolot" - -msgid "Airplane Flying Path Length" -msgstr "Długość lotu samolotu" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -160,20 +160,6 @@ "Wszystkie efekty są wybierane losowo, ignorując wybrany efekt. Jeśli wybrane " "jest 'Brak' dla zdarzenia, to zdarzenie nie będzie animowane." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplituda (wielkość fali podczas składania) Poziomych Składań związanych z " -"szerokością okna. Negatywne wartości powodują składanie się na zewnątrz." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplituda (wielkość fali podczas składania) zakrzywionego zginania związana " -"z szerokością okna. Negatywne wartości powodują składanie na zewnątrz." - msgid "Angle of window at the end of the animation." msgstr "Kąt okna na końcu animacji" @@ -183,9 +169,6 @@ msgid "Animation Time Step" msgstr "Interwał czasowy animacji" -msgid "Animation Time Step For Intense Effects" -msgstr "Interwał czasowy animacji dla intensywnych efektów" - msgid "Animation duration in milliseconds for close effect." msgstr "Długość trwania animacji w milisekundach dla efektu zamykania." @@ -205,57 +188,12 @@ msgid "Animations" msgstr "Animacje" -msgid "Automatic" -msgstr "Automatyczny" - -#, fuzzy msgid "Away Angle" msgstr "Kąt oddalenia" -#, fuzzy msgid "Away Position" msgstr "Pozycja w oddaleniu" -msgid "Beam" -msgstr "Promień" - -msgid "Beam Color" -msgstr "Kolor promienia" - -msgid "Beam Life" -msgstr "Długość trwania (\"życia\") jednego promienia" - -#, fuzzy -msgid "Beam Slowdown" -msgstr "Spowolnienie szybkości cząsteczki ognia" - -msgid "Beam Spacing" -msgstr "Odległość między promieniami" - -msgid "Beam Up" -msgstr "" - -#, fuzzy -msgid "Beam Width" -msgstr "Grubość promienia" - -msgid "Beam color." -msgstr "Kolor promienia." - -msgid "Beam life." -msgstr "Długość trwania (\"życia\") promienia" - -#, fuzzy -msgid "Beam slowdown." -msgstr "Spowolnienie szybkości cząsteczki ognia." - -#, fuzzy -msgid "Beam width." -msgstr "Grubość promienia" - -msgid "Burn" -msgstr "Płomień" - msgid "Close Animation" msgstr "Animacja zamykania" @@ -279,7 +217,8 @@ msgid "Curved Fold" msgstr "Zakrzywione składanie" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Amplituda zakrzywionego składania" msgid "Dodge" @@ -288,15 +227,6 @@ msgid "Dodge Gap Ratio" msgstr "Odległość między oknami podczas animacji uskakiwania" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Kierunek spadania kostek domina" - -msgid "Down" -msgstr "W dół" - msgid "Dream" msgstr "Sen" @@ -306,124 +236,42 @@ msgid "Effect Settings" msgstr "Ustawienia efektu" -msgid "Explode" -msgstr "Eksplozja" - msgid "Fade" msgstr "Zanikanie" -msgid "Falling direction for Domino pieces." -msgstr "Kierunek spadania klocków domina." - -msgid "Fire" -msgstr "Ogień" - -msgid "Fire Particle Color" -msgstr "Kolor cząsteczki ognia" - -msgid "Fire Particle Life" -msgstr "Czas życia cząsteczki ognia" - -msgid "Fire Particle Size" -msgstr "Wielkość cząsteczki ognia" - -msgid "Fire Particle Slowdown" -msgstr "Spowolnienie szybkości cząsteczki ognia" - -msgid "Fire Smoke" -msgstr "Dym z ognia" - -msgid "Fire constant speed" -msgstr "Stała prędkość ognia" - -msgid "Fire direction" -msgstr "Kierunek ognia" - -msgid "Fire direction." -msgstr "Kierunek ognia" - -msgid "Fire particle color." -msgstr "Kolor cząsteczki ognia." - -msgid "Fire particle life." -msgstr "Czas życia cząsteczki ognia." - -msgid "Fire particle size." -msgstr "Rozmiar cząsteczki ognia." - -msgid "Fire particle slowdown." -msgstr "Spowolnienie szybkości cząsteczki ognia." - -msgid "Fire smoke." -msgstr "Dym z ognia." - msgid "Fixed window interior during the Rollup animation." msgstr "Nieruchome wnętrze okna podczas animacji zwijania do góry" -msgid "Fly to TaskBar on Minimize" -msgstr "Leć do paska zadań podczas minimalizacji" - -#, fuzzy msgid "Focus Animation" -msgstr "Animacja skupienia" +msgstr "Animacja wyboru" msgid "Focus Effect" -msgstr "Efekt skupienia" - -msgid "Fold" -msgstr "Zginanie" - -msgid "Fold Direction" -msgstr "Kierunek składania" +msgstr "Efekt wybierania" -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Kierunek otwierania zagięcia dla części w efekcie Razr" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" -#, fuzzy msgid "Glide 1" -msgstr "Szybowanie 1" +msgstr "Ślizg 1" -#, fuzzy msgid "Glide 2" -msgstr "Szybowanie 2" - -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Losowy kolor efektu ognia, znany również jako Mistyczny Płomień." - -msgid "Hexagonal" -msgstr "Sześciokątny" +msgstr "Ślizg 2" msgid "Horizontal Folds" msgstr "Poziome zginanie" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Amplituda poziomych zginań" msgid "How spring-like the Sidekick animation should be." -msgstr "Jak bardzo sprężysta ma być animacja Sidekick." +msgstr "Jak bardzo sprężyste ma być Kopnięcie" msgid "How spring-like the Zoom animation should be." msgstr "Jak bardzo sprężysta ma być być animacja zbliżenia." -msgid "In" -msgstr "Do środka" - -msgid "In-out" -msgstr "Do środka i na zewnątrz" - -msgid "Leaf Spread" -msgstr "Efekt rozpościerania liści" - -msgid "Left" -msgstr "W lewo" - -#, fuzzy -msgid "Left-right" -msgstr "W lewo i w prawo" - -msgid "Length of airplane's flying path." -msgstr "Długośc drogi lotu samolotu" - msgid "Magic Lamp" msgstr "Magiczna lampa" @@ -445,9 +293,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Poruszający się początek/koniec magicznej lampy" -msgid "Make fire effect duration be dependent on window height." -msgstr "Uzależnij trwanie efektu ognia od wysokości okna" - msgid "Minimize Animation" msgstr "Animacja minimalizacji" @@ -457,25 +302,15 @@ msgid "Minimize/Unminimize Only" msgstr "Tylko minimalizuj/maksymalizuj" -msgid "Movement direction(s) for window pieces." -msgstr "Kierunki poruszania się elementów okien" - msgid "None" msgstr "Brak" -msgid "Number Of Fire Particles" -msgstr "Ilość cząsteczek ognia" - msgid "Number of Horizontal Folds" msgstr "Ilość poziomych zgięć" -msgid "Number of fire particles." -msgstr "Ilość cząsteczek ognia" - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." -msgstr "" -"Liczba rotacji dla efektu Sidekick (plus minus 10% ze względu na losowość)" +msgstr "Liczba rotacji dla efektu Kopnięcia (+/- 10% ze względu na losowość)" msgid "Off" msgstr "Wył." @@ -505,15 +340,13 @@ msgid "Options" msgstr "Opcje" -msgid "Out" -msgstr "Wyjście" - msgid "Pool" msgstr "Pula" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Pula efektów, z której będą losowane animacje po włączeniu losowych efektów. " "Kliknij \"przywróć\", by przywrócić pełną listę." @@ -527,65 +360,31 @@ msgid "Random Effects" msgstr "Losowe efekty" -msgid "Randomly Colored Fire" -msgstr "Losowe kolorowanie płomieni" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" "Stosunek odległości między oknami podczas zapoczątowania animacji " "Uskakiwania do jej zakończenia" -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Kierunek otwierania zagięcia w animacji Razr" - -#, fuzzy -msgid "Rectangular" -msgstr "Prostokątna poświata" - -msgid "Right" -msgstr "W prawo" - msgid "Roll Up" msgstr "Zwijanie do góry" msgid "Rollup Fixed Interior" msgstr "Nieruchome wnętrze okna podczas animacji zwijania do góry" -msgid "Rotation Angle" -msgstr "Kąt Obrotu" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Kąt obrotu animowanych części okna (w stopniach)." - -#, fuzzy msgid "Shade Animation" msgstr "Animacja Zacieniania" msgid "Shade Effect" msgstr "Efekt zacienienia" -#, fuzzy msgid "Sidekick" -msgstr "Sidekick" +msgstr "Kopnięcie" msgid "Sidekick Number of Rotations" -msgstr "Numer obrotów podczas animacji Sidekick" +msgstr "Liczba obrotów przy Kopnięciu" msgid "Sidekick Springiness" -msgstr "Sprężystość okien podczas animacji Sidekick" - -msgid "Skewer" -msgstr "Rożen" - -msgid "Skewer Direction" -msgstr "Kierunek animacji" - -#, fuzzy -msgid "Spacing between beams." -msgstr "Odstęp między miniaturkami" +msgstr "Sprężystość okien przy Kopnięciu" msgid "" "Starting width of open effect and ending width of close effect for Magic " @@ -600,16 +399,6 @@ "Szerokość początkowa podczas efektu otwarcia i szerokość końcowa podczas " "efektu zamknięcia dla Wsysacza." -#, fuzzy -msgid "Tessellation Type" -msgstr "Typ tesselacji" - -msgid "Tessellation type for exploding window pieces." -msgstr "Typ tesselacji dla eksplodujących fragmentów okna." - -msgid "Tessellation type for window pieces." -msgstr "Typ tesselacji dla fragmentów okna." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -617,29 +406,6 @@ "Czas w milisekundach pomiędzy każdą renderowaną klatką animacji. Im większa " "liczba, tym bardziej 'urywane' stają się animacje." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Ilość czasu w milisekundach pomiędzy renderowaniem pojedynczych klatek " -"intensywnych animacji (Np.Ogień,Promień). Im wyższa liczba, tym bardziej tną " -"się animacje." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Animowane okno będzie podzielone na części wzdłuż siatki. Określ liczbę " -"kwadratów siatki wzdłuż wysokości okna." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Animowae okno będzie podzielone na części wzdłuż siatki. Określ liczbę " -"kwadratów siatki wzdłuż szerokości okna." - msgid "The animation effect shown when closing a window." msgstr "Animacja podczas zamykania okna." @@ -655,26 +421,11 @@ msgid "The animation effect shown when shading a window." msgstr "Efekt animacji podczas zacienieniania okna." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Eksplodujące okno będzie podzielone na części wzdłuż siatki. Określ liczbę " -"kwadratów siatki wzdłuż wysokości okna." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Eksplodujące okno będzie podzielone na części wzdłuż siatki. Określ liczbę " -"kwadratów siatki wzdłuż szerokości okna." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "Maksymalna amplituda (rozmiar fal) jaką będzie miała magiczna Lampa." -#, fuzzy msgid "The maximum number of waves for Magic Lamp." -msgstr "Maksymalna ilość aktywnych cząsteczek" +msgstr "Maksymalna ilość fal Magicznej Lampy" msgid "The minimum amplitude (size of the waves) Magic Lamp will have." msgstr "Minimalna amplituda (rozmiar fal) jaką będzie miała magiczna Lampa." @@ -682,40 +433,13 @@ msgid "" "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "" -"Liczba poziomych zginań które pojawią się w animacji Poziomego Zginania." +"Liczba poziomych zginań, które pojawią się w animacji Poziomego Zginania." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Amplituda fal (rozmiar fal) odniesiony do wysokości okna." - -#, fuzzy msgid "The width of the wave relative to the window height." -msgstr "Szerokość obramowania okna zakładek" +msgstr "Szerokość fali w odniesieniu do wysokości okna" -#, fuzzy msgid "The windows that will be animated." -msgstr "Typy okien, które powinny być przezroczyste." - -msgid "Thickness" -msgstr "Grubość" - -msgid "Thickness of Animated Polygons" -msgstr "Grubość animowanych wielokątów" - -msgid "Thickness of Exploding Polygons" -msgstr "Grubość eksplodujących wielokątów" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Grubość animowanych części okna (w pikselach)" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Grubość eksplodujących części okna (w pikselach)" - -msgid "Up" -msgstr "W górę" - -#, fuzzy -msgid "Up-down" -msgstr "W górę i w dół" +msgstr "Typy okien, które będą animowane" msgid "Use various animations as window effects" msgstr "Używaj różnych animacji dla animowania okien" @@ -723,8 +447,9 @@ msgid "Vacuum" msgstr "Wsysacz" +# literówka w słowie Wsysacz msgid "Vacuum Grid Y Resolution" -msgstr "Rozdzielczość osi Y Wsysaca" +msgstr "Rozdzielczość osi Y Wsysacza" msgid "Vacuum Open Start Width" msgstr "Szerokość początkowa Wsysacza" @@ -755,17 +480,17 @@ msgid "Wave" msgstr "Fala" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Amplituda Fali" msgid "Wave Width" msgstr "Długość Fali" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Określa, czy okna powinny latać do paska zadań podczas minimalizacji " -"używając efektu Samolotu." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -784,13 +509,13 @@ "Whether the window should zoom to taskbar when minimized with Glide 1 effect." msgstr "" "Określa, czy okna powinny być przybliżane do paska zadań podczas " -"minimalizacji używając efektu Wsuwanie 1." +"minimalizacji używając efektu Ślizg 1." msgid "" "Whether the window should zoom to taskbar when minimized with Glide 2 effect." msgstr "" "Określa, czy okna powinny być przybliżane do paska zadań podczas " -"minimalizacji używając efektu Wsuwanie 2." +"minimalizacji używając efektu Ślizg 2." msgid "" "Whether the window should zoom to taskbar when minimized with Horizontal " @@ -799,29 +524,14 @@ "Określa, czy okna powinny być przybliżane do paska zadań podczas " "minimalizacji używając efektu Poziomego Składania" -msgid "Window Grid Height" -msgstr "Wysokość siatki okna." - -msgid "Window Grid Width" -msgstr "Długość siatki okna." - -msgid "Window folding direction." -msgstr "Kierunek składania." - -#, fuzzy +# Brak przecinka przed "które" msgid "Window that should animate with this effect when focused." -msgstr "Okna które mogą być grupowane" +msgstr "" +"Okna, które powinny być animowane tym efektem podczas wskazywania na nie" msgid "Window that should animate with this effect when shaded." msgstr "Okna, które powinny być animowane tym efektem podczas zacienienia." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Grubość okna w pikselach. Ustawianie tego na wartość wyższą niż 0 wyłączy " -"cienie, rozmycie i odbicie podczas animacji." - msgid "Zoom" msgstr "Zbliżenie" @@ -843,7 +553,6 @@ msgid "Colors" msgstr "Kolory" -#, fuzzy msgid "Cube Atlantis" msgstr "Kostka Atlantis" @@ -932,98 +641,30 @@ msgid "Y position" msgstr "Pozycja w pionie" -msgid "Brightness Decrease" -msgstr "Zmniejsz jasność" - -msgid "Brightness Increase" -msgstr "Zwiększ jasność" - -#, fuzzy -msgid "Brightness Step" -msgstr "Krok zmiany jasności" - -msgid "Brightness and Saturation" -msgstr "Jasność i nasycenie" - -msgid "Brightness and Saturation adjustments" -msgstr "Regulacje jasności i nasycenia" - -#, fuzzy -msgid "Brightness settings" -msgstr "Ustawienia jasności" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Jasność dla okien" - -#, fuzzy -msgid "Brightness window values" -msgstr "Jasność dla okien" - -#, fuzzy -msgid "Brightness windows" -msgstr "Jasność zanikających okien" - -msgid "General" -msgstr "Ogólne" - -msgid "Saturation Decrease" -msgstr "Zwiększ nasycenie" - -msgid "Saturation Increase" -msgstr "Zmniejsz nasycenie" - -msgid "Saturation Step" -msgstr "Krok zmiany nasycenia" - #, fuzzy -msgid "Saturation settings" -msgstr "Nasycenie wybranych okien" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "Nasycenie zanikających okien" - -#, fuzzy -msgid "Saturation window values" -msgstr "Nasycenie zanikających okien" - -#, fuzzy -msgid "Saturation windows" -msgstr "Nasycenie zanikających okien" - -#, fuzzy -msgid "Window specific" -msgstr "Przezroczystość okna" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "Okna, które powinny mieć domyślnie zmieniony rozmiar" +msgid "Bicubic filter" +msgstr "Zmień filtr" -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "Okna, które powinny mieć domyślnie zmieniony rozmiar" +msgid "Bicubic texture filtering" +msgstr "" msgid "Color filter" msgstr "Kolor filtru" -#, fuzzy msgid "Exclude windows" msgstr "Wykluczone okna" msgid "Filter colors for accessibility purposes" msgstr "Filtrowanie kolorów do celów dostępności systemu" -#, fuzzy msgid "Filter window decorations" -msgstr "Odbicia dla dekoracji" +msgstr "Filtrowanie dekoracji okien" -#, fuzzy msgid "Filtered windows" msgstr "Filtrowane okna" msgid "Filters files" -msgstr "Filtruj pliki" +msgstr "Filtry plików" msgid "" "List of plain text filter files that should be applied when filtering " @@ -1044,21 +685,17 @@ msgid "Switch filter" msgstr "Zmień filtr" -#, fuzzy msgid "Toggle filtering for currently focused window." -msgstr "Włącz filtracje dla aktualnie cieniowanego okna." +msgstr "Włącz filtracje dla aktualnie zaznaczonego okna." -#, fuzzy msgid "Toggle filtering for every window on the screen." -msgstr "Zmień rozmiar każdego okna w grupie" +msgstr "Włącz filtracje dla każdego okna na ekranie" -#, fuzzy msgid "Toggle screen filtering" -msgstr "Zmień rozmieszczenie" +msgstr "Włącz filtrowanie ekranu" -#, fuzzy msgid "Toggle window filtering" -msgstr "Przełącza okno na pełny ekran" +msgstr "Włącz filtrowanie okien" msgid "" "Window decorations (borders and titlebar) will be filtered as well as window " @@ -1067,13 +704,11 @@ "Dekoracje okien (jego krawędzie i pasek tytułu) będą filtrowane razem z " "zawartością okan jeśli ta opcja jest włączona." -#, fuzzy msgid "Windows to be filtered by default." -msgstr "Okna, które powinny przenikać do pulpitu" +msgstr "Okna, które powinny być domyślnie filtrowane" -#, fuzzy msgid "Windows to exclude from filtering." -msgstr "Okna które nie powinny zostać poddane rozmieszczeniu" +msgstr "Okna które nie powinny zostać poddane filtrowaniu" msgid "Activate Crash Handler." msgstr "Włącz wtyczkę obsługi awarii." @@ -1105,6 +740,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Polecenie meneżdera okien. UWAGA! NIE WPISUJ TUTAJ POLECENIA: COMPIZ" +msgid "Above" +msgstr "Ponad" + msgid "Adjust bottom face image to rotation" msgstr "Dopasuj dolny obrazek do obrotu" @@ -1126,10 +764,21 @@ msgid "Appearance" msgstr "Wygląd" +msgid "Aspect ratio" +msgstr "Proporcje" + +msgid "Aspect ratio of the deformed cube" +msgstr "Proporcje zdeformowanej kostki" + +msgid "Auto zoom" +msgstr "Automatyczne pomniejszenie kostki" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Automatyczne pomniejszenie tylko podczas obrotu kostki myszą" + msgid "Behaviour" msgstr "Zachowanie" -#, fuzzy msgid "Bottom image files" msgstr "Pliki obrazków dolnej ściany kostki" @@ -1164,36 +813,97 @@ msgid "Color of bottom face of the cube" msgstr "Kolor dolnej ściany kostki" +msgid "Color of the ground (far)." +msgstr "Kolor dalekiego tła." + +msgid "Color of the ground (near)." +msgstr "Kolor bliskiego tła." + msgid "Color of top face of the cube" msgstr "Kolor górnej ściany kostki" +msgid "Compiz cube reflection and deformation" +msgstr "Odbicie i deformacja kostki Compiz" + msgid "Cube Bottom Color" msgstr "Kolor dolnej ściany kostki" -msgid "Cube Caps" -msgstr "Obrazki na ścianach kostki" +msgid "Cube Reflection and Deformation" +msgstr "Odbicie i deformacja kostki" msgid "Cube Top Color" msgstr "Kolor górnej ściany kostki" -msgid "Draw bottom face" -msgstr "Rysuj dolną ścianę" +msgid "Cube caps" +msgstr "Obrazki na ściankach kostki" -msgid "Draw bottom face of the cube" -msgstr "Rysuj dolną ścianę kostki" +msgid "Cylinder" +msgstr "Cylinder" -msgid "Draw top face" -msgstr "Rysuj górną ścianę" +msgid "Deform caps" +msgstr "Zniekształcenie obrazków" -msgid "Draw top face of the cube" -msgstr "Rysuj górną ścianę kostki" +msgid "Deform cube caps." +msgstr "Zniekształcenie obrazków na ściankach kostki" -msgid "Go back to previous image for bottom face of the cube" -msgstr "Idź do poprzedniego obrazka dolnej ściany kostki" +msgid "Deform only on mouse rotate" +msgstr "Deformacje tylko podczas obrotu myszką" -msgid "Go back to previous image for top face of the cube" +msgid "Deformation" +msgstr "Zniekształcenie" + +#, fuzzy +msgid "Deformation in unfold cube mode." +msgstr "Deformacje w trybie rozłożonej kostki" + +msgid "Deformation mode." +msgstr "Tryb deformacji" + +msgid "Distance" +msgstr "Odległość" + +msgid "Draw bottom face" +msgstr "Rysuj dolną ścianę" + +msgid "Draw bottom face of the cube" +msgstr "Rysuj dolną ścianę kostki" + +msgid "Draw top face" +msgstr "Rysuj górną ścianę" + +msgid "Draw top face of the cube" +msgstr "Rysuj górną ścianę kostki" + +msgid "Enabled" +msgstr "Włączone" + +msgid "Give cube a reflective ground." +msgstr "Daj kostce odbijające podłoże" + +msgid "Go back to previous image for bottom face of the cube" +msgstr "Idź do poprzedniego obrazka dolnej ściany kostki" + +msgid "Go back to previous image for top face of the cube" msgstr "Idź do poprzedniego obrazka górnej ściany kostki" +msgid "Ground color(far)" +msgstr "Kolor dalekiego tła" + +msgid "Ground color(near)" +msgstr "Kolor bliskiego tła" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensywność" + +msgid "Jumpy" +msgstr "Odbicie lustrzane na podłożu" + +msgid "Jumpy reflection" +msgstr "Odbicie lustrzane w powietrzu" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1203,6 +913,18 @@ msgstr "" "Lista plików PNG i SVG, które mają być renderowane na górnej ścianie kostki" +msgid "Maintain bottom aspect ratio" +msgstr "Utrzymuj proporcje dolnej części" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "Utrzymuj proporcje obrazka dolnej ścianki kostki" + +msgid "Maintain top aspect ratio" +msgstr "Utrzymuj proporcje górnej części" + +msgid "Maintain top cap image aspect ratio." +msgstr "Utrzymuj proporcje obrazka górnej ścianki kostki" + msgid "Next bottom image" msgstr "Następny dolny obrazek" @@ -1215,8 +937,23 @@ msgid "Prev top image" msgstr "Poprzedni górny obrazek" -msgid "Render images on top and bottom of the cube" -msgstr "Wyświetla obrazki na górnej i dolnej ścianie kostki" +msgid "Reflection" +msgstr "Odbicie" + +msgid "Reflection ground size" +msgstr "Rozmiar podłoża" + +msgid "Reflection ground size." +msgstr "Rozmiar podłoża w efekcie odbicia kostki" + +msgid "Reflection intensity" +msgstr "Intensywność odbicia" + +msgid "Reflection mode" +msgstr "Tryb odbicia" + +msgid "Reflection mode." +msgstr "Tryb odbicia." msgid "Scale bottom image" msgstr "Skaluj dolny obrazek" @@ -1230,69 +967,36 @@ msgid "Scale top image" msgstr "Skaluj górny obrazek" +msgid "Sphere" +msgstr "Kula" + msgid "Top image files" msgstr "Pliki górnego obrazka" -msgid "Above" -msgstr "Ponad" +#, fuzzy +msgid "Unfold cube deformation" +msgstr "Deformacje rozłożonej kostki" -msgid "Auto zoom" -msgstr "Automatyczne pomniejszenie kostki" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Oddala kostkę automatycznie tylko podczas obrotu myszą." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Automatyczne pomniejszenie tylko podczas obrotu kostki myszą" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Oddala kostkę automatycznie aby dopasować ją do ekranu." -msgid "Color of the ground (far)." -msgstr "Kolor dalekiego tła." +#, fuzzy +msgid "Cube Caps" +msgstr "Obrazki na ściankach kostki" -msgid "Color of the ground (near)." -msgstr "Kolor bliskiego tła." +msgid "Render images on top and bottom of the cube" +msgstr "Wyświetla obrazki na górnej i dolnej ścianie kostki" +#, fuzzy msgid "Compiz cube reflection" msgstr "Odbicie kostki" msgid "Cube Reflection" msgstr "Odbicie kostki" -msgid "Distance" -msgstr "Odległość" - -msgid "Ground color(far)" -msgstr "Kolor dalekiego tła" - -msgid "Ground color(near)" -msgstr "Kolor bliskiego tła" - -msgid "Intensity" -msgstr "Intensywność" - -msgid "Jumpy" -msgstr "Odbicie lustrzane na podłożu" - -msgid "Jumpy reflection" -msgstr "Odbicie lustrzane w powietrzu" - -msgid "Reflection ground size" -msgstr "Rozmiar podłoża" - -msgid "Reflection ground size." -msgstr "Rozmiar podłoża w efekcie odbicia kostki" - -msgid "Reflection intensity" -msgstr "Intensywność odbicia" - -msgid "Reflection mode" -msgstr "Tryb odbicia" - -msgid "Reflection mode." -msgstr "Tryb odbicia." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Oddala kostkę automatycznie tylko gdy nastąpi obrót myszą." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Oddala kostkę automatycznie aby dopasować ją do ekranu." - msgid "Animation used when switching to expo mode" msgstr "Animacja podczas przełączania do trybu expo" @@ -1307,24 +1011,17 @@ msgid "Button binding to switch to next viewport in expo" msgstr "" -"Przyporządkowanie klaiwsza do następnego wirtualnego pulpitu w trybie expo" +"Przyporządkowanie klawisza do następnego wirtualnego pulpitu w trybie expo" -#, fuzzy msgid "Curve" -msgstr "Zagięcie" +msgstr "Wygięcie" -#, fuzzy msgid "Curve strength" -msgstr "Stopień zagięcia" - -msgid "Deformation" -msgstr "Zniekształcenie" +msgstr "Stopień wygięcia" -#, fuzzy msgid "Deformation of the expo wall" msgstr "Zniekształcenie ściany expo" -#, fuzzy msgid "Distance between viewports" msgstr "Odległość między wirtualnymi pulpitami" @@ -1337,18 +1034,17 @@ msgid "Drag&drop" msgstr "Przeciągnij i upuść" -#, fuzzy msgid "Duration of the zoomout animation" -msgstr "Czas (w milisekundach) trwania animacji rozmieszczenia" +msgstr "Czas trwania animacji przybliżenia" msgid "Engage wall expo mode button binding" -msgstr "" +msgstr "Przyporządkuj wybór trybu expo do przycisku myszy" msgid "Engage wall expo mode edge binding" -msgstr "" +msgstr "Przyporządkuj wybór trybu expo do krawędzi ekranu" msgid "Engage wall expo mode key binding" -msgstr "" +msgstr "Przyporządkuj wybór trybu expo do klawisza" msgid "Exit expo" msgstr "Wyjdź z Expo" @@ -1372,11 +1068,10 @@ msgstr "Klawisz Expo" msgid "Expo mode aspect ratio" -msgstr "" +msgstr "Proporcje trybu expo" -#, fuzzy msgid "Fade + Zoom" -msgstr "Czas przenikania" +msgstr "Ściemnienie + Zbliżenie" msgid "Generate mipmaps in expo mode" msgstr "Generuj mipmapy w trybie expo" @@ -1391,10 +1086,10 @@ msgstr "Natychmiastowe ruchy" msgid "Inactive viewport brightness." -msgstr "" +msgstr "Jasność nieaktywnego wirtualnego pulpitu" msgid "Inactive viewport saturation." -msgstr "" +msgstr "Nasycenie nieaktywnego wirtualnego pulpitu" msgid "Mipmaps" msgstr "Mipmapy" @@ -1414,10 +1109,6 @@ msgid "Previous viewport" msgstr "Poprzedni pulpit" -msgid "Reflection" -msgstr "Odbicie" - -#, fuzzy msgid "Reflection Scale" msgstr "Skala odbicia" @@ -1427,17 +1118,21 @@ msgid "" "Selects how the expo wall is displayed if multiple output devices are used." msgstr "" +"Wybór w jaki sposób expo jest wyświetlane podczas używania wielu urządzeń " +"wyjściowych" msgid "" "Selects if windows movements in expo mode should be immediate - this among " "other things disables wobbliness" msgstr "" +"Wybór czy ruchy okien w trybie expo powinny następować natychmiast - to " +"między innymi wyłącza trzęsące się okna" msgid "Show a reflection of the viewports on the ground" -msgstr "Pokazuje odbicie wirtualnych pulpitów na ziemi." +msgstr "Pokazuje odbicie wirtualnych pulpitów na podłożu" msgid "Strength of the deformation in curve mode" -msgstr "Stopień deformacji w trybie zagięcia" +msgstr "Stopień deformacji w trybie wygięcia" msgid "Tilt" msgstr "Przekrzywienie" @@ -1445,20 +1140,17 @@ msgid "Timeframe to execute a double click" msgstr "Czas trwania podwójnego kliknięcia" -#, fuzzy msgid "Viewport distance" -msgstr "Prawy pulpit" +msgstr "Odstęp pomiędzy wirtualnymi pulpitami" msgid "Vortex" msgstr "Wir" -#, fuzzy msgid "Zoom time" msgstr "Czas zbliżania" -#, fuzzy msgid "Activate Demanding Attention Window" -msgstr "Aktywuj wybrane okno" +msgstr "Aktywuj okno wymagające uwagi" msgid "Activate Window" msgstr "Aktywuj okno" @@ -1467,7 +1159,7 @@ msgstr "Aktywuj wybrane okno" msgid "Activate next window which has the \"demands attention\" flag set." -msgstr "" +msgstr "Aktywuj następne okno, które jest oznaczone jako \"wymagające uwagi\"" msgid "Extra WM Actions" msgstr "Dodatkowe opcje menedżera okien" @@ -1476,22 +1168,19 @@ msgstr "Dostarcza rzadziej używanych funkcji menedżera okien" msgid "Toggle Always-On-Top" -msgstr "Przełącz \"zawsze na wierzchu\"" +msgstr "Włącz \"zawsze na wierzchu\"" msgid "Toggle Fullscreen" -msgstr "Przełączanie trybu pełnoekranowego" +msgstr "Włącz tryb pełnoekranowy" -#, fuzzy msgid "Toggle Redirect" -msgstr "Przełączanie przekierowywania" +msgstr "Włącz przekierowanie" -#, fuzzy msgid "Toggle Sticky" -msgstr "Przełączanie lepkości" +msgstr "Włącz lepkość" -#, fuzzy msgid "Toggle always on top for the active window" -msgstr "Przełącza zawsze na wierzchu dla aktywnego okna" +msgstr "Przełącza \"zawsze na wierzchu\" dla aktywnego okna" msgid "Toggle window fullscreen" msgstr "Przełącza okno na pełny ekran" @@ -1502,99 +1191,113 @@ msgid "Toggle window stickyness" msgstr "Przełącza lepkość okna" +#, fuzzy msgid "Always fit to window on focus track" -msgstr "" +msgstr "Zawsze dopasowuj do okna podczas ruchów wskaźnika" msgid "" "Always keep the zoomed area in sync with where the mouse is, and vice versa. " "Use this if you don't intend to draw a scaled pointer or hide the original " "pointer. The zoomed area will move as you move your mouse." msgstr "" +"Zawsze synchronizuj powiększany obszar z miejscem obecności wskaźnika myszy " +"i vice versa. Używaj tej opcji jeśłi nie zamierzasz przy okazji zmieniać " +"proporcji ani chować wskaźnika myszy. Powiększany obszar będzie się " +"przesuwał wraz z ruchem myszy." -#, fuzzy msgid "Animation" -msgstr "Prędkość Animacji" +msgstr "Animacja" msgid "" "Attempt to keep the zoomed mouse visible by warping it when it is moved " "outside the zoom area." msgstr "" +"Próbuj utrzymać powiększony wskaźnik widoczny wykrzywiając go, gdy wyjdzie " +"poza powiększany obszar" msgid "Center the mouse" msgstr "Wyśrodkuj mysz" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Skaluj kursor myszy" + msgid "Enable focus tracking" -msgstr "" +msgstr "Włącz śledzenie myszy" msgid "Enable this to get a gradually larger mouse pointer as you zoom in" msgstr "" +"Włącz tą opcję by uzyskać powiększenie wskaźnika myszy wraz z powiększaniem " +"obszaru" +#, fuzzy msgid "" "Enable this to target the focused window when jumping to a specific zoom " "level. Disable to target mouse." msgstr "" +"Włącz tą opcję by wycelować zaznaczone okno podczas skoku na wybrany poziom " +"zbliżenia. Wyłącz by wycelować mysz." -#, fuzzy msgid "Enhanced Zoom Desktop" -msgstr "Ulepszone przybliżanie pulpitu" +msgstr "Zaawansowane powiększanie pulpitu" -#, fuzzy msgid "Enhanced zoom functions for the visually impaired and other users" msgstr "" -"Funkcje ulepszonego przybliżenia pulpitu dla osób niedowidzących i innych " +"Funkcje zaawansowanego przybliżenia dla osób niedowidzących i innych " "użytkowników" msgid "Filter Linear" msgstr "Filtruj liniowo" msgid "Fit the window to the zoom level" -msgstr "" +msgstr "Dopasuj okno do poziomu przybliżenia" msgid "" "Fit the zoomed area to the window when the zoomed area moves as a result of " "focus tracking." msgstr "" +"Dopasuj powiększany obszar do okna kiedy powiększany obszar przesuwa się w " +"wyniku ruchów myszą" +#, fuzzy msgid "" "Fit the zoomed area to the window when the zoomed area moves as a result of " "focus tracking. Even when not initially zoomed in." msgstr "" +"Dopasuj powiększany obszar do okna kiedy powiększany obszar przesuwa się w " +"wyniku ruchów myszą. Nawet jeśli obraz nie był powiększony na początku" +#, fuzzy msgid "Fit zoom level to window on focus change" -msgstr "" +msgstr "Dopasuj poziom przybliżenia do okna podczas zmiany miejsca skupienia" msgid "Fit zoomed area to window" -msgstr "" +msgstr "Dopasuj poziom przybliżenia do okna" -#, fuzzy msgid "Fitting" -msgstr "Ustawienia" +msgstr "Dopasowywanie" msgid "Focus Tracking" -msgstr "" +msgstr "Śledzenie miejsca skupienia" +#, fuzzy msgid "Follow Focus Delay" -msgstr "" +msgstr "Podążaj za opóźnieniem miejsca skupienia" msgid "Hide original mouse pointer" -msgstr "" +msgstr "Ukryj oryginalny wskaźnik myszy" msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" - -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +"Ukrywa oryginalny wskaźnik myszy podczas przybliżania i skalowania myszą" #, fuzzy +msgid "Minimum zoom factor" +msgstr "Minimalny współczynnik rozmiaru" + msgid "Mouse Behaviour" msgstr "Zachowanie myszy" -# Corrected a typo -msgid "Mouse Poll Interval" -msgstr "Odstęp między sygnałami badającymi położenie wskaźnika myszy" - msgid "Mouse Restrain Margin" msgstr "Margines przytrzymywania myszy" @@ -1614,38 +1317,42 @@ "Only attempt to center newly focused windows if the mouse hasn't moved in " "this amount of seconds. Use this to avoid jumping when using sloppy focus." msgstr "" +"Próbuj wycentrować świeżo wybrane okna tylko jeśli mysz nie przeniosła sie " +"tam w ciągu kilku sekund. Użyj tej opcji by uniknąć skoku podczas " +"nieuważnego zaznaczenia" msgid "Pan (move) the zoom area down" -msgstr "" +msgstr "Przesuń powiększany obszar w dół" msgid "Pan (move) the zoom area left" -msgstr "" +msgstr "Przesuń powiększany obszar w lewo" msgid "Pan (move) the zoom area right" -msgstr "" +msgstr "Przesuń powiększany obszar w prawo" msgid "Pan (move) the zoom area up" -msgstr "" +msgstr "Przesuń powiększany obszar w górę" +#, fuzzy msgid "Pan Factor" -msgstr "" +msgstr "Czynnik przesunięcia" msgid "Pan Zoom Down" -msgstr "" +msgstr "Przesuń powiększenie w dół" -#, fuzzy msgid "Pan Zoom Left" -msgstr "Przesuń obszar powiększony w lewo" +msgstr "Przesuń powiększenie w lewo" -#, fuzzy msgid "Pan Zoom Right" -msgstr "Zetnij prawy dolny narożnik" +msgstr "Przesuń powiększenie w prawo" +#, fuzzy msgid "Pan Zoom Up" -msgstr "" +msgstr "Przesuń powiększenie w górę" +#, fuzzy msgid "Pan the zoom area when the mouse cursor moves outside the visible area." -msgstr "" +msgstr "Przesuń powiększony obszar kiedy kursor myszy opuści widoczny obszar" #, fuzzy msgid "Panning" @@ -1653,67 +1360,90 @@ msgid "Puts the mouse in the middle of the screen (Regardless of zoom level)" msgstr "" +"Przesuń wskaźnik myszy na środek ekranu (Bez względu na poziom powiększenia)" msgid "Resize the window so it matches the current zoom level." -msgstr "" +msgstr "Zmień rozmiar okna by odpowiadało aktualnemu stopniowi powiększenia" msgid "Restrain the mouse to the zoom area" -msgstr "" +msgstr "Ogranicz ruchy myszą do powiększanego obszaru" msgid "Scale the mouse pointer" msgstr "Skaluj kursor myszy" msgid "Specific Zoom" -msgstr "Specyficzny Zoom" +msgstr "Określone przybliżenie" msgid "Specific zoom factor 1" -msgstr "Specyficzny współczynnik przybliżenia 1" +msgstr "Określony współczynnik przybliżenia 1" msgid "Specific zoom factor 2" -msgstr "Specyficzny współczynnik przybliżenia 2" +msgstr "Określony współczynnik przybliżenia 2" msgid "Specific zoom factor 3" -msgstr "Specyficzny współczynnik przybliżenia 3" +msgstr "Określony współczynnik przybliżenia 3" msgid "Speed" msgstr "Szybkość" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Skaluj kursor myszy" + msgid "Sync Mouse" msgstr "Synchronizuj Mysz" +#, fuzzy msgid "Target Focused Window on Specific level" +msgstr "Wyceluj wybrane okno na określony poziom" + +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." msgstr "" msgid "The size of the margin to add when attempting to restrain the mouse." -msgstr "" +msgstr "Wielkość marginesu do dodania podczas próby powstrzymania myszy" msgid "Timestep" msgstr "Krok czasu" msgid "Toggle zoom area lock" -msgstr "" +msgstr "Włącz zablokowanie powiększonego obszaru" msgid "Toggles a lock on the zoom area so it doesn't change on various events" msgstr "" +"Włącza blokadę powiększonego obszaru przez co nie ulega on zmianie podczas " +"różnych zdarzeń" msgid "Use linear filter when zoomed in" msgstr "Używaj filtrowania liniowego podczas przybliżania" -#, fuzzy +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" -msgstr "Przybliżaj od środka" +msgstr "Ruchy przybliżanego obszaru" #, fuzzy +msgid "Zoom Box" +msgstr "Obszar powiększania" + msgid "Zoom In" msgstr "Zbliżenie" # Zmieniono ze "zbliżenie" na "oddalenie" -#, fuzzy msgid "Zoom In/Out" -msgstr "Oddalenie" +msgstr "Zbliżenie/Oddalenie" # Zmieniono ze "zbliżenie" na "oddalenie" -#, fuzzy msgid "Zoom Out" msgstr "Oddalenie" @@ -1726,17 +1456,18 @@ msgid "Zoom Specific Level 3" msgstr "Konkretny poziom zbliżenia 3" -#, fuzzy msgid "Zoom Speed" -msgstr "Szykość zoom" +msgstr "Szykość przybliżenia" -#, fuzzy msgid "Zoom Timestep" -msgstr "Krok czasu zoom" +msgstr "Krok czasu przybliżenia" msgid "Zoom factor" msgstr "Współczynnik zbliżenia" +msgid "Zoom in on a boxed area" +msgstr "Zbliżenie na wybranym obszarze" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Przybliż/oddal o ten współczynnik. Wyższe wartości oznaczają szybsze " @@ -1782,25 +1513,28 @@ msgid "Windows that should be faded to desktop" msgstr "Okna, które powinny przenikać do pulpitu" -#, fuzzy msgid "Alter window opacity based on color." msgstr "Zmienia przezroczystość okien bazując na kolorze." msgid "Color Opacity" msgstr "Przezroczystość kolorów" -#, fuzzy msgid "Toggle Window Fake ARGB" msgstr "Przełącz fałszywy ARGB okien" -#, fuzzy msgid "Toggle window fake ARGB." msgstr "Przełącza fałszywy ARGB okien." +#, fuzzy +msgid "Add Particle" +msgstr "Czas życia cząsteczki" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Jasność tła" -#, fuzzy msgid "Background brightness during paint" msgstr "Jasność tła (w %) podczas rysowania" @@ -1808,25 +1542,49 @@ msgstr "Wyczyść" msgid "Clear (button)" -msgstr "Wyczyść (przycisk)" +msgstr "Wyczyść (klawisz)" -#, fuzzy msgid "Clear (key)" -msgstr "Wyczyść" +msgstr "Wyczyść (przycisk)" -#, fuzzy -msgid "Initiate (button)" -msgstr "Rozpocznij" +msgid "Fire Particle Color" +msgstr "Kolor cząsteczki ognia" -#, fuzzy -msgid "Initiate (key)" -msgstr "Rozpocznij" +msgid "Fire Particle Life" +msgstr "Czas życia cząsteczki ognia" -msgid "Initiate fire drawing" -msgstr "Rozpocznij rysowanie ognia" +msgid "Fire Particle Size" +msgstr "Wielkość cząsteczki ognia" -msgid "Maximum number of active particles" -msgstr "Maksymalna ilość aktywnych cząsteczek" +msgid "Fire Particle Slowdown" +msgstr "Spowolnienie szybkości cząsteczki ognia" + +msgid "Fire particle color." +msgstr "Kolor cząsteczki ognia." + +msgid "Fire particle life." +msgstr "Czas życia cząsteczki ognia." + +msgid "Fire particle size." +msgstr "Rozmiar cząsteczki ognia." + +msgid "Fire particle slowdown." +msgstr "Spowolnienie szybkości cząsteczki ognia." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Losowy kolor efektu ognia, znany również jako Mistyczny Płomień." + +msgid "Initiate (button)" +msgstr "Rozpocznij (klawisz)" + +msgid "Initiate (key)" +msgstr "Rozpocznij (przycisk)" + +msgid "Initiate fire drawing" +msgstr "Rozpocznij rysowanie ognia" + +msgid "Maximum number of active particles" +msgstr "Maksymalna ilość aktywnych cząsteczek" msgid "Number of particles" msgstr "Ilość cząsteczek" @@ -1837,12 +1595,14 @@ msgid "Paint fire or other particles on the screen" msgstr "Rysuje płomienie lub inne cząsteczki na ekranie" -#, fuzzy +msgid "Randomly Colored Fire" +msgstr "Losowe kolorowanie płomieni" + msgid "Cube Gears" -msgstr "Zębatki w kostce" +msgstr "Mechanizm kostki" msgid "Render gears inside of the transparent cube" -msgstr "" +msgstr "Renderuj mechanizm w środku przezroczystej kostki" msgid "Animation Options" msgstr "Opcje animacji" @@ -1871,7 +1631,6 @@ msgid "Change Tab Right" msgstr "Zmiana na prawą zakładkę" -#, fuzzy msgid "Change tab animation duration" msgstr "Zmiana czasu trwania animacji zmiany zakładki" @@ -1884,13 +1643,12 @@ msgid "Create mipmaps for thumbnails in the tab bar" msgstr "Tworzy mipmapy dla miniaturek na oknie zakładek" -#, fuzzy msgid "" "Distance (in pixels) between the tab bar and the dragged slot for applying " "the spring model. If the distance is larger than that value, the model isn't " "applied." msgstr "" -"Odległość (w pixelach) między oknem zakładek i slotem dla dla której " +"Odległość (w pixelach) między oknem zakładek i slotem dla którego " "zastosowany zostanie model sprężynowania. Jeśli odległość jest większa niż " "ustawiona wartość, wtedy model ten nie jest stosowany." @@ -1908,7 +1666,6 @@ msgid "Duration (in s) of the tab bar reflex animation" msgstr "Czas trwania (w sekundach) animacji odbicia dla okna zakładek" -#, fuzzy msgid "Duration (in s) of the text fading animation when showing/hiding it" msgstr "" "Czas trwania (w sekundach) animacji zanikającego tekstu gdy jest pokazywany/" @@ -1923,7 +1680,6 @@ msgid "Fade time for tab bar animations" msgstr "Czas przenikania animacji dla okna zakładek" -#, fuzzy msgid "Fade time for text animations" msgstr "Czas przenikania dla animacji tekstowych" @@ -1939,6 +1695,9 @@ msgid "Font Size" msgstr "Wielkość czcionki" +msgid "General" +msgstr "Ogólne" + msgid "Glass" msgstr "Szkło" @@ -1985,51 +1744,47 @@ "maximized as well." msgstr "" "Jeśli jedno okno w grupie jest (nie)zmaksymilizowane, wtedy wszystkie inne " -"okna grupy są również (nie)zmaksymilizowane" +"okna grupy zostaną również (nie)zmaksymilizowane" msgid "" "If one window in the group is (un)minimized, all other group windows are (un)" "minimized as well." msgstr "" "Jeśli jedno okno w grupie jest (nie)zminimalizowane, wtedy wszystkie inne " -"okna grupy są również (nie)zminimalizowane" +"okna grupy zostaną również (nie)zminimalizowane" -#, fuzzy msgid "" "If one window in the group is (un)shaded, all other group windows are (un)" "shaded as well." msgstr "" "Jeśli jedno okno w grupie jest (nie)zacieniowane, wtedy wszystkie inne okna " -"grupy są również (nie)zacieniowane" +"grupy zostaną również (nie)zacieniowane" -#, fuzzy msgid "" "If one window in the group is activated, all other group windows are raised " "as well." msgstr "" -"Jeśli jedno okno w grupie jest aktywowane, wtedy wszystkie inne okna grupy " -"są podnoszone" +"Jeśli jedno okno w grupie jest aktywowane, wtedy wszystkie pozostałe okna w " +"grupie zostaną również aktywowane " -#, fuzzy msgid "" "If one window in the group is moved, all other group windows are moved as " "well." msgstr "" "Jeśli jedno okno w grupie jest przesuwane, wtedy wszystkie inne okna grupy " -"są przeniesione razem z nim" +"zostaną przeniesione razem z nim" msgid "" "If one window in the group is resized, all other group windows are resized " "as well." msgstr "" -"Jeśli zmieniamy rozmiar jednego okna w grupie, zmiany te są wprowadzane do " -"wszystkich okien grupy." +"Jeśli zmieniamy rozmiar jednego okna w grupie, zmiany te zostaną wprowadzane " +"do wszystkich okien grupy." msgid "If there is only 1 window left in the group, it will be ungrouped." msgstr "" -"Jeśli pozostało tylko jedno okno w grupie, wtedy jest ono rozgrupowywane." +"Jeśli pozostało tylko jedno okno w grupie to zostanie ono rozgrupowywane." -#, fuzzy msgid "" "If you don't like the current glow color, you can change it with this key." msgstr "" @@ -2055,31 +1810,26 @@ msgid "Line color of the selection rectangle" msgstr "Kolor linii prostokąta zaznaczania" -#, fuzzy msgid "Maximize/unmaximize with group" -msgstr "Maksymalizuj/odmaksymalizuj z grupą" +msgstr "Maksymalizuj/odmaksymalizuj wraz z grupą" msgid "Metal" msgstr "Metal" -#, fuzzy msgid "Minimize with group" msgstr "Minimalizuj z grupą" -#, fuzzy msgid "" "Mouse pointer movement speed limit (in pixels/second) for the spring model" msgstr "" "Ograniczenie prędkości poruszania wskaźnika myszy (w pixelach/sekundy) dla " "modelu sprężynowania" -#, fuzzy msgid "Move every window in the group" msgstr "Przenoś wszystkie okna w grupie" -#, fuzzy msgid "Murrina" -msgstr "Krzywa" +msgstr "Murrina" msgid "Opacity of selected windows" msgstr "Przezroczystość wybranych okien" @@ -2090,7 +1840,6 @@ msgid "Precision" msgstr "Precyzja" -#, fuzzy msgid "" "Precision of the selection (percentage of the visible window area which must " "be selected for the selection to be recognized)." @@ -2098,42 +1847,36 @@ "Precyzja zaznaczenia (procent widocznej przestrzeni okna która musi być " "zaznaczona aby rozpoznać zaznaczenie okna)." -#, fuzzy msgid "Raise every window in the group" msgstr "Podnoś każde okno w grupie" -#, fuzzy msgid "Rectangular glow" msgstr "Prostokątna poświata" msgid "Remove Group Window" msgstr "Usuń grupę okien" -#, fuzzy msgid "Remove window from group after dropping it outside a tab bar" -msgstr "Usuń okno z grupy gdy zostanie upuszczone na zewnątrz okna zadań" +msgstr "Usuń okno z grupy gdy zostanie upuszczone na zewnątrz paska zadań" msgid "Resize every window in the group" -msgstr "Zmień rozmiar każdego okna w grupie" +msgstr "Podnieś wszystkie okna w grupie" -#, fuzzy msgid "Saturation of selected windows" msgstr "Nasycenie wybranych okien" -#, fuzzy msgid "Select" -msgstr "Wybór" +msgstr "Wybierz" msgid "Select Single Window" msgstr "Wybór pojedynczego okna" msgid "Selection" -msgstr "Wybieranie" +msgstr "Wybór" msgid "Selection Color" msgstr "Kolor wybierania" -#, fuzzy msgid "Shade with group" msgstr "Zacienienie całej grupy" @@ -2326,71 +2069,63 @@ msgid "Quality of compression when saving JPEG images" msgstr "Jakość kompresji podczas zapisywania obrazków JPEG" -#, fuzzy msgid "Background/Window brightness." -msgstr "Jasność tła" +msgstr "Jasność Tła/Okna" -#, fuzzy msgid "Background/Window saturation." -msgstr "Nasycenie tła" +msgstr "Nasycenie Tła/Okna" -#, fuzzy msgid "Fade In/Out Time" -msgstr "Czas pojawiania i zanikania" +msgstr "Czas pojawiania się i zanikania" msgid "Fade In/Out Time." -msgstr "Czas pojawiania i zanikania" +msgstr "Czas pojawiania się i zanikania" msgid "Login" -msgstr "" +msgstr "Logowanie" #, fuzzy msgid "Login Window Match" -msgstr "Układ Okna" +msgstr "Dopasowanie okna logowania" -#, fuzzy msgid "Login Window match" -msgstr "Dopasowanie okien" +msgstr "Dopasowanie okna logowania" msgid "Login/Logout" -msgstr "" +msgstr "Logowanie/Wylogowanie" msgid "Login/Logout effect" -msgstr "" +msgstr "Efekt Logowania/Wylogowania" msgid "Logout" -msgstr "" +msgstr "Wylogowanie" #, fuzzy msgid "Logout Window Match" -msgstr "Okna z możliwością grupowania" +msgstr "Dopasowanie Okna Wylogowania" -#, fuzzy msgid "Logout Window match" -msgstr "Dopasowanie okien" +msgstr "Dopasowanie okna wylogowania" -#, fuzzy msgid "Window opacity." msgstr "Przezroczystość okna" -#, fuzzy msgid "Border color" -msgstr "Kolor obwódki okna zakładek" +msgstr "Kolor obramowania" -#, fuzzy msgid "Border width" msgstr "Grubość obramowania" -#, fuzzy msgid "Border widtht." msgstr "Grubość obramowania" +#, fuzzy msgid "Box height." -msgstr "" +msgstr "Wysokość przycisku" #, fuzzy msgid "Box width." -msgstr "Grubość obramowania" +msgstr "Grubość przycisku" #, fuzzy msgid "Clip mask" @@ -2399,100 +2134,103 @@ msgid "Clip mask." msgstr "" -#, fuzzy msgid "Fisheye" -msgstr "Rozmiar ryb" +msgstr "Rybie Oko" msgid "Height" msgstr "Wysokość" msgid "Image overlay" -msgstr "" +msgstr "Nakładanie obrazów na siebie" -#, fuzzy msgid "Keep fully on screen" -msgstr "Pokaż ilość FPS na ekranie" +msgstr "Utrzymuj w całości na ekranie" -#, fuzzy msgid "Keep fully on screen." -msgstr "Pokaż ilość FPS na ekranie" +msgstr "Utrzymuj w całości na ekranie." msgid "Magnifier" -msgstr "" +msgstr "Szkło powiększające" msgid "Magnifier box" -msgstr "" +msgstr "Lupa" msgid "Magnifier image" -msgstr "" +msgstr "Obraz szkła powiększającego" msgid "Magnifier image." -msgstr "" +msgstr "Obraz szkła powiększającego" -#, fuzzy msgid "Mode" -msgstr "Uskakiwanie" +msgstr "Tryb" -#, fuzzy msgid "Mode." -msgstr "Uskakiwanie" +msgstr "Tryb" -#, fuzzy msgid "Radius" -msgstr "Zaokrląglenie obramowań" +msgstr "Promień" -#, fuzzy msgid "Radius of the magnification area." -msgstr "Promień zaokrąglonej krawędzi" +msgstr "Promień powiększanego obszaru" msgid "Width" -msgstr "" +msgstr "Szerokość" +#, fuzzy msgid "X offset of the cursor" -msgstr "" +msgstr "Wyrównanie X kursora" msgid "X offset of the cursor." -msgstr "" +msgstr "Wyrównanie X kursora" +#, fuzzy msgid "Y offset of the cursor" -msgstr "" +msgstr "Wyrównanie Y kursora" msgid "Y offset of the cursor." -msgstr "" +msgstr "Wyrównanie Y kursora" +#, fuzzy msgid "Zoom factor for keyboard initiated magnifier." -msgstr "" +msgstr "Czynnik powiększenia dla lupy wywołanej z klawiatury" msgid "Ignore already overlapping windows in the calculations" -msgstr "" +msgstr "Ignoruj w kalkulacjach już nałożone na siebie okna" +#, fuzzy msgid "Ignore sticky windows in the calculations" -msgstr "" +msgstr "Ignoruj w kalkulacjach przyklejone okna " +#, fuzzy msgid "Maximumize" -msgstr "" +msgstr "Maksymalizacja" -#, fuzzy msgid "Maximumizes windows (resize them to fit the available screenspace)." -msgstr "Maksymalny rozmiar okna (w procentach szerokości ekranu)" +msgstr "Maksymalizacja okien (powiększa je do pełnego dostępnego obszaru)" msgid "" "Treat sticky windows as non-existant when calculating space to use for the " "maximumize window." msgstr "" +"Traktuje przyklejone okna jako nieistniejące podczas kalkulacji obszaru do " +"wykorzystania przez maksymalizację" msgid "" "Treat windows that are already overlapping with the current window as non-" "existant when calculating space to use for the maximumize window." msgstr "" +"Traktuje okna, które są zakryte przez aktywne okno jako nieistniejące " +"podczas kalkulacji obszaru do wykorzystania przez maksymalizację" msgid "" "Trigger a resize of the window currently focused so it fits as much of the " "available screenspae as possible." msgstr "" +"Spowoduj zmianę wielkości aktualnie wybranego okna, by zajęło jak najwięcej " +"dostępnego obszaru ekranu" msgid "Trigger maximumize" -msgstr "" +msgstr "Wywołaj maksymalizację" msgid "Accumulation buffer" msgstr "Bufor akumulacji" @@ -2536,28 +2274,24 @@ msgid "Visibility/Performance" msgstr "Jakość/Wydajność" -#, fuzzy msgid "Action" -msgstr "Prędkość Animacji" +msgstr "Akcja" msgid "Action that is to be invoked." -msgstr "" +msgstr "Akcja, która powinna zaostać wywołana" msgid "Assign mousegestures to any existing action" -msgstr "" +msgstr "Przyporządkuj gesty myszy do jakiejkolwiek wybranej akcji" msgid "Detect Diagonal Movements" -msgstr "" +msgstr "Wykryj ukośne ruchy" -#, fuzzy msgid "Gesture" msgstr "Gest" -#, fuzzy msgid "Gesture assignment" -msgstr "Przypisz gesty" +msgstr "Przypisywanie gestów" -#, fuzzy msgid "Gestures" msgstr "Gesty" @@ -2565,32 +2299,43 @@ "If this option is selected, diagonal movements are detected, which may lead " "to a decreased detection accuracy." msgstr "" +"Gdy ta opcja jest zaznaczona, ukośne ruchy są wykrywane, co może doprowadzić " +"do obniżenia dokładności wykrywania" msgid "Mouse gesture to assign an action to." -msgstr "" +msgstr "Gest myszy do przypisania akcji" -#, fuzzy msgid "Mousegestures" -msgstr "Rozpocznij gest myszy" +msgstr "Gesty myszy" msgid "Plugin" -msgstr "" +msgstr "Plugin" msgid "Plugin the action belongs to." -msgstr "" +msgstr "Plugin, do którego należy akcja" msgid "Start gesture" msgstr "Rozpocznij gest myszy" -msgid "Misc" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." msgstr "" +"Jak często, w milisekundach, ma być badana pozycja myszy. Zredukuj wartość, " +"by zmniejszyć burzliwe zachowanie" + +msgid "Misc" +msgstr "Różne" + +# Corrected a typo +msgid "Mouse Poll Interval" +msgstr "Odstęp między sygnałami badającymi położenie wskaźnika myszy" -#, fuzzy msgid "Mouse position polling" -msgstr "Przesuwanie za pomocą myszy" +msgstr "Badanie położenia wskaźnika myszy" msgid "Updates the mouse pointer position from the xserver" -msgstr "" +msgstr "Uaktualnia pozycję wskaźnika myszy z serwera x" msgid "Begin Gesture" msgstr "Rozpocznij gest" @@ -2599,58 +2344,49 @@ msgstr "Rozpocznij gest myszy" msgid "Mouse switch" -msgstr "" +msgstr "Przełącz mysz" msgid "Switch viewport in response to mouse gesture" msgstr "Zmieniaj wirtualny pulpit po wykonaniu gestu myszy" msgid "Also negate window decorations, not only the window contents." -msgstr "" +msgstr "Wykluczaj również dekoracje okna, nie tylko ich zawartość" -#, fuzzy msgid "Exclude Windows" -msgstr "Wykluczone okna" +msgstr "Wyklucz okna" -#, fuzzy msgid "Neg Windows" -msgstr "Rozmieść równomiernie" +msgstr "Wyklucz okna" -#, fuzzy msgid "Negate Decorations" -msgstr "Odbicia dla dekoracji" +msgstr "Wyklucz dekoracje" msgid "Negative" msgstr "Negatyw" -#, fuzzy msgid "Toggle Screen Negative" -msgstr "Przełączczanie trybu pełnoekranowego" +msgstr "Włącz negatyw ekranu" -#, fuzzy msgid "Toggle Window Negative" -msgstr "Przełącza przekierowywanie okna" +msgstr "Włącz negatyw okna" -#, fuzzy msgid "Toggle active window negative" -msgstr "Przełącza przekierowywanie okna" +msgstr "Włącz negatyw aktywnego okna" -#, fuzzy msgid "Toggle screen negative" -msgstr "Przełączczanie trybu pełnoekranowego" +msgstr "Włącz negatyw ekranu" -#, fuzzy msgid "Used to set a window or screen negative" -msgstr "Automatyczne zakładkowanie okien podczas ich tworzenia" +msgstr "Używany do ustawienia negatywu okna lub ekranu" msgid "Windows to be negative by default" -msgstr "Okna mające mieć kolory w negatywie od razu (po otwarciu)" +msgstr "Okna domyślnie mające mieć ustawione kolory w negatywie" -#, fuzzy msgid "Windows to exclude from negating" -msgstr "Okna które nie powinny zostać poddane rozmieszczeniu" +msgstr "Okna które nie powinny zostać poddane negatywowi" msgid "Debug" -msgstr "Opcje" +msgstr "Debugowanie" msgid "Display errors and other messages using libnotify." msgstr "Wyświetlaj błędy i inne powiadomienia używając libnotify." @@ -2661,13 +2397,12 @@ msgid "Error Notifications" msgstr "Informowanie o błędach" -#, fuzzy msgid "Fatal" -msgstr "Metal" +msgstr "Fatalny błąd" #, fuzzy msgid "Hide Timeout" -msgstr "Czas przenikania" +msgstr "Czas ukrywania" msgid "Info" msgstr "Informacja" @@ -2688,9 +2423,8 @@ msgid "Warning" msgstr "Ostrzeżenie" -#, fuzzy msgid "Active Opacity" -msgstr "Przezroczystość" +msgstr "Aktywna nieprzezroczystość" msgid "" "Bypass delay when Opacify is reducing the opacity on one or more windows " @@ -2710,6 +2444,9 @@ "us to instantly see the focused window. You probably want to disable this if " "you are not using 'Click to Focus'." msgstr "" +"Nie czekaj jeśli okno, kŧore podnosisz jest wybranym oknem. To pozwala " +"natychmiast zobaczyć wybrane okno. Prawdopodobnie będziesz chciał wyłączyć " +"tą opcję jeśli nie używasz 'Kliknij by wybrać'" msgid "Make windows easily visible by hovering the mouse over them" msgstr "" @@ -2725,13 +2462,11 @@ "Tylko zwiększaj nieprzezroczystośc jeśli docelowe okno ma jedno lub więcej " "okien blokujących je przed widokiem." -#, fuzzy msgid "Opacify" -msgstr "Przezroczystość" +msgstr "Nieprzezroczystość" -#, fuzzy msgid "Opacity Levels" -msgstr "Przezroczystość" +msgstr "Poziom nieprzezroczystości" #, fuzzy msgid "Passive Opacity" @@ -2756,7 +2491,6 @@ "Opóźnienie (w milisekundach), zanim Powodowanie Nieprzezroczystości zmienia " "nieprzezroczystość, po tym jak aktywne okno się zmieniło." -#, fuzzy msgid "" "The maximum opacity percentage a window blocking the current targeted window " "can have. A blocking window will have either this opacity or the preset " @@ -2767,7 +2501,6 @@ "wartość, albo zdefiniowaną wartość nieprzezroczystości, w zależności od " "tego, która jest niższa." -#, fuzzy msgid "" "The minimum opacity percentage to ensure a targeted window has. A target " "window will have either this opacity or the preset opacity, whichever is " @@ -2782,6 +2515,9 @@ "already making one or more windows invisible. Makes for faster behavior " "while looking through layers of hidden windows." msgstr "" +"Ta opcja pozwala Nieprzezroczystości natychmiast zmatowić nowe okna gdy " +"właśnie robisz jedno lub więcej okien niewidocznych. Przyspiesza działanie " +"podczas spoglądania poprzez warstwy ukrytych okien." msgid "Toggle Opacify" msgstr "Przełączanie nieprzezroczystości" @@ -2793,8 +2529,9 @@ "Use this to enable/disable Opacify on the fly. Previously opacified windows " "will not be reset once you disable it like this." msgstr "" +"Użyj tego by włączyć/wyłączyć w locie nieprzezroczystość. Poprzednio " +"zmatowione okna nie będą resetowane jeśli wyłączysz je w ten sposób." -#, fuzzy msgid "Windows that should be opacified." msgstr "Okna, które mają być nieprzezroczyste." @@ -2802,12 +2539,12 @@ "With this enabled, opacify will be on when you load Opacify, which is " "usually when you start Compiz." msgstr "" +"Z włączoną tą opcją nieprzezroczystość będzie działać kiedy załadujesz " +"Nieprzezroczystość, co następuje zwykle gdy uruchamiasz Compiza." -#, fuzzy msgid "Animation speed" msgstr "Prędkość Animacji" -#, fuzzy msgid "Animation timestep" msgstr "Interwał czasowy animacji" @@ -2817,7 +2554,6 @@ msgid "Avoids putting window borders offscreen" msgstr "Unikaj umieszczania krawędzi okien poza ekranem" -#, fuzzy msgid "Move window arbitrarily by passing x, y and type." msgstr "Dowolnie przesuwa okno, po podaniu x, y i typu." @@ -2923,146 +2659,131 @@ msgstr "" "Odległość w pikslach od górnej krawędzi do punktu, w którym okno się zatrzyma" -#, fuzzy msgid "Pad Bottom" -msgstr "Z góry do dołu" +msgstr "Odległość od dolnej krawędzi ekranu" -#, fuzzy msgid "Pad Left" -msgstr "W lewo" +msgstr "Odległość od lewej krawędzi ekranu" -#, fuzzy msgid "Pad Right" -msgstr "W prawo" +msgstr "Odległość od prawej krawędzi ekranu" msgid "Pad Top" -msgstr "" +msgstr "Odległość od górnej krawędzi ekranu" msgid "Padding" -msgstr "" +msgstr "Odległość od krawędzi ekranu (w pikselach)" msgid "Put" -msgstr "" +msgstr "Przesuń" -#, fuzzy msgid "Put Bottom" -msgstr "Z góry do dołu" +msgstr "Przesuń w dół" -#, fuzzy msgid "Put Bottom Left" -msgstr "Zetnij lewy dolny narożnik" +msgstr "Przesuń w dolny lewy róg" -#, fuzzy msgid "Put Bottom Right" -msgstr "Zetnij prawy dolny narożnik" +msgstr "Przesuń w górny prawy róg" msgid "Put Center" -msgstr "" +msgstr "Przesuń do środka" -#, fuzzy msgid "Put Left" -msgstr "W lewo" +msgstr "Przesuń w lewo" msgid "Put On Viewport" -msgstr "" +msgstr "Przesuń na pulpit" msgid "Put On Viewport 1" -msgstr "" +msgstr "Przesuń na pulpit 1" msgid "Put On Viewport 10" -msgstr "" +msgstr "Przesuń na pulpit 10" msgid "Put On Viewport 11" -msgstr "" +msgstr "Przesuń na pulpit 11" msgid "Put On Viewport 12" -msgstr "" +msgstr "Przesuń na pulpit 12" msgid "Put On Viewport 2" -msgstr "" +msgstr "Przesuń na pulpit 2" msgid "Put On Viewport 3" -msgstr "" +msgstr "Przesuń na pulpit 3" msgid "Put On Viewport 4" -msgstr "" +msgstr "Przesuń na pulpit 4" msgid "Put On Viewport 5" -msgstr "" +msgstr "Przesuń na pulpit 5" msgid "Put On Viewport 6" -msgstr "" +msgstr "Przesuń na pulpit 6" msgid "Put On Viewport 7" -msgstr "" +msgstr "Przesuń na pulpit 7" msgid "Put On Viewport 8" -msgstr "" +msgstr "Przesuń na pulpit 8" msgid "Put On Viewport 9" -msgstr "" +msgstr "Przesuń na pulpit 9" msgid "Put Pointer" -msgstr "" +msgstr "Przesuń do wskaźnika" -#, fuzzy msgid "Put Right" -msgstr "W prawo" +msgstr "Przesuń w prawo" msgid "Put Top" -msgstr "" +msgstr "Przesuń w górę" -#, fuzzy msgid "Put Top Left" -msgstr "Zetnij lewy górny narożnik" +msgstr "Przesuń do górnego lewego narożnika" -#, fuzzy msgid "Put Top Right" -msgstr "Zetnij prawy górny narożnik" +msgstr "Przesuń do górnego prawego narożnika" msgid "Put pointer uses the center of the window" -msgstr "" +msgstr "Środek okna pokrywa się z kursorem" msgid "Put to adjacent viewport" -msgstr "" +msgstr "Przesuń do sąsiadującego pulpitu" msgid "Put to arbitrary viewport" -msgstr "" +msgstr "Przesuń do wybranego pulpitu" -#, fuzzy msgid "Put window" -msgstr "Rozmieszcza równomiernie okna na pulpicie" +msgstr "Rozmieszcza okna na pulpicie" msgid "Put within viewport" msgstr "Przesuń w granice wirtualnego pulpitu" -#, fuzzy msgid "Restore Position" -msgstr "Przywróc okna" +msgstr "Przywróć pozycję" -#, fuzzy msgid "Unfocus Window" -msgstr "Rozgrupuj okna" +msgstr "Odznacz okno" msgid "Unfocus windows that are moved off the viewport" -msgstr "" +msgstr "Odznacz okna, które zostały przeniesione poza pulpit" -#, fuzzy msgid "Viewport Bottom" -msgstr "Z góry do dołu" +msgstr "Dolny wirtualny pulpit" msgid "Viewport Left" -msgstr "Lew pulpit" +msgstr "Lewy wirtualny pulpit" msgid "Viewport Right" -msgstr "Prawy pulpit" +msgstr "Prawy wirtualny pulpit" msgid "Viewport Top" -msgstr "Górny pulpit" +msgstr "Górny wirtualny pulpit" -#, fuzzy msgid "Window Center" -msgstr "Centruj okno" +msgstr "Wyśrodkuj okno" msgid "Alpha Dependence Threshold" msgstr "Próg zależności alfa" @@ -3092,13 +2813,13 @@ msgstr "Plik z obrazem odbicia" msgid "Reflection Window Match" -msgstr "Okna dla których zastoswane zostanie odbicie" +msgstr "Okna, które mają być odbite" msgid "Reflection for Decorations" -msgstr "Odbicia dla dekoracji" +msgstr "Odbicia dekoracji" msgid "Reflection for Windows" -msgstr "Odbicia dla okien" +msgstr "Odbicia okien" msgid "Window match" msgstr "Dopasowanie okien" @@ -3202,7 +2923,7 @@ msgstr "Przyciemnij tło podczas pokazywania pierścienia" msgid "Emblem" -msgstr "Ikona " +msgstr "Ikona" msgid "Font color for the window title" msgstr "Kolor czcionki dla tytułu okna" @@ -3310,7 +3031,7 @@ msgid "Show switcher if not visible and select next window." msgstr "" -"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz następnego " +"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz następne " "okno." msgid "" @@ -3359,19 +3080,31 @@ msgid "Background color of the window title" msgstr "Kolor tła dla tytułu okna" -msgid "Close Windows In Scale" -msgstr "Zamknij okno podczas skalowania" +msgid "Close Window" +msgstr "Zamknij okno" + +msgid "Close window while in scale mode" +msgstr "Zamknij okno podczas trybu skalowania." msgid "Close windows while in scale mode" -msgstr "Zamykanie okna podczas trybu skalowania." +msgstr "Zamykanie okien podczas trybu skalowania." -#, fuzzy msgid "Color used for highlighting the hovered window" -msgstr "Kolor podświetlenia wybranego okna" +msgstr "Kolor używany do podświetlenia podniesionego okna" + +msgid "Constrain Pull To Screen" +msgstr "Ogranicz przyciąganie do ekranu" msgid "Draw Window Highlight" msgstr "Rysuj podświetlenie okien" +# "Scale" to NIE JEST skalowanie +msgid "Exit Scale On Pull" +msgstr "Opuść Szybkie Wybieranie po wyborze" + +msgid "Exit scale mode after a window has been pulled." +msgstr "Opuść tryb Szybkiego Wyboru po wyborze okna" + msgid "Font color of the window title" msgstr "Kolor czcionki dla tytułu okna" @@ -3384,9 +3117,14 @@ msgid "Highlighted window only" msgstr "Tylko podświetlonego okna" -#, fuzzy msgid "Highlights the hovered window with the given color" -msgstr "Podświetla wybrane okno wybranym kolorem" +msgstr "Podświetla podniesione okno wybranym kolorem" + +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"Upewnia się, że okna są w pełni widoczne po przeniesieniu ich na kolejny " +"pulpit" msgid "No display" msgstr "Nie pokazuj" @@ -3394,9 +3132,14 @@ msgid "Normal" msgstr "Normalny" -#, fuzzy msgid "Organic - EXPERIMENTAL" -msgstr "Połącz okna (EKSPERYMENTALNE)" +msgstr "Organiczne (EKSPERYMENTALNE)" + +msgid "Pull Window" +msgstr "Przesuń okno" + +msgid "Pull window to current viewport while in scale mode" +msgstr "Przesuń okno na wybrany pulpit w trybie skalowania" msgid "Scale Addons" msgstr "Dodatki do skalowania" @@ -3422,6 +3165,10 @@ msgid "Window Layout Mode" msgstr "Tryb rozmieszczenia okien" +#, fuzzy +msgid "Window Pull" +msgstr "Typy okien" + msgid "Window Title" msgstr "Tytuł okna" @@ -3431,10 +3178,10 @@ msgid "Window title display in scale mode" msgstr "Pokazuj tytuł okna w trybie skalowania" -msgid "Zoom Windows In Scale" -msgstr "Przybliż okna w trybie skalowania" +msgid "Zoom Window" +msgstr "Przybliż okno" -msgid "Zoom windows while in scale mode" +msgid "Zoom window while in scale mode" msgstr "Przybliżaj okna w trybie skalowania" msgid "Filter Case Insensitive" @@ -3460,8 +3207,9 @@ msgid "Use case insensitive string matching when filtering." msgstr "Używaj filtra, który nie zwraca uwagi na wielkość liter." +#, fuzzy msgid "Window title filter facility for the scale plugin" -msgstr "" +msgstr "Ułatwienie dla pluginu skalowania filtru tytułu okna" msgid "" "Embeds a Guile scheme interpreter and provides bindings for meaningful " @@ -3502,12 +3250,15 @@ "management protocol. This setting only should be used in KDE, as only KDE's " "session manager also saves those applications." msgstr "" +"Próbuj również zapisać i przywrócić stare aplikacje, które nie wspierają " +"protokołów zarządzania sesją X. To ustawienie powinno być używane wyłącznie " +"w KDE, jako że tylko menadżer sesji KDE zapisuje te aplikacje" msgid "Save Legacy Apps" -msgstr "" +msgstr "Zapisz stare aplikacje" msgid "Session Management" -msgstr "" +msgstr "Zarządzanie sesją" msgid "Talk to session manager and save/load window state" msgstr "Komunikacja z menedżerem sesji i zapis/wczytywanie stanu okien" @@ -3546,12 +3297,12 @@ "Skaluj okno do rozmiaru pewnej części ekranu. Odpowiednio: do połowy, jednej " "trzeciej i jednej szóstej ekranu." -#, fuzzy msgid "Scale interval" msgstr "Interwał skalowania" +#, fuzzy msgid "Shelf" -msgstr "" +msgstr "Półka" msgid "" "The number to divide the scale factor by or multiply it with when " @@ -3570,6 +3321,8 @@ "Visually scales a window down to allow easy monitoring without true/" "traditional resizing." msgstr "" +"Wizualnie zmniejsza okno by umożliwić łatwiejszy monitoring bez faktycznej " +"zmiany rozmiaru" msgid "Background intensity" msgstr "Intensywnośc tła" @@ -3593,17 +3346,14 @@ msgid "Cover offset" msgstr "" -#, fuzzy msgid "Disabled" -msgstr "Odległość" +msgstr "Wyłączony" -#, fuzzy msgid "Fade in/out speed" -msgstr "Czas pojawiania i zanikania" +msgstr "Szybkość pojawiania się i zanikania" -#, fuzzy msgid "Fade speed" -msgstr "Czas przenikania" +msgstr "Szybkość zanikania" msgid "Flip" msgstr "Odwracanie" @@ -3645,13 +3395,13 @@ msgstr "Prędkośc myszy" msgid "On activated output" -msgstr "" +msgstr "Na aktywowanym wyjściu" msgid "One big switcher" -msgstr "" +msgstr "Jeden wielki przełącznik" msgid "Overlay an icon on windows in the shift switcher" -msgstr "" +msgstr "Nałóż ikonę na okno w Przesuwanym Przełączniku Aplikacji" msgid "Rotation angle of the flip animation" msgstr "Kąt obrotu dla animacji odwracania" @@ -3659,44 +3409,41 @@ msgid "" "Selects how the switcher is displayed if multiple output devices are used." msgstr "" +"Wybiera w jaki sposób przełącznik jest wyświetlany gdy wiele urządzeń " +"wyjściowych jest w użyciu" msgid "Shift Switcher" -msgstr "" +msgstr "Przesuwany Przełącznik Aplikacji" msgid "Shift Switcher Plugin" -msgstr "" +msgstr "Plugin przesuwanego przełącznika aplikacji" -#, fuzzy msgid "Shift Windows" -msgstr "Rozmieść równomiernie" +msgstr "Przesuń okna" -#, fuzzy msgid "Shift animation speed" -msgstr "Prędkość Animacji" +msgstr "Prędkość animacji przesuwania" -#, fuzzy msgid "Shift speed" -msgstr "Szybkość" +msgstr "Szybkość przesuwania" -#, fuzzy msgid "Shift timestep" -msgstr "Krok czasowy zakładkowania" +msgstr "Krok czasowy przesuwania" msgid "Switcher mode" -msgstr "" +msgstr "Tryb przełącznika" msgid "Switcher mode." -msgstr "" +msgstr "Tryb przełącznika" msgid "Terminate" -msgstr "" +msgstr "Zakończ" msgid "Terminate switcher." -msgstr "" +msgstr "Zakończ przełącznik" -#, fuzzy msgid "Windows that should be shown in the shift switcher" -msgstr "Okna które mogą być grupowane" +msgstr "Okna które powinny być pokazywane w przesuwanym przełączniku aplikacji" msgid "Access your desktop easily" msgstr "Łatwiejszy dostęp do Twojego pulpitu" @@ -3704,18 +3451,30 @@ msgid "Direction of window movement" msgstr "Kierunki ruchu okien" +msgid "Down" +msgstr "W dół" + +msgid "Left" +msgstr "W lewo" + msgid "Left/Right" msgstr "W lewo i w prawo" msgid "Movement Direction" msgstr "Kierunek ruchu" +msgid "Right" +msgstr "W prawo" + msgid "Show desktop" msgstr "Pokaż pulpit" msgid "To Corners" msgstr "Do narożników" +msgid "Up" +msgstr "W górę" + msgid "Up/Down" msgstr "W górę i w dół" @@ -3744,120 +3503,99 @@ "Typy okien które powinny być wysunięte poza ekran podczas pokazywania pulpitu" msgid "Additive blending" -msgstr "" +msgstr "Aktywuj przenikanie" -#, fuzzy msgid "Additive blending of particles" -msgstr "Ilość cząsteczek" +msgstr "Aktywuj przenikanie cząsteczek" -#, fuzzy msgid "Darken backgound" -msgstr "Zaciemniaj tło" +msgstr "Ściemnij tło" -#, fuzzy msgid "Darken background under particles" -msgstr "Zaciemniaj tło" +msgstr "Ściemnij tło pod cząsteczkami" msgid "Emiters" -msgstr "" +msgstr "Emitery" -#, fuzzy msgid "Have random colors for the particles" -msgstr "Losowy kolor efektu ognia, znany również jako Mistyczny Płomień." +msgstr "Losowy kolor cząsteczek" -#, fuzzy msgid "Increases the visibility of the mouse pointer" -msgstr "Skaluj kursor myszy" +msgstr "Zwiększa widoczność wskaźnika myszy" -#, fuzzy msgid "Number Of Particles" msgstr "Ilość cząsteczek" -#, fuzzy msgid "Number of particle emiters." -msgstr "Ilość cząsteczek" +msgstr "Ilość emiterów cząsteczek" -#, fuzzy msgid "Number of particles." msgstr "Ilość cząsteczek" -#, fuzzy msgid "Particle Color" -msgstr "Kolor cząsteczki ognia" +msgstr "Kolor cząsteczki" -#, fuzzy msgid "Particle Life" -msgstr "Czas życia cząsteczki ognia" +msgstr "Czas życia cząsteczki" -#, fuzzy msgid "Particle Options" -msgstr "Pozostałe opcje" +msgstr "Opcje cząsteczek" -#, fuzzy msgid "Particle Size" -msgstr "Wielkość cząsteczki ognia" +msgstr "Wielkość cząsteczki" -#, fuzzy msgid "Particle Slowdown" -msgstr "Spowolnienie szybkości cząsteczki ognia" +msgstr "Spowolnienie szybkości cząsteczki" -#, fuzzy msgid "Particle color." -msgstr "Kolor cząsteczki ognia." +msgstr "Kolor cząsteczki" -#, fuzzy msgid "Particle life." -msgstr "Czas życia cząsteczki ognia." +msgstr "Czas życia cząsteczki" -#, fuzzy msgid "Particle size." -msgstr "Rozmiar cząsteczki ognia." +msgstr "Rozmiar cząsteczki" -#, fuzzy msgid "Particle slowdown." -msgstr "Spowolnienie szybkości cząsteczki ognia." +msgstr "Spowolnienie szybkości cząsteczki" -#, fuzzy msgid "Randomly Colored Particles" -msgstr "Losowe kolorowanie płomieni" +msgstr "Losowe kolorowanie cząsteczek" -#, fuzzy msgid "Ring radius" -msgstr "Zaokrląglenie obramowań" +msgstr "Kąt pierścienia" -#, fuzzy msgid "Rotation speed" -msgstr "Prędkość Animacji" +msgstr "Szybkość obrotu" -#, fuzzy msgid "Rotation speed." -msgstr "Prędkość Animacji" +msgstr "Szybkość obrotu" -#, fuzzy msgid "Show mouse" -msgstr "Synchronizuj Mysz" +msgstr "Pokaż mysz" -#, fuzzy msgid "Toggle the mouse pointer trail." -msgstr "Skaluj kursor myszy" +msgstr "Przełącznik śladu kursora myszy" msgid "Alt" msgstr "Alt" +#, fuzzy msgid "Avoid Snap Modifier" -msgstr "" +msgstr "Unikaj modyfikatora przypinania" +#, fuzzy msgid "Choose 'Resistance', 'Attraction' or 'Full Mode'." -msgstr "" +msgstr "Wybierz \"Opór\", \"Przyciąganie\" lub \"Pełny tryb\"" msgid "Control" msgstr "Control" msgid "Edge Attraction Distance" -msgstr "" +msgstr "Dystans przyciągania krawędzi" msgid "Edge Resistance Distance" -msgstr "" +msgstr "Dystans oporu krawędzi" msgid "Edge attraction" msgstr "Przyciąganie krawędzi" @@ -3869,11 +3607,11 @@ msgstr "Krawędzie" msgid "Enables windows edges resistance" -msgstr "" +msgstr "Włącza opór krawędzi okien" #, fuzzy msgid "Meta" -msgstr "Metal" +msgstr "Meta" msgid "Screen edges" msgstr "Krawędzie ekranu" @@ -3882,14 +3620,13 @@ msgstr "Shift" msgid "Snap Type" -msgstr "" +msgstr "Typ przypinania" msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." msgstr "Przypinaj do 'Krawędzi ekranów','Krawędzi okien','Obu z nich'" -#, fuzzy msgid "Snapping Windows" -msgstr "Rozgrupuj okna" +msgstr "Przypinanie okien" msgid "The distance until edge attraction takes place." msgstr "Dystans przy którym przyciąganie krawędzi nie następuje." @@ -3898,11 +3635,10 @@ msgstr "Dystans przy którym przyciąganie krawędzi ma miejsce." msgid "Use this bindings to avoid snapping." -msgstr "" +msgstr "Użyj tych obramowań, by uniknąć przypinania" -#, fuzzy msgid "Window edges" -msgstr "Typy okien" +msgstr "Krawędzie okien" msgid "Bottom to Top" msgstr "Z dołu do góry" @@ -3924,7 +3660,6 @@ msgid "Enables alpha blending of snowflakes." msgstr "Włacza przezroczystość kanału alpha dla płatków śniegu" -#, fuzzy msgid "Enables textured snowflakes. If not selected, color gradients are used." msgstr "" "Włącza tekstury płatków śniegu. Jesli nie włączone, zostnie użyty gradient " @@ -4066,25 +3801,280 @@ msgid "Start Splash." msgstr "Włącz ekran powitalny" +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "Wartość nieprzejrzystości (w procentach) niezaznaczonych okien." + +#, fuzzy +msgid "Behavior" +msgstr "Zachowanie" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Przyciemnij tło podczas pokazywania pierścienia" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Szerokość miniatury" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Aktywuj wybrane okno" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Pogrubienie tytułu okna" + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Grubość okna, widziana przy podniesieniu go w trybie 3D" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Kolor %d dla gradientu w tle." + +#, fuzzy +msgid "Windows" +msgstr "Okna 3D" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Okna które powinny być pokazywane w przesuwanym przełączniku aplikacji" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Jasność tła (w %) podczas rysowania" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Nie pokazuj aplikacji na pagerze" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Przesuń na pulpit" + +msgid "Bring Selected To Front" +msgstr "" + +msgid "Centered" +msgstr "Wyśrodkowane" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Wypełnij kolorem prostokąt zaznaczania" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Generuj mipmapy kiedy jest to możliwe dla lepszej jakości skalowania." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Kolor podświetlenia" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Kolor podświetlenia" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Kolor podświetlenia" + +#, fuzzy +msgid "Icon" +msgstr "Do środka" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Podświetlenie okna" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmapy" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Kolor używany do podświetlenia podniesionego okna" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Następne okno" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Następne okno (wszystkie pulpity)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Następne okno (grupa)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Następne okno (grupa)" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "Okna z możliwością grupowania" + +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "" +"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz następne " +"okno." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz następne " +"okno obecnego programu." + +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz następne " +"okno spośród wszystkich." + +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "" +"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz poprzednie " +"okno." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz poprzednie " +"okno obecnego programu." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Pokaż przełącznik aplikacji, jeśli nie jest widoczny, i wybierz poprzednie " +"okno spośród wszystkich." + +#, fuzzy +msgid "Prev Panel" +msgstr "Podgląd Szybkiego Wyboru" + +#, fuzzy +msgid "Prev window" +msgstr "Poprzednie okno" + +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Poprzednie okno (wszystkie pulpity)" + +#, fuzzy +msgid "Prev window (Group)" +msgstr "Poprzednie okno (grupa)" + +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Poprzednie okno (grupa)" + +msgid "Row Alignment" +msgstr "" + +#, fuzzy +msgid "Select next panel type window." +msgstr "Wybór położenia tytułu okna." + +msgid "Select next window without showing the popup window." +msgstr "" + +#, fuzzy +msgid "Select previous panel type window." +msgstr "Wybór położenia tytułu okna." + +msgid "Select previous window without showing the popup window." +msgstr "" + +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Podświetlenie okna" + +#, fuzzy +msgid "Show Rectangle" +msgstr "Prostokątny" + +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Pokazuj tytuł okna w miniaturce." + +msgid "Show minimized windows" +msgstr "Pokazuj zminimalizowane okna" + +msgid "Static Application Switcher" +msgstr "" + +#, fuzzy +msgid "Switcher speed" +msgstr "Tryb przełącznika" + +#, fuzzy +msgid "Switcher timestep" +msgstr "Krok czasowy przesuwania" + +#, fuzzy +msgid "Switcher windows" +msgstr "Filtrowane okna" + +#, fuzzy +msgid "Taskbar Entry" +msgstr "Pasek Zadań" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" + +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Okna które powinny być pokazywane w przesuwanym przełączniku aplikacji" + msgid "Render text to texture" msgstr "Renderuje tekst do tekstury." msgid "Text" msgstr "Tekst" -#, fuzzy msgid "Enable Titles" -msgstr "Włącz tekstury" +msgstr "Włącz tytuły" -#, fuzzy msgid "Fade In/Out Duration" -msgstr "Czas pojawiania i zanikania" +msgstr "Czas pojawiania się i zanikania" -#, fuzzy msgid "Fade In/Out Duration in seconds." -msgstr "Czas pojawiania i zanikania" +msgstr "Czas pojawiania się i zanikania w sekundach" -#, fuzzy msgid "Generate Mipmaps" msgstr "Stwórz mipmapy" @@ -4098,32 +4088,32 @@ msgstr "Rysuj okno jako tło" msgid "Paint Window Like Background instead of Glow." -msgstr "" +msgstr "Rysuj okno jako tło zamiast poświaty" msgid "Set it if the Taskbar shows only Windows of Current Viewport." -msgstr "" +msgstr "Ustaw jeśli pasek zadań pokazuje tylko okna aktualnego pulpitu" +#, fuzzy msgid "Should be the window title Bold." -msgstr "" +msgstr "Pogrubienie tytułu okna" -#, fuzzy msgid "Show Delay" -msgstr "Opóźnienie wyświetlenia okna zakładek" +msgstr "Opóźnienie wyświetlenia" msgid "Show Window Title in Thumbnail." msgstr "Pokazuj tytuł okna w miniaturce." msgid "Size of Thumbnail Border." -msgstr "" +msgstr "Rozmiar ramki miniaturki" msgid "Taskbar" msgstr "Pasek Zadań" msgid "Taskbar Shows Only Windows of Current Viewport" -msgstr "" +msgstr "Pasek zadań pokazuje tylko okna aktualnego pulpitu" msgid "Thumbnail Background and Border Glow Color." -msgstr "" +msgstr "Tło miniaturki i kolor poświaty ramki" msgid "Thumbnail Border Glow Color" msgstr "Kolor, jakim świecą się ramki miniaturek okien" @@ -4381,10 +4371,10 @@ msgstr "Typy okien obługiwane przez Tropiciela" msgid "Action name for initiate" -msgstr "" +msgstr "Nazwa akcji dla rozpoczęcia" msgid "Action name for initiate/terminate" -msgstr "Nazwa akcji dla inicjacji/przerwania" +msgstr "Nazwa akcji dla rozpoczęcia/zakończenia" msgid "Begin Viewport Switch" msgstr "Rozpocznij zmianę wirtualnych pulpitów" @@ -4393,7 +4383,7 @@ msgstr "Rozpoczij wpisywanie numeru wirtualnego pulpitu" msgid "Desktop-based Viewport Switching" -msgstr "" +msgstr "Przełączanie wirtualnych pulpitów oparte o ekran" msgid "Go to specific viewport" msgstr "Idź do konkretnego wirtualnego pulpitu" @@ -4413,11 +4403,9 @@ msgid "Move Left" msgstr "W lewo" -#, fuzzy msgid "Move Next" msgstr "Następny" -#, fuzzy msgid "Move Prev" msgstr "Poprzedni" @@ -4430,24 +4418,23 @@ msgid "Move down" msgstr "W dół" -#, fuzzy msgid "Move to the left" -msgstr "Z prawej do lewej" +msgstr "Przejdź na lewo" msgid "Move to the next viewport" -msgstr "Idź do następnego pulpitu" +msgstr "Przejdź do następnego pulpitu" msgid "Move to the previous viewport" -msgstr "Idź do poprzedniego pulpitu" +msgstr "Przejdź do poprzedniego pulpitu" msgid "Move to the right" -msgstr "Z lewej do prawej" +msgstr "Przejdź w prawo" msgid "Move up" -msgstr "" +msgstr "Przejdź do góry" msgid "Number-Based Viewport Switching" -msgstr "" +msgstr "Zmiana wirtualnych pulpitów oparta o numerację" msgid "Plugin for initiate action" msgstr "Wtyczka dla inicjacji akcji" @@ -4456,85 +4443,89 @@ msgstr "Wtyczka dla inicjacji/akcji akcji" msgid "Switch to Viewport 1" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 1" msgid "Switch to Viewport 10" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 10" msgid "Switch to Viewport 11" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 11" msgid "Switch to Viewport 12" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 12" msgid "Switch to Viewport 2" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 2" msgid "Switch to Viewport 3" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 3" msgid "Switch to Viewport 4" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 4" msgid "Switch to Viewport 5" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 5" msgid "Switch to Viewport 6" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 6" msgid "Switch to Viewport 7" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 7" msgid "Switch to Viewport 8" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 8" msgid "Switch to Viewport 9" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 9" msgid "Switch to viewport 1" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 1" msgid "Switch to viewport 10" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 10" msgid "Switch to viewport 11" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 11" msgid "Switch to viewport 12" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 12" msgid "Switch to viewport 2" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 2" msgid "Switch to viewport 3" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 3" msgid "Switch to viewport 4" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 4" msgid "Switch to viewport 5" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 5" msgid "Switch to viewport 6" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 6" msgid "Switch to viewport 7" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 7" msgid "Switch to viewport 8" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 8" msgid "Switch to viewport 9" -msgstr "Zmień na pulpit wirtualny %d" +msgstr "Zmień na pulpit wirtualny 9" msgid "Viewport Switcher" -msgstr "" +msgstr "Przełącznik wirtualnych pulpitów" +#, fuzzy msgid "Allow Wrap-Around" -msgstr "" +msgstr "Dopuszczaj rozpoczynanie od początku" +#, fuzzy msgid "Allow wrap-around when moving the wall up/down/left/right" msgstr "" +"Dopuszczaj rozpoczynanie od początku podczas przenoszenia ścianek do góry/na " +"dół/w lewo/w prawo" msgid "Arrow Colors" msgstr "Kolory strzałek" @@ -4542,9 +4533,8 @@ msgid "Background Gradient" msgstr "Gradient tła" -#, fuzzy msgid "Base Color" -msgstr "Podstawowy kolor okna zakładek" +msgstr "Kolor wyjściowy" msgid "Desktop Wall" msgstr "Ściana pulpitu" @@ -4552,9 +4542,10 @@ msgid "Desktop Wall Plugin" msgstr "Wtyczka ściany pulpitu" -#, fuzzy msgid "Duration (in s) for wall sliding viewport switching animation" -msgstr "Czas (w milisekundach) trwania animacji rozmieszczenia" +msgstr "" +"Czas (w sekundach) trwania animacji przełączania się między wirtualnymi " +"pulpitami" msgid "" "Duration (in s) the switch target preview should remain visible after " @@ -4562,26 +4553,26 @@ msgstr "" msgid "Edge Flip DnD" -msgstr "" +msgstr "Przewracanie krawędzi metodą \"Przeciągnij i Upuść\"" msgid "Edge Flip Move" -msgstr "" +msgstr "Przewracanie krawędzi podczas ruchu" msgid "Edge Flip Pointer" -msgstr "" +msgstr "Przewracanie krawędzi przy pomocy kursora" msgid "Edge Flipping" -msgstr "" +msgstr "Przewracanie krawędzi kostki" #, fuzzy msgid "Edge Radius" msgstr "Zaokrląglenie obramowań" msgid "Edge flipping" -msgstr "" +msgstr "Przewracanie krawędzi kostki" msgid "First color for the background gradient of the switcher window." -msgstr "" +msgstr "Pierwszy kolor dla gradientu tła przełączanego okna" msgid "First color for the thumb gradient of the switcher window." msgstr "" @@ -4590,49 +4581,46 @@ msgstr "" msgid "First color of the arrow of the switcher window." -msgstr "" +msgstr "Pierwszy kolor strzałki przełączanego okna" -#, fuzzy msgid "Flip Down" -msgstr "W górę i w dół" +msgstr "Przewróć w dół" msgid "Flip Left" -msgstr "Przerzuć w lewo" +msgstr "Przewróć w lewo" msgid "Flip Right" -msgstr "Przerzuć w prawo" +msgstr "Przewróć w prawo" -#, fuzzy msgid "Flip Up" -msgstr "Przerzuć w górę" +msgstr "Przewróć w górę" -#, fuzzy msgid "Flip down" -msgstr "Przerzuć w dół" +msgstr "Przewróć w dół" msgid "Flip left" -msgstr "Przerzuć w lewo" +msgstr "Przewróć w lewo" msgid "Flip right" -msgstr "Przerzuć w prawo" +msgstr "Przewróć w prawo" msgid "Flip up" -msgstr "" +msgstr "Przewróć w górę" msgid "Flip viewport when dragging an object to a screen edge" -msgstr "" +msgstr "Przewróć wirtualny pulpit przeciągając obiekt do krawędzi ekranu" msgid "Flip viewport when moving a window to a screen edge" -msgstr "" +msgstr "Przewróć wirtualny pulpit przenosząc okno do krawędzi ekranu" msgid "Flip viewport when moving the pointer to a screen edge" -msgstr "" +msgstr "Przewróć wirtualny pulpit przenosząc kursor do krawędzi ekranu" msgid "Highlight Gradient" msgstr "Podświetl gradient" msgid "How should a multimonitor configuration be handled" -msgstr "" +msgstr "Jak powinna być załatwiana konfiguracja wielu monitorów" msgid "Move Down With Window" msgstr "Idź w dół z oknem" @@ -4647,116 +4635,118 @@ msgstr "Idź w górę z oknem" msgid "Move along the wall down" -msgstr "" +msgstr "Poruszaj wzdłuż dolnej ściany" msgid "Move along the wall to the left" -msgstr "" +msgstr "Poruszaj wzdłuż ściany w lewo" msgid "Move along the wall to the next viewport" -msgstr "" +msgstr "Poruszaj wzdłuż ściany do następnego wirtualnego pulpitu" msgid "Move along the wall to the previous viewport" -msgstr "" +msgstr "Poruszaj wzdłuż ściany do poprzedniego wirtualnego pulpitu" msgid "Move along the wall to the right" -msgstr "" +msgstr "Poruszaj wzdłuż ściany w prawo" msgid "Move along the wall up" -msgstr "" +msgstr "Poruszaj wzdłuż ściany w górę" #, fuzzy msgid "Move with window along the wall down" -msgstr "Przenoś wszystkie okna w grupie" +msgstr "Przenoś z oknem wzdłuż ściany w dół" msgid "Move with window along the wall to the left" -msgstr "" +msgstr "Przenoś z oknem wzdłuż ściany w lewo" msgid "Move with window along the wall to the right" -msgstr "" +msgstr "Przenoś z oknem wzdłuż ściany w prawo" -#, fuzzy msgid "Move with window along the wall up" -msgstr "Przenoś wszystkie okna w grupie" +msgstr "Przenoś z oknem wzdłuż ściany w górę" msgid "Move with window within wall" -msgstr "" +msgstr "Przenoś z oknem w obrębie ściany" msgid "Move within wall" -msgstr "" +msgstr "Przenoś w obrębie ściany" msgid "Multimonitor behavior" -msgstr "" +msgstr "Zachowanie przy wielu monitorach" msgid "Outline Color" msgstr "Kolor obrysu" msgid "Outline color of the switcher window." -msgstr "" +msgstr "Kolor obrysu przełączanego okna" msgid "Preview Scale" -msgstr "" +msgstr "Podgląd Szybkiego Wyboru" msgid "Radius of the rounded edge" msgstr "Promień zaokrąglonej krawędzi" msgid "Second color for the background gradient of the switcher window." -msgstr "" +msgstr "Drugi kolor dla gradientu tła przełączanego okna" msgid "Second color for the thumb gradient of the switcher window." -msgstr "" +msgstr "Drugi kolor dla gradientu miniaturki przełączanego okna" +#, fuzzy msgid "Second color for the thumb highlight gradient of the switcher window." -msgstr "" +msgstr "Drugi kolor dla podświetlonego gradientu miniaturki przełączanego okna" msgid "Second color of the arrow of the switcher window." -msgstr "" +msgstr "Drugi kolor strzałki przełączanego okna" msgid "Shadow Color" msgstr "Kolor cienia" msgid "Show Live Viewport Previews" -msgstr "" +msgstr "Pokaż żywy podgląd wirtualnych pulpitów" msgid "Show Viewport Switcher Preview" -msgstr "" +msgstr "Pokaż podgląd przełączania wirtualnych pulpitów" msgid "Show live viewport previews in switcher window" -msgstr "" +msgstr "Pokaż żywy podgląd wirtualnych pulpitów w oknie przełączania" msgid "Show switcher window while switching viewports" -msgstr "" +msgstr "Pokaż okno przełączania podczas przełączania wirtualnego pulpitu" #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Wielkość podglądu w %" +#, fuzzy msgid "Switch Target Preview Visibility Time" -msgstr "" +msgstr "Zmień czas widoczności celu podglądu" msgid "Switch all" -msgstr "" +msgstr "Przełącz wszystko" msgid "Switch separately" -msgstr "" +msgstr "Przełączaj pojedynczo" msgid "Third color for the background gradient of the switcher window." -msgstr "" +msgstr "Trzeci kolor dla gradientu tła przełączanego okna" msgid "Thumb Gradient" msgstr "Gradient miniaturki" +#, fuzzy msgid "Viewport Switch Preview" -msgstr "" +msgstr "Przełącznik podglądu wirtualnych pulpitów" msgid "Viewport Switching" -msgstr "" +msgstr "Przełączanie wirtualnych pulpitów" #, fuzzy msgid "Wall Sliding Duration" msgstr "Czas trwania animacji" msgid "Width of the border between the previews" -msgstr "" +msgstr "Szerokość granicy pomiędzy podglądami" msgid "Background fill type." msgstr "Rodzaj wypełnienia tła" @@ -4767,17 +4757,11 @@ msgid "Center Tiled" msgstr "" -#, fuzzy -msgid "Centered" -msgstr "Płomienie" - -#, fuzzy msgid "Color 1" -msgstr "Kolory" +msgstr "Kolor 1" -#, fuzzy msgid "Color 2" -msgstr "Kolory" +msgstr "Kolor 2" msgid "Draw the desktop wallpaper" msgstr "Rysuj tło pulpitu" @@ -4824,66 +4808,51 @@ msgid "Wallpaper" msgstr "Tło" -#, fuzzy msgid "Background Brightness" msgstr "Jasność tła" -#, fuzzy msgid "Background Saturation" msgstr "Nasycenie tła" -#, fuzzy msgid "Background in Widget Mode" msgstr "Tło w trybie widgetów" -#, fuzzy msgid "Brightness of non-widget windows in widget modes." msgstr "Jasność okien nie będących widgetami w trybie widgetów." -#, fuzzy msgid "End Widget Mode on Click" msgstr "Zakończ tryb widgetów kliknięciem" -#, fuzzy msgid "End widget mode when a non-widget window is clicked." msgstr "Zakończ tryb widgetów kliknięciem w okno nie będące widgetem." -#, fuzzy msgid "Focus Widget Layer" -msgstr "Warstwa widgetów" +msgstr "Wybierz warstwę widgetów" msgid "Focus a window in the widget layer when activating the layer" -msgstr "" +msgstr "Wybierz okno w warstwie widgetów przy aktywacji warstwy" -#, fuzzy msgid "Saturation of non-widget windows in widget modes." msgstr "Nasycenie okien nie będących widgetami w trybie widgetów" -#, fuzzy msgid "Show or hide widget windows" msgstr "Pokazuj lub ukrywaj okna widgetów" -#, fuzzy msgid "Show widget windows on a separate layer" msgstr "Pokaż okna widgetów na osobnej warstwie" -#, fuzzy msgid "Time (in s) for fading into/out of the widget layer." -msgstr "Czas (w sekundach) zanikania do/z warstwy widgetów." +msgstr "Czas (w sekundach) zanikania do/z warstwy widgetów" -#, fuzzy msgid "Toggle Widget Display" msgstr "Przełącza pokazywanie widgetów" -#, fuzzy msgid "Widget Layer" msgstr "Warstwa widgetów" -#, fuzzy msgid "Widget Windows" msgstr "Okna - widgety" -#, fuzzy msgid "Windows that always should be treated as widgets" msgstr "Okna, które mają być zawsze traktowane jako widgety" @@ -4911,14 +4880,25 @@ msgid "Height values" msgstr "Wartości wysokości" +#, fuzzy msgid "Matches" -msgstr "" +msgstr "Wybory" + +#, fuzzy +msgid "Maximized" +msgstr "Maksymalizacja" + +#, fuzzy +msgid "Maximized windows" +msgstr "Okna nie do zmaksymalizowania" +#, fuzzy msgid "No ARGB visuals" -msgstr "" +msgstr "Bez wyglądu ARGB" +#, fuzzy msgid "No focus" -msgstr "Brak cieni" +msgstr "Bez wyboru" msgid "Non closable windows" msgstr "Okna nie do zamknięcia" @@ -4935,40 +4915,35 @@ msgid "Non resizable windows" msgstr "Okna których rozmiaru nie można zmienić" -#, fuzzy msgid "Set window as non closable" msgstr "Ustaw okno jako niezamykalne" -#, fuzzy msgid "Set window as non maximizable" -msgstr "Ustaw okno jako niemaksymalizowane" +msgstr "Ustaw okno jako niemaksymalizowlne" -#, fuzzy msgid "Set window as non minimizable" -msgstr "Ustaw okno jako nieminimalizowane" +msgstr "Ustaw okno jako nieminimalizowalne" -#, fuzzy msgid "Set window as non movable" msgstr "Ustaw okno jako nieruchome" msgid "Set window as non resizable" -msgstr "" +msgstr "Ustaw okno o niezmiennej wielkości" msgid "Set windows rules" msgstr "Ustaw reguły dla typów okien" msgid "Size rules" -msgstr "" +msgstr "Reguły wielkości" -#, fuzzy msgid "Sized Windows" -msgstr "Rozmieść równomiernie" +msgstr "" msgid "Skip pager" msgstr "" msgid "Skip taskbar" -msgstr "" +msgstr "Pomiń pasek zadań" msgid "Sticky" msgstr "Lepki" @@ -4976,12 +4951,11 @@ msgid "Sticky windows" msgstr "Okna, które mają domyślnie być lepkie" -#, fuzzy msgid "Width values" -msgstr "Szerokość" +msgstr "Wartości szerokości" msgid "Window Rules" -msgstr "Typy okien" +msgstr "Reguły okien" msgid "Windows that should be resized by default" msgstr "Okna, które powinny mieć domyślnie zmieniony rozmiar" @@ -4991,48 +4965,45 @@ "Okna które mają być domyślnie traktowane jako nie wspierające " "przezroczystości" +#, fuzzy msgid "Windows will not have focus" -msgstr "" +msgstr "Okna, które nie będą miały ostrości" msgid "\"On all desktops\" sticky match" msgstr "" msgid "AIGLX Fragment Parameter Fix" +msgstr "Parametr naprawy fragmentu AIGLX" + +msgid "Convert Urgency to Demands Attention" msgstr "" msgid "Firefox Menu Fix" msgstr "Poprawka menu Firefoksa" -#, fuzzy msgid "Fix broken glProgramEnvParameter4f implementation." -msgstr "Napraw implementację glProgramEnvParameter4f" +msgstr "Napraw popsutą implementację glProgramEnvParameter4f" -#, fuzzy msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." -msgstr "Napraw błąd GLX_MESA_copy_sub_buffer w XGL z fglrx." +msgstr "Napraw błąd GLX_MESA_copy_sub_buffer na XGL z fglrx" msgid "Fix screen updates in XGL with fglrx." msgstr "Napraw aktualizację ekranu w XGL z fglrx." -#, fuzzy msgid "Fix window type of Firefox and Thunderbird menus." -msgstr "Napraw okna w menu Firefox i Thunderbird." +msgstr "Napraw typ okna menu Firefoxa i Thunderbirda" -#, fuzzy msgid "Fix window type of OpenOffice.org menus." -msgstr "Napraw okna w menu OpenOffice.org" +msgstr "Napraw typ okna menu OpenOffice.org" -#, fuzzy msgid "Fix window type of notification daemon windows." -msgstr "Napraw okno w powiadomieniach okien daemona." +msgstr "Napraw typ okna powiadomień okien daemona" -#, fuzzy msgid "Fix window type of various Java windows." -msgstr "Napraw okno w aplikacjach Java" +msgstr "Napraw typ okna różnych aplikacji Java" -#, fuzzy msgid "Fix window type of various Qt windows." -msgstr "Napraw okno w aplikacjach Qt" +msgstr "Napraw typ okna różnych aplikacji Qt" msgid "Java Window Fix" msgstr "Poprawka dla okien programów w Javie" @@ -5040,13 +5011,20 @@ msgid "Legacy Fullscreen Support" msgstr "Obsługa trybu pełnoekranowego w starszych aplikacjach." +#, fuzzy msgid "Make \"on all desktops\" windows \"sticky\"" -msgstr "" +msgstr "Zrób \"lepkie\" okna \"na wszystkich ekranach\"" msgid "" "Make \"on all desktops\" windows sticky. Sticky windows are visible on all " "viewports." msgstr "" +"Zrób \"lepkie\" okna na wszystkich ekranach. Lepkie okna są widoczne na " +"wszystkich wirtualnych pulpitach" + +#, fuzzy +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "Aktywuj następne okno, które jest oznaczone jako \"wymagające uwagi\"" msgid "Make Wine and legacy applications fullscreen properly." msgstr "" @@ -5074,6 +5052,322 @@ msgid "Workarounds" msgstr "Obejścia problemów" +#~ msgid "Airplane" +#~ msgstr "Samolot" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Długość lotu samolotu" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Interwał czasowy animacji dla intensywnych efektów" + +#~ msgid "Automatic" +#~ msgstr "Automatyczny" + +#~ msgid "Beam" +#~ msgstr "Rozbłysk" + +#~ msgid "Beam Color" +#~ msgstr "Kolor rozbłysku" + +#~ msgid "Beam Life" +#~ msgstr "Długość trwania rozbłysku" + +#~ msgid "Beam Slowdown" +#~ msgstr "Spowolnienie rozbłysku" + +#~ msgid "Beam Spacing" +#~ msgstr "Odległość między błyskami" + +#~ msgid "Beam Up" +#~ msgstr "Rozbłysk" + +#~ msgid "Beam Width" +#~ msgstr "Szerokość rozbłysku" + +#~ msgid "Beam color." +#~ msgstr "Kolor błysku" + +#~ msgid "Beam life." +#~ msgstr "Długość trwania rozbłysku" + +#~ msgid "Beam slowdown." +#~ msgstr "Spowolnienie rozbłysku" + +#~ msgid "Beam width." +#~ msgstr "Szerokość rozbłysku" + +#~ msgid "Burn" +#~ msgstr "Płomień" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Kierunek spadania kostek domina" + +#~ msgid "Explode" +#~ msgstr "Eksplozja" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Kierunek spadania klocków domina." + +#~ msgid "Fire" +#~ msgstr "Ogień" + +#~ msgid "Fire Smoke" +#~ msgstr "Dym z ognia" + +#~ msgid "Fire constant speed" +#~ msgstr "Stała prędkość ognia" + +#~ msgid "Fire direction" +#~ msgstr "Kierunek ognia" + +#~ msgid "Fire direction." +#~ msgstr "Kierunek ognia" + +#~ msgid "Fire smoke." +#~ msgstr "Dym z ognia." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Leć do paska zadań podczas minimalizacji" + +#~ msgid "Fold" +#~ msgstr "Zginanie" + +#~ msgid "Fold Direction" +#~ msgstr "Kierunek składania" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Kierunek otwierania zagięcia dla części w efekcie Razr" + +#~ msgid "Hexagonal" +#~ msgstr "Sześciokątny" + +#~ msgid "In" +#~ msgstr "Do środka" + +#~ msgid "In-out" +#~ msgstr "Do środka i na zewnątrz" + +#~ msgid "Leaf Spread" +#~ msgstr "Efekt rozpościerania liści" + +#~ msgid "Left-right" +#~ msgstr "Na boki" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Długośc drogi lotu samolotu" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Uzależnij trwanie efektu ognia od wysokości okna" + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Kierunki poruszania się elementów okien" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Ilość cząsteczek ognia" + +#~ msgid "Number of fire particles." +#~ msgstr "Ilość cząsteczek ognia" + +#~ msgid "Out" +#~ msgstr "Wyjście" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Kierunek otwierania zagięcia w animacji Razr" + +#~ msgid "Rectangular" +#~ msgstr "Prostokątny" + +#~ msgid "Rotation Angle" +#~ msgstr "Kąt Obrotu" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Kąt obrotu animowanych części okna (w stopniach)." + +#~ msgid "Skewer" +#~ msgstr "Rożen" + +#~ msgid "Skewer Direction" +#~ msgstr "Kierunek animacji" + +#~ msgid "Spacing between beams." +#~ msgstr "Odstęp między rozbłyskami" + +#~ msgid "Tessellation Type" +#~ msgstr "Typ tesselacji" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Typ tesselacji dla eksplodujących fragmentów okna." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Typ tesselacji dla fragmentów okna." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Ilość czasu w milisekundach pomiędzy renderowaniem pojedynczych klatek " +#~ "intensywnych animacji (Np.Ogień, Rozbłysk). Im wyższa liczba, tym " +#~ "bardziej tną się animacje." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Animowane okno będzie podzielone na części wzdłuż siatki. Określ liczbę " +#~ "kwadratów siatki wzdłuż wysokości okna." + +# Literówka w słowie Animowane +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Animowane okno będzie podzielone na części wzdłuż siatki. Określ liczbę " +#~ "kwadratów siatki wzdłuż szerokości okna." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Eksplodujące okno będzie podzielone na części wzdłuż siatki. Określ " +#~ "liczbę kwadratów siatki wzdłuż wysokości okna." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Eksplodujące okno będzie podzielone na części wzdłuż siatki. Określ " +#~ "liczbę kwadratów siatki wzdłuż szerokości okna." + +#~ msgid "Thickness" +#~ msgstr "Grubość" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Grubość animowanych wielokątów" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Grubość eksplodujących wielokątów" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Grubość animowanych części okna (w pikselach)" + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Grubość eksplodujących części okna (w pikselach)" + +#~ msgid "Up-down" +#~ msgstr "W górę i w dół" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Określa, czy okna powinny latać do paska zadań podczas minimalizacji " +#~ "używając efektu Samolotu." + +#~ msgid "Window Grid Height" +#~ msgstr "Wysokość siatki okna." + +#~ msgid "Window Grid Width" +#~ msgstr "Długość siatki okna." + +#~ msgid "Window folding direction." +#~ msgstr "Kierunek składania." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Grubość okna w pikselach. Ustawianie tego na wartość wyższą niż 0 wyłączy " +#~ "cienie, rozmycie i odbicie podczas animacji." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplituda (wielkość fali podczas składania) Poziomych Składań związanych " +#~ "z szerokością okna. Negatywne wartości powodują składanie się na zewnątrz." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplituda (wielkość fali podczas składania) zakrzywionego zginania " +#~ "związana z szerokością okna. Negatywne wartości powodują składanie na " +#~ "zewnątrz." + +# zmiana z odniesiony na odniesiona (w końcu chodzi o amplitudę) +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "Amplituda fal (rozmiar fal) odniesiona do wysokości okna." + +#~ msgid "Brightness Decrease" +#~ msgstr "Zmniejsz jasność" + +#~ msgid "Brightness Increase" +#~ msgstr "Zwiększ jasność" + +#~ msgid "Brightness Step" +#~ msgstr "Krok zmiany jasności" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Jasność i nasycenie" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Regulacje jasności i nasycenia" + +#~ msgid "Brightness settings" +#~ msgstr "Ustawienia jasności" + +#~ msgid "Brightness values for windows" +#~ msgstr "Wartości jasności dla okien" + +#~ msgid "Brightness window values" +#~ msgstr "Wartości jasności okien" + +#~ msgid "Brightness windows" +#~ msgstr "Jasność okien" + +#~ msgid "Saturation Decrease" +#~ msgstr "Zwiększ nasycenie" + +#~ msgid "Saturation Increase" +#~ msgstr "Zmniejsz nasycenie" + +#~ msgid "Saturation Step" +#~ msgstr "Krok zmiany nasycenia" + +#~ msgid "Saturation settings" +#~ msgstr "Ustawienia nasycenia" + +#~ msgid "Saturation values for windows" +#~ msgstr "Wartości nasycenia dla okien" + +#~ msgid "Saturation window values" +#~ msgstr "Wartości nasycenia okien" + +#~ msgid "Saturation windows" +#~ msgstr "Nasycenie okien" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Charakter okien" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Okna, które domyślnie powinny mieć inną jasność" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Okna, które domyślnie powinny mieć inne nasycenie" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Zamknij okno podczas skalowania" + #~ msgid "Animation Speed" #~ msgstr "Prędkość animacji" @@ -5101,9 +5395,6 @@ #~ msgid "Misc. options" #~ msgstr "Pozostałe opcje" -#~ msgid "Show minimized windows" -#~ msgstr "Pokazuj zminimalizowane okna" - #~ msgid "Disable Caps for Inside Cube" #~ msgstr "Wyłącz rysowanie przykrywki dla widoku ze środka kostki" @@ -5121,9 +5412,6 @@ #~ "Tworzy mipmapy w celu ogólnej poprawy wyglądu, oraz redukukcji " #~ "postrzępienia krawędzi." -#~ msgid "Window width" -#~ msgstr "Grubość okna, widziana przy podniesieniu go w trybie 3D" - #~ msgid "Spring model on move" #~ msgstr "Model sprężynowania podczas ruchu" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/pt_BR.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/pt_BR.po --- compiz-fusion-plugins-unsupported-0.7.6/po/pt_BR.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/pt_BR.po 2008-09-17 14:29:33.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" "PO-Revision-Date: 2008-04-18 17:28+0200\n" "Last-Translator: Arthur Rodrigues Araruna \n" "Language-Team: Portuguese \n" @@ -122,6 +122,12 @@ msgid "Brightness of faded windows" msgstr "Brilho das janelas desvanecidas" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -153,12 +159,6 @@ msgid "Window types that should be Opacified." msgstr "Tipos de janelas cujas propriedades devem ser afetadas pelo plugin." -msgid "Airplane" -msgstr "Avião" - -msgid "Airplane Flying Path Length" -msgstr "Comprimento do trajeto de vôo do avião" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -167,20 +167,6 @@ "selecionado. Se nenhum efeito estiver selecionado para um evento, esse " "evento não será animado." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplitude (tamanho das ondas das dobras) das Dobras Horizontais " -"relativamente à largura da janela. Valores negativos dobram para fora." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitude (tamanho das ondas das dobras) das dobras curvadas relativamente à " -"largura da janela. Valores negativos dobram para fora." - msgid "Angle of window at the end of the animation." msgstr "Ângulo da janela no fim da animação" @@ -190,9 +176,6 @@ msgid "Animation Time Step" msgstr "Espaço de tempo das Animações" -msgid "Animation Time Step For Intense Effects" -msgstr "Espaço de tempo de animação para Efeitos Intensos" - msgid "Animation duration in milliseconds for close effect." msgstr "Duração da animação em milisegundos para o efeito de fechar." @@ -211,51 +194,12 @@ msgid "Animations" msgstr "Animações" -msgid "Automatic" -msgstr "Automático" - msgid "Away Angle" msgstr "Ângulo ao Longe" msgid "Away Position" msgstr "Posição ao Longe" -msgid "Beam" -msgstr "Feixe" - -msgid "Beam Color" -msgstr "Cor do feixe" - -msgid "Beam Life" -msgstr "Tempo de vida do feixe" - -msgid "Beam Slowdown" -msgstr "Abrandamento do feixe" - -msgid "Beam Spacing" -msgstr "Espaçamento do feixe" - -msgid "Beam Up" -msgstr "Feixe para Cima" - -msgid "Beam Width" -msgstr "Largura do feixe" - -msgid "Beam color." -msgstr "Cor do feixe" - -msgid "Beam life." -msgstr "Vida do feixe." - -msgid "Beam slowdown." -msgstr "Abrandamento do feixe." - -msgid "Beam width." -msgstr "Largura do feixe." - -msgid "Burn" -msgstr "Queimar" - msgid "Close Animation" msgstr "Animação de Fechamento" @@ -280,7 +224,8 @@ msgid "Curved Fold" msgstr "Dobras Curvadas" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Amplitude das Dobras Curvadas" msgid "Dodge" @@ -289,15 +234,6 @@ msgid "Dodge Gap Ratio" msgstr "Raio do espaçamento do Desvio" -msgid "Domino" -msgstr "Dominó" - -msgid "Domino Piece Falling Direction" -msgstr "Direção de Queda das Peças de Dominó" - -msgid "Down" -msgstr "Para baixo" - msgid "Dream" msgstr "Sonho" @@ -307,77 +243,22 @@ msgid "Effect Settings" msgstr "Definições de Efeitos" -msgid "Explode" -msgstr "Explosão" - msgid "Fade" msgstr "Desvanecimento" -msgid "Falling direction for Domino pieces." -msgstr "Direção na qual as peças de Dominó irão cair." - -msgid "Fire" -msgstr "Fogo" - -msgid "Fire Particle Color" -msgstr "Cor das partículas" - -msgid "Fire Particle Life" -msgstr "Tempo de vida das partículas" - -msgid "Fire Particle Size" -msgstr "Tamanho das partículas" - -msgid "Fire Particle Slowdown" -msgstr "Abrandamento das partículas" - -msgid "Fire Smoke" -msgstr "Fumaça do fogo" - -msgid "Fire constant speed" -msgstr "Velocidade constante do fogo" - -msgid "Fire direction" -msgstr "Direção do fogo" - -msgid "Fire direction." -msgstr "Direção do fogo" - -msgid "Fire particle color." -msgstr "Cor das partículas." - -msgid "Fire particle life." -msgstr "Tempo de vida das partículas." - -msgid "Fire particle size." -msgstr "Tamanho das partículas." - -msgid "Fire particle slowdown." -msgstr "Abrandamento das partículas." - -msgid "Fire smoke." -msgstr "Fumaça do fogo." - msgid "Fixed window interior during the Rollup animation." msgstr "Interior da janela fixo durante a animação de EnrolarParaCima." -msgid "Fly to TaskBar on Minimize" -msgstr "Voar para a Barra de tarefas quando se minimiza" - msgid "Focus Animation" msgstr "Animação de Focar" msgid "Focus Effect" msgstr "Efeito de Focar" -msgid "Fold" -msgstr "Dobrar" - -msgid "Fold Direction" -msgstr "Direção da Dobra" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Direção de abertura das dobras para as peças no efeito Razr" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "Deslizar 1" @@ -385,18 +266,11 @@ msgid "Glide 2" msgstr "Deslizar 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Cores aleatórias para o efeito de fogo. Opção também conhecida como Fogo " -"Místico." - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Dobras horizontais" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Amplitude das dobras horizontais" msgid "How spring-like the Sidekick animation should be." @@ -405,24 +279,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Quão parecida com uma mola a animação Zoom deve ser." -msgid "In" -msgstr "Aproximar" - -msgid "In-out" -msgstr "Aproximar-afastar" - -msgid "Leaf Spread" -msgstr "Espalhamento das Folhas" - -msgid "Left" -msgstr "Para a esquerda" - -msgid "Left-right" -msgstr "Esquerda-Direita" - -msgid "Length of airplane's flying path." -msgstr "Comprimento do trajeto de vôo do avião." - msgid "Magic Lamp" msgstr "Lâmpada Mágica" @@ -444,9 +300,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Fim dinâmico Abrir/Fechar da Lâmpada Mágica" -msgid "Make fire effect duration be dependent on window height." -msgstr "Tornar duração do efeito de fogo dependente da altura da janela." - msgid "Minimize Animation" msgstr "Animação da Minimização" @@ -456,21 +309,12 @@ msgid "Minimize/Unminimize Only" msgstr "Apenas Minimizar/Restaurar" -msgid "Movement direction(s) for window pieces." -msgstr "Direção(ões) de movimento para as partes da janela." - msgid "None" msgstr "Nenhum" -msgid "Number Of Fire Particles" -msgstr "Número De Partículas de Fogo" - msgid "Number of Horizontal Folds" msgstr "Número de Dobras Horizontais" -msgid "Number of fire particles." -msgstr "Número de partículas de fogo." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -504,15 +348,13 @@ msgid "Options" msgstr "Opções" -msgid "Out" -msgstr "Afastar" - msgid "Pool" msgstr "Piscina" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "Piscina de efeitos para ser escolhido no caso de o efeito Aleatório estar " "selecionado. Clique em restaurar para restaurar a lista completa." @@ -526,37 +368,16 @@ msgid "Random Effects" msgstr "Efeitos Aleatórios" -msgid "Randomly Colored Fire" -msgstr "Fogo com cores aleatórias" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" "Raio de espaços entre os tempos de início do desvio e a duração do foco." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Direção de Abertura da Dobra Razr" - -msgid "Rectangular" -msgstr "Retangular" - -msgid "Right" -msgstr "Para a direita" - msgid "Roll Up" msgstr "Enrolar para Cima" msgid "Rollup Fixed Interior" msgstr "Enrolar com Interior Fixo" -msgid "Rotation Angle" -msgstr "Ângulo de Rotação" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Ângulo de rotação das peças das janelas (em graus)." - msgid "Shade Animation" msgstr "Animação Sombreamento" @@ -572,15 +393,6 @@ msgid "Sidekick Springiness" msgstr "Elasticidade do Pontapé" -msgid "Skewer" -msgstr "Espetar" - -msgid "Skewer Direction" -msgstr "Direção do Espetar" - -msgid "Spacing between beams." -msgstr "Espaçamento entre feixes." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -594,19 +406,6 @@ "Largura inicial do efeito abrir e largura final do efeito fechar para o " "Vácuo." -msgid "Tessellation Type" -msgstr "Tipo do padrão" - -msgid "Tessellation type for exploding window pieces." -msgstr "" -"Tipo do padrão elementar que se irá usar para \"construir\" as peças " -"resultantes da explosão de uma janela." - -msgid "Tessellation type for window pieces." -msgstr "" -"Tipo do padrão elementar que se irá usar para \"construir\" as peças de uma " -"janela." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -614,28 +413,6 @@ "Tempo em milisegundos entre cada desenho da animação. Quanto mais alto o " "número, mais aos saltos o movimento se torna." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Tempo em milisegundos entre cada desenho da animação intensa (Ex. Queimar, " -"Feixe). Quanto mais alto o número, mais aos saltos o movimento se torna." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"A janela animada irá ser separada em peças ao longo de uma grade. " -"Especifique o número de células da grade ao longo da altura da janela." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"A janela animada irá ser separada em peças ao longo de uma grade. " -"Especifique o número de células da grade ao longo da largura da janela." - msgid "The animation effect shown when closing a window." msgstr "O efeito de animação a mostrar quando se fecha uma janela." @@ -651,20 +428,6 @@ msgid "The animation effect shown when shading a window." msgstr "O efeito de animação a mostrar quando se sombreia uma janela." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"A janela explodida irá ser separada em partes ao longo de uma grade. " -"Especifique o número de células da grade ao longo da altura da janela." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"A janela explodida irá ser separada em partes ao longo de uma grade. " -"Especifique o número de células da grade ao longo da largura da janela." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" "Amplitude máxima (tamanho das ondas) que o efeito Lâmpada Mágica irá ter." @@ -681,37 +444,12 @@ msgstr "" "Número de dobras horizontais que irão ocorrer na animação Dobra Horizontal." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" -"Amplitude das ondas (tamanho das ondas) relativamente à altura da janela." - msgid "The width of the wave relative to the window height." msgstr "Largura da onda relativamente à altura da janela." msgid "The windows that will be animated." msgstr "Janelas que serão animadas." -msgid "Thickness" -msgstr "Espessura" - -msgid "Thickness of Animated Polygons" -msgstr "Espessura dos Polígonos Animados" - -msgid "Thickness of Exploding Polygons" -msgstr "Espessura dos Polígonos Explodidos" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Espessura das peças da janela animada (em pixels)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Espessura das peças da janela explodida (em pixels)." - -msgid "Up" -msgstr "Para cima" - -msgid "Up-down" -msgstr "Cima-Baixo" - msgid "Use various animations as window effects" msgstr "" "Usar várias animações como efeitos das janela (fechar, abrir, minimizar...)" @@ -751,17 +489,17 @@ msgid "Wave" msgstr "Onda" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Amplitude da Onda" msgid "Wave Width" msgstr "Largura da Onda" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Se a janela deve voar para a barra de tarefas quando minimizada usando o " -"efeito Avião." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -795,28 +533,12 @@ "Se a janela deve ser diminuída para a barra de tarefas quando minimizada " "usando o efeito Dobras Horizontais." -msgid "Window Grid Height" -msgstr "Altura da Grade da Janela" - -msgid "Window Grid Width" -msgstr "Largura da Grade da Janela" - -msgid "Window folding direction." -msgstr "Direção de dobra das janelas" - msgid "Window that should animate with this effect when focused." msgstr "Janelas que devem ser animadas com este efeito quando focadas." msgid "Window that should animate with this effect when shaded." msgstr "Janelas que devem ser animadas com este efeito quando sombreadas." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Espessura da janela em pixels. Definir este valor maior que 0 irá desativar " -"sombras, difusões e reflexões durante a animação." - msgid "Zoom" msgstr "Zoom" @@ -934,83 +656,12 @@ msgstr "Posição no eixo vertical (Y)" #, fuzzy -msgid "Brightness Decrease" -msgstr "Brilho" - -#, fuzzy -msgid "Brightness Increase" -msgstr "Brilho" - -#, fuzzy -msgid "Brightness Step" -msgstr "Brilho" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "Brilho das janelas desvanecidas" +msgid "Bicubic filter" +msgstr "Trocar de filtro" -msgid "Brightness and Saturation adjustments" +msgid "Bicubic texture filtering" msgstr "" -#, fuzzy -msgid "Brightness settings" -msgstr "Brilho das janelas selecionadas" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Brilho das janelas desvanecidas" - -#, fuzzy -msgid "Brightness window values" -msgstr "Brilho das janelas desvanecidas" - -#, fuzzy -msgid "Brightness windows" -msgstr "Brilho das janelas desvanecidas" - -msgid "General" -msgstr "Geral" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "Saturação" - -#, fuzzy -msgid "Saturation Increase" -msgstr "Saturação" - -#, fuzzy -msgid "Saturation Step" -msgstr "Saturação" - -#, fuzzy -msgid "Saturation settings" -msgstr "Contraste das janelas selecionadas" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "Saturação das janelas desvanecidas" - -#, fuzzy -msgid "Saturation window values" -msgstr "Saturação das janelas desvanecidas" - -#, fuzzy -msgid "Saturation windows" -msgstr "Saturação das janelas desvanecidas" - -#, fuzzy -msgid "Window specific" -msgstr "Opacidade das Janelas" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "Janelas que devem ser redimensionadas por padrão" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "Janelas que devem ser redimensionadas por padrão" - msgid "Color filter" msgstr "Filtro de Cor" @@ -1105,6 +756,9 @@ "Linha de comandos do gerenciador de janelas alternativo. NÃO INTRODUZA O " "COMPIZ AQUI!!!" +msgid "Above" +msgstr "Acima" + msgid "Adjust bottom face image to rotation" msgstr "Ajustar imagem da face inferior para rotação" @@ -1126,6 +780,19 @@ msgid "Appearance" msgstr "Aparência" +#, fuzzy +msgid "Aspect ratio" +msgstr "Proporção de Aspecto" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Zoom automático" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zoom automático apenas com rotação através do mouse" + msgid "Behaviour" msgstr "Comportamento" @@ -1161,18 +828,62 @@ msgid "Color of bottom face of the cube" msgstr "Cor da face inferior do cubo" +msgid "Color of the ground (far)." +msgstr "Cor do chão (longe)" + +msgid "Color of the ground (near)." +msgstr "Cor do chão (perto)" + msgid "Color of top face of the cube" msgstr "Cor da face superior do cubo" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Criar uma reflexão do cubo" + msgid "Cube Bottom Color" msgstr "Cor Face Inferior do Cubo" -msgid "Cube Caps" -msgstr "Coberturas do Cubo" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Reflexão de Decorações" msgid "Cube Top Color" msgstr "Cor Face Superior do Cubo" +#, fuzzy +msgid "Cube caps" +msgstr "Coberturas do Cubo" + +#, fuzzy +msgid "Cylinder" +msgstr "Limpar" + +#, fuzzy +msgid "Deform caps" +msgstr "Duração" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Zoom automático apenas com rotação através do mouse" + +#, fuzzy +msgid "Deformation" +msgstr "Duração" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "Duração" + +msgid "Distance" +msgstr "Distância" + msgid "Draw bottom face" msgstr "Desenhar face inferior" @@ -1185,12 +896,38 @@ msgid "Draw top face of the cube" msgstr "Desenhar face superior do cubo" +#, fuzzy +msgid "Enabled" +msgstr "Ativar" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Criar uma reflexão do cubo" + msgid "Go back to previous image for bottom face of the cube" msgstr "Voltar para a imagem anterior na face de baixo do cubo" msgid "Go back to previous image for top face of the cube" msgstr "Voltar para a imagem anterior na face de cima do cubo." +msgid "Ground color(far)" +msgstr "Cor do chão (longe)" + +msgid "Ground color(near)" +msgstr "Cor do chão (perto)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensidade" + +msgid "Jumpy" +msgstr "Saltitante (O cubo acompanha a reflexão)" + +msgid "Jumpy reflection" +msgstr "Reflexão saltitante (A reflexão acompanha o cubo)" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1202,6 +939,22 @@ "Lista de arquivos PNG e SVG que devem ser renderizados na face superior do " "cubo" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Proporção de aspecto do modo expo" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Ajustar imagem da face inferior para rotação" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Proporção de aspecto do modo expo" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Ajustar imagem da face superior para rotação" + msgid "Next bottom image" msgstr "Próxima imagem inferior" @@ -1214,8 +967,23 @@ msgid "Prev top image" msgstr "Imagem superior anterior" -msgid "Render images on top and bottom of the cube" -msgstr "Mostrar imagens nas faces de cima e de baixo do cubo" +msgid "Reflection" +msgstr "Reflexão" + +msgid "Reflection ground size" +msgstr "Tamanho da superfície de reflexão." + +msgid "Reflection ground size." +msgstr "Tamanho da superfície de reflexão." + +msgid "Reflection intensity" +msgstr "Intensidade da reflexão" + +msgid "Reflection mode" +msgstr "Modo de reflexão" + +msgid "Reflection mode." +msgstr "Modo de reflexão." msgid "Scale bottom image" msgstr "Redimensionar imagem inferior" @@ -1229,69 +997,36 @@ msgid "Scale top image" msgstr "Redimensionar imagem superior" +#, fuzzy +msgid "Sphere" +msgstr "Velocidade" + msgid "Top image files" msgstr "Arquivos com as imagens para a face superior" -msgid "Above" -msgstr "Acima" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Zoom automático" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Diminuir o zoom automaticamente apenas com rotação através do mouse" -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zoom automático apenas com rotação através do mouse" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Diminuir o zoom automaticamente para o cubo caber na tela." -msgid "Color of the ground (far)." -msgstr "Cor do chão (longe)" +#, fuzzy +msgid "Cube Caps" +msgstr "Coberturas do Cubo" -msgid "Color of the ground (near)." -msgstr "Cor do chão (perto)" +msgid "Render images on top and bottom of the cube" +msgstr "Mostrar imagens nas faces de cima e de baixo do cubo" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Criar uma reflexão do cubo" +msgstr "Reflexão do cubo" msgid "Cube Reflection" msgstr "Reflexão do cubo" -msgid "Distance" -msgstr "Distância" - -msgid "Ground color(far)" -msgstr "Cor do chão (longe)" - -msgid "Ground color(near)" -msgstr "Cor do chão (perto)" - -msgid "Intensity" -msgstr "Intensidade" - -msgid "Jumpy" -msgstr "Saltitante (O cubo acompanha a reflexão)" - -msgid "Jumpy reflection" -msgstr "Reflexão saltitante (A reflexão acompanha o cubo)" - -msgid "Reflection ground size" -msgstr "Tamanho da superfície de reflexão." - -msgid "Reflection ground size." -msgstr "Tamanho da superfície de reflexão." - -msgid "Reflection intensity" -msgstr "Intensidade da reflexão" - -msgid "Reflection mode" -msgstr "Modo de reflexão" - -msgid "Reflection mode." -msgstr "Modo de reflexão." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Diminuir o zoom automaticamente apenas com rotação através do mouse" - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Diminuir o zoom automaticamente para o cubo caber na tela." - msgid "Animation used when switching to expo mode" msgstr "Animação usada quando se muda para o modo expo" @@ -1317,10 +1052,6 @@ msgstr "Força da Distorção de Movimento." #, fuzzy -msgid "Deformation" -msgstr "Duração" - -#, fuzzy msgid "Deformation of the expo wall" msgstr "Distância do muro expo" @@ -1412,9 +1143,6 @@ msgid "Previous viewport" msgstr "Janela de visualização anterior" -msgid "Reflection" -msgstr "Reflexão" - msgid "Reflection Scale" msgstr "Dimensão da reflexão" @@ -1525,6 +1253,10 @@ msgid "Center the mouse" msgstr "Centralizar o mouse" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Tornar o cursor do mouse dimensionável" + msgid "Enable focus tracking" msgstr "Ativar o rastreamento do foco" @@ -1590,20 +1322,14 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "Oculta o cursor original do mouse quando estiver ampliando" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Qual a frequência para a verificação da posição do mouse, em milisegundos. " -"Reduzaisto para diminuir o comportamento quebrado." +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Fator de mínimo de dimensionamento" #, fuzzy msgid "Mouse Behaviour" msgstr "Comportamento do Mouse" -msgid "Mouse Poll Interval" -msgstr "Taxa de atualização do mouse" - msgid "Mouse Restrain Margin" msgstr "Margem de restrição do mouse" @@ -1691,12 +1417,21 @@ msgid "Speed" msgstr "Velocidade" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Tornar o cursor do mouse dimensionável" + msgid "Sync Mouse" msgstr "Sincronizar Mouse" msgid "Target Focused Window on Specific level" msgstr "Mostrar a janela focada em um nível específico" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" "Tamanho da margem a ser adicionado quando tentar restringir o movimento do " @@ -1716,10 +1451,24 @@ msgid "Use linear filter when zoomed in" msgstr "Usar filtro linear quando ampliar" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "Movimento do zoom" +#, fuzzy +msgid "Zoom Box" +msgstr "Zoom" + msgid "Zoom In" msgstr "Aumentar o zoom" @@ -1748,6 +1497,9 @@ msgid "Zoom factor" msgstr "Fator de zoom" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Aumentar/diminuir zoom de acordo com este fator. Valores mais altos " @@ -1805,20 +1557,56 @@ msgid "Toggle window fake ARGB." msgstr "Alternar ARGB falsos da janela." +#, fuzzy +msgid "Add Particle" +msgstr "Tempo de vida das partículas" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Brilho do fundo" msgid "Background brightness during paint" msgstr "Luminosidade do fundo durante o desenho" -msgid "Clear" -msgstr "Limpar" +msgid "Clear" +msgstr "Limpar" + +msgid "Clear (button)" +msgstr "Limpar (botão)" + +msgid "Clear (key)" +msgstr "Limpar (tecla)" + +msgid "Fire Particle Color" +msgstr "Cor das partículas" + +msgid "Fire Particle Life" +msgstr "Tempo de vida das partículas" + +msgid "Fire Particle Size" +msgstr "Tamanho das partículas" + +msgid "Fire Particle Slowdown" +msgstr "Abrandamento das partículas" + +msgid "Fire particle color." +msgstr "Cor das partículas." + +msgid "Fire particle life." +msgstr "Tempo de vida das partículas." + +msgid "Fire particle size." +msgstr "Tamanho das partículas." -msgid "Clear (button)" -msgstr "Limpar (botão)" +msgid "Fire particle slowdown." +msgstr "Abrandamento das partículas." -msgid "Clear (key)" -msgstr "Limpar (tecla)" +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Cores aleatórias para o efeito de fogo. Opção também conhecida como Fogo " +"Místico." msgid "Initiate (button)" msgstr "Iniciar (botão)" @@ -1841,6 +1629,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Cria partículas de fogo na tela" +msgid "Randomly Colored Fire" +msgstr "Fogo com cores aleatórias" + msgid "Cube Gears" msgstr "Engrenagem no Cubo" @@ -1938,6 +1729,9 @@ msgid "Font Size" msgstr "Tamanho da fonte" +msgid "General" +msgstr "Geral" + msgid "Glass" msgstr "Vidro" @@ -2556,9 +2350,19 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Qual a frequência para a verificação da posição do mouse, em milisegundos. " +"Reduzaisto para diminuir o comportamento quebrado." + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "Taxa de atualização do mouse" + #, fuzzy msgid "Mouse position polling" msgstr "Mouse panning" @@ -3306,8 +3110,13 @@ msgid "Background color of the window title" msgstr "Cor de fundo do título da janela" -msgid "Close Windows In Scale" -msgstr "Fechar Janelas Dimensionadas" +#, fuzzy +msgid "Close Window" +msgstr "Criar Mosaico das Janelas" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Fechar janelas enquanto estiver em modo Dimensionamento" msgid "Close windows while in scale mode" msgstr "Fechar janelas enquanto estiver em modo Dimensionamento" @@ -3316,9 +3125,18 @@ msgstr "" "Cor usada para evidenciar a janela sobre a qual paira o cursor do mouse" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Desenhar Realce da Janela" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Cor do título da janela" @@ -3337,6 +3155,12 @@ "Evidencia a janela sobre a qual paira o cursor do mouse com a cor escolhida" #, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"Torna as janelas facilmente visíveis ao pairar o cursor do mouse sobre elas" + +#, fuzzy msgid "No display" msgstr "Mostrar título da janela" @@ -3346,6 +3170,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Orgânico - EXPERIMENTAL" +#, fuzzy +msgid "Pull Window" +msgstr "Colocar janela" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Fechar janelas enquanto estiver em modo Dimensionamento" + msgid "Scale Addons" msgstr "Adições ao plugin de Dimensionamento" @@ -3370,6 +3202,10 @@ msgid "Window Layout Mode" msgstr "Modo de Exibição de Janelas" +#, fuzzy +msgid "Window Pull" +msgstr "Regras para Janelas" + msgid "Window Title" msgstr "Título da Janela" @@ -3381,10 +3217,12 @@ msgid "Window title display in scale mode" msgstr "Mostrar título da janela no modo de Dimensionamento" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "Ampliar janelas dimensionadas" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "Ampliar janelas enquanto estiver em modo de dimensionamento" msgid "Filter Case Insensitive" @@ -3653,18 +3491,30 @@ msgid "Direction of window movement" msgstr "Direção do movimento das janelas" +msgid "Down" +msgstr "Para baixo" + +msgid "Left" +msgstr "Para a esquerda" + msgid "Left/Right" msgstr "Esquerda/Direita" msgid "Movement Direction" msgstr "Direção do Movimento" +msgid "Right" +msgstr "Para a direita" + msgid "Show desktop" msgstr "Exibir a área de trabalho" msgid "To Corners" msgstr "Para os Cantos" +msgid "Up" +msgstr "Para cima" + msgid "Up/Down" msgstr "Cima/Baixo" @@ -3937,83 +3787,340 @@ msgid "Snow Over Windows" msgstr "Neve por Cima das Janelas" -msgid "Snow Speed" -msgstr "Velocidade da Neve" +msgid "Snow Speed" +msgstr "Velocidade da Neve" + +msgid "Snow Textures" +msgstr "Texturas da Neve" + +msgid "Snow Toggle" +msgstr "Alternar estado de Neve" + +msgid "Snow for Compiz" +msgstr "Snow para Compiz" + +msgid "Snow is drawn above windows" +msgstr "A Neve é mostrada por cima das janelas" + +msgid "Snow textures" +msgstr "Texturas da neve" + +msgid "Snow toggle key" +msgstr "Tecla de alternar activação da Neve" + +msgid "Speed of falling snow" +msgstr "Velocidade da queda de neve" + +msgid "Textures" +msgstr "Texturas" + +msgid "Top to Bottom" +msgstr "Cima para Baixo" + +msgid "Update Delay" +msgstr "Atraso de actualização" + +msgid "A simple splash plugin" +msgstr "Plugin para mostrar um ecrã de logótipo" + +msgid "Background File" +msgstr "Ficheiro com a Imagem de Fundo" + +msgid "Background brightness." +msgstr "Brilho da imagem de fundo." + +msgid "Background image File." +msgstr "Ficheiro com a Imagem de Fundo." + +msgid "Background saturation." +msgstr "Saturação da imagem de fundo." + +msgid "Display In/Out Time." +msgstr "Duração do (Des)Aparecimento do Ecrã de Logótipo." + +msgid "Display Time" +msgstr "Duração do Ecrã de Logótipo." + +msgid "Images" +msgstr "Imagens" + +msgid "Initiate Splash" +msgstr "Iniciar a tela de logotipo" + +msgid "Logo File" +msgstr "Arquivo com o Logotipo" + +msgid "Logo image File." +msgstr "Arquivo de imagem com o logotipo." + +msgid "Show on first start" +msgstr "Exibir ao iniciar o sistema" + +msgid "Show splash on first start." +msgstr "Exibir tela com o logotipo ao iniciar o sistema." + +msgid "Splash" +msgstr "Tela de Logotipo" + +msgid "Start Splash." +msgstr "Iniciar tela de logotipo." + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Nível de opacidade (em percentagem) para janelas no anel que não estão " +"selecionadas" + +#, fuzzy +msgid "Behavior" +msgstr "Comportamento" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Escurecer fundo quando estiver exibindo o anel" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Largura da Miniatura" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Ativar uma janela especificada" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "O título da janela deverá ser exibido em negrito" + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Largura das janelas" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Cor 1 do gradiente de fundo." + +#, fuzzy +msgid "Windows" +msgstr "Janelas 3D" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Janelas que devem ser exibidas no alternador Shift" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Luminosidade do fundo durante o desenho" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Não mostrar aplicação no pager." + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Colocar na Visão" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "Colocar no Centro" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Cor com que se preenche o retângulo de seleção" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Gerar mipmaps quando possível para escalamento de melhor qualidade." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Cor de realce" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Cor de realce" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Cor de realce" + +#, fuzzy +msgid "Icon" +msgstr "Aproximar" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Realçar Janela" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "" +"Cor usada para evidenciar a janela sobre a qual paira o cursor do mouse" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Próxima Janela" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Próxima Janela (Todas Áreas de Trabalho)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Próxima Janela (Grupo)" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Próxima Janela (Grupo)" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "Tipos de janelas a agrupar" + +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Mostrar anel se não estiver visível e selecionar a próxima janela." + +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Mostar anel se não estiver visível e selecionar a próxima janela da " +"aplicação atual." + +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Mostrar anel, se não estiver visível e selecionar a próxima janela de todas " +"as janelas." -msgid "Snow Textures" -msgstr "Texturas da Neve" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Mostrar anel se não estiver visível e selecionar a janela anterior." -msgid "Snow Toggle" -msgstr "Alternar estado de Neve" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Mostar anel se não visível e selecionar a janela anterior da aplicação atual." -msgid "Snow for Compiz" -msgstr "Snow para Compiz" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Mostrar anel,se não estiver visível e selecionar a janela anterior de todas " +"as janelas" -msgid "Snow is drawn above windows" -msgstr "A Neve é mostrada por cima das janelas" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Texturas da neve" +#, fuzzy +msgid "Prev window" +msgstr "Janela Anterior" -msgid "Snow toggle key" -msgstr "Tecla de alternar activação da Neve" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Janela Anterior (Todas Áreas de Trabalho)" -msgid "Speed of falling snow" -msgstr "Velocidade da queda de neve" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Janela Anterior (Grupo)" -msgid "Textures" -msgstr "Texturas" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Janela Anterior (Grupo)" -msgid "Top to Bottom" -msgstr "Cima para Baixo" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Atraso de actualização" +#, fuzzy +msgid "Select next panel type window." +msgstr "Determina onde posicionar o título da janela." -msgid "A simple splash plugin" -msgstr "Plugin para mostrar um ecrã de logótipo" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Ficheiro com a Imagem de Fundo" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Determina onde posicionar o título da janela." -msgid "Background brightness." -msgstr "Brilho da imagem de fundo." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Ficheiro com a Imagem de Fundo." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Realçar Janela" -msgid "Background saturation." -msgstr "Saturação da imagem de fundo." +#, fuzzy +msgid "Show Rectangle" +msgstr "Retangular" -msgid "Display In/Out Time." -msgstr "Duração do (Des)Aparecimento do Ecrã de Logótipo." +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Mostrar título da janela na miniatura." -msgid "Display Time" -msgstr "Duração do Ecrã de Logótipo." +msgid "Show minimized windows" +msgstr "Mostrar janelas minimizadas" -msgid "Images" -msgstr "Imagens" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Iniciar a tela de logotipo" +#, fuzzy +msgid "Switcher speed" +msgstr "Modo do alternador" -msgid "Logo File" -msgstr "Arquivo com o Logotipo" +#, fuzzy +msgid "Switcher timestep" +msgstr "Intervalo de tempo do Shift" -msgid "Logo image File." -msgstr "Arquivo de imagem com o logotipo." +#, fuzzy +msgid "Switcher windows" +msgstr "Janelas filtradas" -msgid "Show on first start" -msgstr "Exibir ao iniciar o sistema" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Barra de tarefas" -msgid "Show splash on first start." -msgstr "Exibir tela com o logotipo ao iniciar o sistema." +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Tela de Logotipo" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Iniciar tela de logotipo." +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Janelas que devem ser exibidas no alternador Shift" msgid "Render text to texture" msgstr "Renderizar texto em texturas" @@ -4725,10 +4832,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "Colocar no Centro" - -#, fuzzy msgid "Color 1" msgstr "Cores" @@ -4876,6 +4979,14 @@ msgid "Matches" msgstr "Coincidências" +#, fuzzy +msgid "Maximized" +msgstr "Mostrar janelas minimizadas" + +#, fuzzy +msgid "Maximized windows" +msgstr "Janelas não maximizáveis" + msgid "No ARGB visuals" msgstr "Sem visualização ARGB" @@ -4954,6 +5065,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Correção para o Menu do Firefox" @@ -5000,6 +5114,9 @@ "Tornar janelas com a opção \"Em todos as áreas de trabalho\" fixas. Janelas " "fixas irão ser visíveis em todos as janelas de visualização." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "Fazer com que aplicações mais antigas e Wine funcionem como esperado no modo " @@ -5029,6 +5146,338 @@ msgid "Workarounds" msgstr "Correções de bug" +#~ msgid "Airplane" +#~ msgstr "Avião" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Comprimento do trajeto de vôo do avião" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Espaço de tempo de animação para Efeitos Intensos" + +#~ msgid "Automatic" +#~ msgstr "Automático" + +#~ msgid "Beam" +#~ msgstr "Feixe" + +#~ msgid "Beam Color" +#~ msgstr "Cor do feixe" + +#~ msgid "Beam Life" +#~ msgstr "Tempo de vida do feixe" + +#~ msgid "Beam Slowdown" +#~ msgstr "Abrandamento do feixe" + +#~ msgid "Beam Spacing" +#~ msgstr "Espaçamento do feixe" + +#~ msgid "Beam Up" +#~ msgstr "Feixe para Cima" + +#~ msgid "Beam Width" +#~ msgstr "Largura do feixe" + +#~ msgid "Beam color." +#~ msgstr "Cor do feixe" + +#~ msgid "Beam life." +#~ msgstr "Vida do feixe." + +#~ msgid "Beam slowdown." +#~ msgstr "Abrandamento do feixe." + +#~ msgid "Beam width." +#~ msgstr "Largura do feixe." + +#~ msgid "Burn" +#~ msgstr "Queimar" + +#~ msgid "Domino" +#~ msgstr "Dominó" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Direção de Queda das Peças de Dominó" + +#~ msgid "Explode" +#~ msgstr "Explosão" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Direção na qual as peças de Dominó irão cair." + +#~ msgid "Fire" +#~ msgstr "Fogo" + +#~ msgid "Fire Smoke" +#~ msgstr "Fumaça do fogo" + +#~ msgid "Fire constant speed" +#~ msgstr "Velocidade constante do fogo" + +#~ msgid "Fire direction" +#~ msgstr "Direção do fogo" + +#~ msgid "Fire direction." +#~ msgstr "Direção do fogo" + +#~ msgid "Fire smoke." +#~ msgstr "Fumaça do fogo." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Voar para a Barra de tarefas quando se minimiza" + +#~ msgid "Fold" +#~ msgstr "Dobrar" + +#~ msgid "Fold Direction" +#~ msgstr "Direção da Dobra" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Direção de abertura das dobras para as peças no efeito Razr" + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "Aproximar" + +#~ msgid "In-out" +#~ msgstr "Aproximar-afastar" + +#~ msgid "Leaf Spread" +#~ msgstr "Espalhamento das Folhas" + +#~ msgid "Left-right" +#~ msgstr "Esquerda-Direita" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Comprimento do trajeto de vôo do avião." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Tornar duração do efeito de fogo dependente da altura da janela." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Direção(ões) de movimento para as partes da janela." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Número De Partículas de Fogo" + +#~ msgid "Number of fire particles." +#~ msgstr "Número de partículas de fogo." + +#~ msgid "Out" +#~ msgstr "Afastar" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Direção de Abertura da Dobra Razr" + +#~ msgid "Rectangular" +#~ msgstr "Retangular" + +#~ msgid "Rotation Angle" +#~ msgstr "Ângulo de Rotação" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Ângulo de rotação das peças das janelas (em graus)." + +#~ msgid "Skewer" +#~ msgstr "Espetar" + +#~ msgid "Skewer Direction" +#~ msgstr "Direção do Espetar" + +#~ msgid "Spacing between beams." +#~ msgstr "Espaçamento entre feixes." + +#~ msgid "Tessellation Type" +#~ msgstr "Tipo do padrão" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "" +#~ "Tipo do padrão elementar que se irá usar para \"construir\" as peças " +#~ "resultantes da explosão de uma janela." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "" +#~ "Tipo do padrão elementar que se irá usar para \"construir\" as peças de " +#~ "uma janela." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Tempo em milisegundos entre cada desenho da animação intensa (Ex. " +#~ "Queimar, Feixe). Quanto mais alto o número, mais aos saltos o movimento " +#~ "se torna." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "A janela animada irá ser separada em peças ao longo de uma grade. " +#~ "Especifique o número de células da grade ao longo da altura da janela." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "A janela animada irá ser separada em peças ao longo de uma grade. " +#~ "Especifique o número de células da grade ao longo da largura da janela." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "A janela explodida irá ser separada em partes ao longo de uma grade. " +#~ "Especifique o número de células da grade ao longo da altura da janela." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "A janela explodida irá ser separada em partes ao longo de uma grade. " +#~ "Especifique o número de células da grade ao longo da largura da janela." + +#~ msgid "Thickness" +#~ msgstr "Espessura" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Espessura dos Polígonos Animados" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Espessura dos Polígonos Explodidos" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Espessura das peças da janela animada (em pixels)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Espessura das peças da janela explodida (em pixels)." + +#~ msgid "Up-down" +#~ msgstr "Cima-Baixo" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Se a janela deve voar para a barra de tarefas quando minimizada usando o " +#~ "efeito Avião." + +#~ msgid "Window Grid Height" +#~ msgstr "Altura da Grade da Janela" + +#~ msgid "Window Grid Width" +#~ msgstr "Largura da Grade da Janela" + +#~ msgid "Window folding direction." +#~ msgstr "Direção de dobra das janelas" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Espessura da janela em pixels. Definir este valor maior que 0 irá " +#~ "desativar sombras, difusões e reflexões durante a animação." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (tamanho das ondas das dobras) das Dobras Horizontais " +#~ "relativamente à largura da janela. Valores negativos dobram para fora." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (tamanho das ondas das dobras) das dobras curvadas " +#~ "relativamente à largura da janela. Valores negativos dobram para fora." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "" +#~ "Amplitude das ondas (tamanho das ondas) relativamente à altura da janela." + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "Brilho" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "Brilho" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "Brilho" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "Brilho das janelas desvanecidas" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "Brilho das janelas selecionadas" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "Brilho das janelas desvanecidas" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "Brilho das janelas desvanecidas" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "Brilho das janelas desvanecidas" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "Saturação" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "Saturação" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "Saturação" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "Contraste das janelas selecionadas" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "Saturação das janelas desvanecidas" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "Saturação das janelas desvanecidas" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "Saturação das janelas desvanecidas" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Opacidade das Janelas" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Janelas que devem ser redimensionadas por padrão" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Janelas que devem ser redimensionadas por padrão" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Fechar Janelas Dimensionadas" + #~ msgid "Animation Speed" #~ msgstr "Velocidade da animação" @@ -5066,9 +5515,6 @@ #~ msgid "Misc. options" #~ msgstr "Opções diversas" -#~ msgid "Show minimized windows" -#~ msgstr "Mostrar janelas minimizadas" - #~ msgid "Tile or Stretch" #~ msgstr "Criar Mosaico ou Esticar" @@ -5101,6 +5547,3 @@ #~ msgstr "" #~ "Esta opção cria mipmap que melhoram a aparência geral das texturas, e " #~ "reduzem as arestas distorcidas." - -#~ msgid "Window width" -#~ msgstr "Largura das janelas" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/pt.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/pt.po --- compiz-fusion-plugins-unsupported-0.7.6/po/pt.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/pt.po 2008-09-17 14:29:33.000000000 +0100 @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: pt_PT\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" -"PO-Revision-Date: 2008-04-04 09:16+0200\n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" +"PO-Revision-Date: 2008-09-01 20:23+0200\n" "Last-Translator: Nicolau Gonçalves \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" msgstr "3D Apenas com rotação através do rato" @@ -117,6 +117,12 @@ msgid "Brightness of faded windows" msgstr "Brilho das janelas desvanecidas" +msgid "Enable ADD Helper on start" +msgstr "Activar ajudante ADD no ínicio" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Activa ajudante ADD quando é carregado pela primeira vez." + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -149,12 +155,6 @@ msgid "Window types that should be Opacified." msgstr "Tipos de janelas cujas propriedades devem ser afectadas pelo plugin." -msgid "Airplane" -msgstr "Avião" - -msgid "Airplane Flying Path Length" -msgstr "Comprimento do trajecto de vôo do avião" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -163,20 +163,6 @@ "seleccionado. Se Nenhum estiver seleccionado para um evento, esse evento não " "será animado." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Amplitude (tamanho das ondas das dobras) das Dobras Horizontais " -"relativamente à largura da janela. Valores negativos dobram para fora." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Amplitude (tamanho das ondas das dobras) das dobras curvadas relativamente à " -"largura da janela. Valores negativos dobram para fora." - msgid "Angle of window at the end of the animation." msgstr "Ãngulo da janela no fim da animação." @@ -186,9 +172,6 @@ msgid "Animation Time Step" msgstr "Salto de Tempo das Animações" -msgid "Animation Time Step For Intense Effects" -msgstr "Espaço de tempo de animação para Efeitos Intensos" - msgid "Animation duration in milliseconds for close effect." msgstr "Duração da animação em milisegundos para o efeito de fechar." @@ -207,51 +190,12 @@ msgid "Animations" msgstr "Animações" -msgid "Automatic" -msgstr "Automático" - msgid "Away Angle" msgstr "Ângulo ao Longe" msgid "Away Position" msgstr "Posição ao Longe" -msgid "Beam" -msgstr "Feixe" - -msgid "Beam Color" -msgstr "Cor Feixe" - -msgid "Beam Life" -msgstr "Vida do Feixe" - -msgid "Beam Slowdown" -msgstr "Abrandamento Feixe" - -msgid "Beam Spacing" -msgstr "Espaçamento Feixe" - -msgid "Beam Up" -msgstr "Feixe para Cima" - -msgid "Beam Width" -msgstr "Largura Feixe" - -msgid "Beam color." -msgstr "Cor do feixe." - -msgid "Beam life." -msgstr "Vida do feixe." - -msgid "Beam slowdown." -msgstr "Abrandamento do feixe." - -msgid "Beam width." -msgstr "Largura do feixe." - -msgid "Burn" -msgstr "Arder" - msgid "Close Animation" msgstr "Animação de Fecho" @@ -276,8 +220,8 @@ msgid "Curved Fold" msgstr "Dobras Curvadas" -msgid "Curved Fold Amplitude" -msgstr "Amplitude Dobras Curvadas" +msgid "Curved Fold Amplitude Multiplier" +msgstr "Multiplicador Amplitude Dobras Curvadas" msgid "Dodge" msgstr "Desviar" @@ -285,15 +229,6 @@ msgid "Dodge Gap Ratio" msgstr "Rácio do espaçamento do Desvio" -msgid "Domino" -msgstr "Dominó" - -msgid "Domino Piece Falling Direction" -msgstr "Direcção de Queda das Peças de Dominó" - -msgid "Down" -msgstr "Para baixo" - msgid "Dream" msgstr "Sonho" @@ -303,77 +238,24 @@ msgid "Effect Settings" msgstr "Definições de Efeitos" -msgid "Explode" -msgstr "Explosão" - msgid "Fade" msgstr "Desvanecimento" -msgid "Falling direction for Domino pieces." -msgstr "Direcção na qual as peças de Dominó irão cair." - -msgid "Fire" -msgstr "Fogo" - -msgid "Fire Particle Color" -msgstr "Cor das partículas" - -msgid "Fire Particle Life" -msgstr "Vida das partículas" - -msgid "Fire Particle Size" -msgstr "Tamanho das partículas" - -msgid "Fire Particle Slowdown" -msgstr "Abrandamento das partículas" - -msgid "Fire Smoke" -msgstr "Fumo" - -msgid "Fire constant speed" -msgstr "Velocidade constante do fogo" - -msgid "Fire direction" -msgstr "Direcção do fogo" - -msgid "Fire direction." -msgstr "Direcção do fogo." - -msgid "Fire particle color." -msgstr "Cor das partículas." - -msgid "Fire particle life." -msgstr "Vida das partículas." - -msgid "Fire particle size." -msgstr "Tamanho das partículas." - -msgid "Fire particle slowdown." -msgstr "Abrandamento das partículas." - -msgid "Fire smoke." -msgstr "Fumo do fogo." - msgid "Fixed window interior during the Rollup animation." msgstr "Interior da janela fixo durante a animação de EnrolarParaCima." -msgid "Fly to TaskBar on Minimize" -msgstr "Voar para a Barra de tarefas quando se minimiza" - msgid "Focus Animation" msgstr "Animação de Focar" msgid "Focus Effect" msgstr "Efeito de Focar" -msgid "Fold" -msgstr "Dobrar" - -msgid "Fold Direction" -msgstr "Direcção da Dobra" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Direcção de abertura das dobras para as peças no efeito Razr." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" +"A amplitude (tamanho) da obra é multiplicada por este número. Números " +"negativos dobram para fora." msgid "Glide 1" msgstr "Deslizar 1" @@ -381,19 +263,11 @@ msgid "Glide 2" msgstr "Deslizar 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Cores aleatórias para o efeito de fogo. Opção também conhecida como Fogo " -"Místico." - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Dobras horizontais" -msgid "Horizontal Folds Amplitude" -msgstr "Amplitude Dobras horizontais" +msgid "Horizontal Folds Amplitude Multiplier" +msgstr "Multiplicador Amplitude Dobras Horizontais" msgid "How spring-like the Sidekick animation should be." msgstr "Quão parecida com uma mola a animação PontapéParaLado deve ser." @@ -401,24 +275,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Quão parecida com uma mola a animação Zoom deve ser." -msgid "In" -msgstr "Aproximar" - -msgid "In-out" -msgstr "Dentro-Fora" - -msgid "Leaf Spread" -msgstr "Espalhamento das Folhas" - -msgid "Left" -msgstr "Para a esquerda" - -msgid "Left-right" -msgstr "Esquerda-Direita" - -msgid "Length of airplane's flying path." -msgstr "Comprimento do trajecto de vôo do avião." - msgid "Magic Lamp" msgstr "Lâmpada Mágica" @@ -440,9 +296,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Fim dinâmico Abrir/Fechar da Lâmpada Mágica" -msgid "Make fire effect duration be dependent on window height." -msgstr "Tornar duração do efeito de fogo dependente da altura da janela." - msgid "Minimize Animation" msgstr "Animação da Minimização" @@ -452,21 +305,12 @@ msgid "Minimize/Unminimize Only" msgstr "Minimizar/Restaurar Apenas" -msgid "Movement direction(s) for window pieces." -msgstr "Direcção(ões) de movimento para as peças da janela." - msgid "None" msgstr "Nenhuma" -msgid "Number Of Fire Particles" -msgstr "Número De Partículas de Fogo" - msgid "Number of Horizontal Folds" msgstr "Número de Dobras Horizontais" -msgid "Number of fire particles." -msgstr "Número de partículas de fogo." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -500,18 +344,15 @@ msgid "Options" msgstr "Opções" -msgid "Out" -msgstr "Afastar" - msgid "Pool" msgstr "Piscina" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" -"Piscina dos efeitos a ser escolhidos no caso de o efeito Aleatório estar " -"seleccionado. Pressione restaurar para restaurar a lista completa." +"Lista dos efeitos a ser escolhidos no caso de \"efeito Aleatório\" estar " +"seleccionado. Pressione restaurar para usar todos os efeitos." msgid "Random" msgstr "Aleatório" @@ -522,37 +363,16 @@ msgid "Random Effects" msgstr "Efeitos Aleatórios" -msgid "Randomly Colored Fire" -msgstr "Fogo com cores aleatórias" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" "Rácio de espaços entre os tempos de início do desvio e a duração do foco." -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Direcção de Abertura da Dobra Razr" - -msgid "Rectangular" -msgstr "Rectangular" - -msgid "Right" -msgstr "Para a direita" - msgid "Roll Up" msgstr "Enrolar para Cima" msgid "Rollup Fixed Interior" msgstr "Enrolar com Interior Fixo" -msgid "Rotation Angle" -msgstr "Ângulo de Rotação" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Ângulo de rotação das peças das janelas (em graus)." - msgid "Shade Animation" msgstr "Animação Sombreamento" @@ -568,15 +388,6 @@ msgid "Sidekick Springiness" msgstr "Elasticidade do PontapéParaLado" -msgid "Skewer" -msgstr "Enviesar" - -msgid "Skewer Direction" -msgstr "Direcção do Skewer" - -msgid "Spacing between beams." -msgstr "Espaçamento entre feixes." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -590,19 +401,6 @@ "Largura inicial do efeito abrir e largura final do efeito fechar para o " "Vácuo." -msgid "Tessellation Type" -msgstr "Tipo Padrão" - -msgid "Tessellation type for exploding window pieces." -msgstr "" -"Tipo de padrão elementar que se irá usar para \"construir\" as peças " -"resultantes da explosão de uma janela." - -msgid "Tessellation type for window pieces." -msgstr "" -"Tipo de padrão elementar que se irá usar para \"construir\" as peças de uma " -"janela." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -610,28 +408,6 @@ "Tempo em milisegundos entre cada desenho da animação. Quanto mais alto o " "número, mais aos saltos o movimento se torna." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Tempo em milisegundos entre cada desenho da animação intensa (Ex. Arder, " -"Feixe). Quanto mais alto o número, mais aos saltos o movimento se torna." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"A janela animada irá ser separada em peças ao longo de uma grelha. " -"Especifique o número de células da grelha ao longo da altura da janela." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"A janela animada irá ser separada em peças ao longo de uma grelha. " -"Especifique o número de células da grelha ao longo da largura da janela." - msgid "The animation effect shown when closing a window." msgstr "O efeito de animação a mostrar quando se fecha uma janela." @@ -647,20 +423,6 @@ msgid "The animation effect shown when shading a window." msgstr "O efeito de animação a mostrar quando se sombreia uma janela." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"A janela explodida irá ser separada em peças ao longo de uma grelha. " -"Especifique o número de células da grelha ao longo da altura da janela." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"A janela explodida irá ser separada em peças ao longo de uma grelha. " -"Especifique o número de células da grelha ao longo da largura da janela." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" "Amplitude máxima (tamanho das ondas) que o efeito Lâmpada Mágica irá ter." @@ -677,37 +439,12 @@ msgstr "" "Número de dobras horizontais que irão ocorrer na animação Dobra Horizontal." -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" -"Amplitude das ondas (tamanho das ondas) relativamente à altura da janela." - msgid "The width of the wave relative to the window height." msgstr "Largura da onda relativamente à altura da janela." msgid "The windows that will be animated." msgstr "Janelas que serão animadas." -msgid "Thickness" -msgstr "Espessura" - -msgid "Thickness of Animated Polygons" -msgstr "Espessura dos Polígonos Animados" - -msgid "Thickness of Exploding Polygons" -msgstr "Espessura dos Polígonos Explodidos" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Espessura das peças da janela animada (em pixeís)." - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Espessura das peças da janela explodida (em pixeís)." - -msgid "Up" -msgstr "Para cima" - -msgid "Up-down" -msgstr "Cima-Baixo" - msgid "Use various animations as window effects" msgstr "Usar várias animações como efeitos das janela" @@ -746,17 +483,18 @@ msgid "Wave" msgstr "Onda" -msgid "Wave Amplitude" -msgstr "Amplitude Onda" +msgid "Wave Amplitude Multiplier" +msgstr "Multiplicador Amplitude Onda" msgid "Wave Width" msgstr "Largura Onda" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Se a janela deve voar para a barra de tarefas quando minimizada usando o " -"efeito Avião." +"Amplitude (tamanho) da onda é multiplicada por este número. Números " +"negativos dobram para fora." msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -790,28 +528,12 @@ "Se a janela deve ser diminuída para a barra de tarefas quando minimizada " "usando o efeito Dobras Horizontais." -msgid "Window Grid Height" -msgstr "Altura da Grelha da Janela" - -msgid "Window Grid Width" -msgstr "Largura da Grelha da Janela" - -msgid "Window folding direction." -msgstr "Direcção de dobra das janelas." - msgid "Window that should animate with this effect when focused." msgstr "Janelas que devem ser animadas com este efeito quando focadas." msgid "Window that should animate with this effect when shaded." msgstr "Janelas que devem ser animadas com este efeito quando sombreadas." -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Espessura da janela em pixeís. Definir este valor maior que 0 irá desactivar " -"sombras, difusões e reflexões durante a animação." - msgid "Zoom" msgstr "Zoom" @@ -922,65 +644,11 @@ msgid "Y position" msgstr "Posição Y" -msgid "Brightness Decrease" -msgstr "Diminuir Brilho" - -msgid "Brightness Increase" -msgstr "Aumentar Brilho" - -msgid "Brightness Step" -msgstr "Incremento no Brilho" - -msgid "Brightness and Saturation" -msgstr "Brilho e Constraste" - -msgid "Brightness and Saturation adjustments" -msgstr "Ajustes de Brilho e Contraste" - -msgid "Brightness settings" -msgstr "Definições de brilho" - -msgid "Brightness values for windows" -msgstr "Valores de brilho para janelas" - -msgid "Brightness window values" -msgstr "Valores de brilho da janela" - -msgid "Brightness windows" -msgstr "Janelas com brilho" - -msgid "General" -msgstr "Geral" - -msgid "Saturation Decrease" -msgstr "Diminuir Contraste" - -msgid "Saturation Increase" -msgstr "Aumentar Contraste" - -msgid "Saturation Step" -msgstr "Incremento de Contraste" - -msgid "Saturation settings" -msgstr "Definições de Contraste" - -msgid "Saturation values for windows" -msgstr "Valores de contraste para janelas" - -msgid "Saturation window values" -msgstr "Valores de contraste da janela" - -msgid "Saturation windows" -msgstr "Janelas com Contraste" +msgid "Bicubic filter" +msgstr "Filtro bicúbico" -msgid "Window specific" -msgstr "Janela específica" - -msgid "Windows that should have a different brightness by default" -msgstr "Janelas que devem ser ter um brilho diferente por omissão" - -msgid "Windows that should have a different saturation by default" -msgstr "Janelas que devem ser ter um contraste diferente por omissão" +msgid "Bicubic texture filtering" +msgstr "Filtragem bicúbica" msgid "Color filter" msgstr "Filtro de cor" @@ -1076,6 +744,9 @@ "Linha de comandos do gestor de janelas alternativo. NÃO INTRODUZA COMPIZ " "AQUI!!!" +msgid "Above" +msgstr "Topo" + msgid "Adjust bottom face image to rotation" msgstr "Ajustar imagem da face inferior para rotação" @@ -1097,6 +768,18 @@ msgid "Appearance" msgstr "Aparência" +msgid "Aspect ratio" +msgstr "Aparência proporcional" + +msgid "Aspect ratio of the deformed cube" +msgstr "Rácio de aparência do cubo deformado" + +msgid "Auto zoom" +msgstr "Zoom automático" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zoom automático apenas com rotação através do rato" + msgid "Behaviour" msgstr "Comportamento" @@ -1132,18 +815,54 @@ msgid "Color of bottom face of the cube" msgstr "Cor da face inferior do cubo" +msgid "Color of the ground (far)." +msgstr "Cor do chão (longe)." + +msgid "Color of the ground (near)." +msgstr "Cor do chão (perto)." + msgid "Color of top face of the cube" msgstr "Cor da face superior do cubo" +msgid "Compiz cube reflection and deformation" +msgstr "Reflexão e deformação do cubo Compiz" + msgid "Cube Bottom Color" msgstr "Cor Face Inferior Cubo" -msgid "Cube Caps" -msgstr "Coberturas Cubo" +msgid "Cube Reflection and Deformation" +msgstr "Reflexão e Deformação Cubo" msgid "Cube Top Color" msgstr "Cor Face Superior Cubo" +msgid "Cube caps" +msgstr "Coberturas Cubo" + +msgid "Cylinder" +msgstr "Cilindro" + +msgid "Deform caps" +msgstr "Deformar coberturas" + +msgid "Deform cube caps." +msgstr "Deformar coberturas do cubo." + +msgid "Deform only on mouse rotate" +msgstr "Deformar apenas com rotação através do rato" + +msgid "Deformation" +msgstr "Deformação:" + +msgid "Deformation in unfold cube mode." +msgstr "Deformação quando cubo está desdobrado." + +msgid "Deformation mode." +msgstr "Modo deformação" + +msgid "Distance" +msgstr "Distância" + msgid "Draw bottom face" msgstr "Desenhar face inferior" @@ -1156,12 +875,38 @@ msgid "Draw top face of the cube" msgstr "Desenhar face superior do cubo" +msgid "Enabled" +msgstr "Activado" + +msgid "Give cube a reflective ground." +msgstr "Dar ao cubo um fundo espelhado." + msgid "Go back to previous image for bottom face of the cube" msgstr "Retroceder para a imagem anterior na face de baixo do cubo" msgid "Go back to previous image for top face of the cube" msgstr "Retroceder para a imagem anterior na face de cima do cubo" +msgid "Ground color(far)" +msgstr "Cor do chão (longe)" + +msgid "Ground color(near)" +msgstr "Cor do chão (perto)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" +"Iniciar deformação cilindríca do cubo apenas quando a rotação for efectuada " +"com o rato." + +msgid "Intensity" +msgstr "Intensidade" + +msgid "Jumpy" +msgstr "Saltitante (O cubo acompanha a reflexão)" + +msgid "Jumpy reflection" +msgstr "Reflexão saltitante (A reflexão acompanha o cubo)" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1173,6 +918,18 @@ "Lista de arquivos PNG e SVG que devem ser renderizados na face superior do " "cubo" +msgid "Maintain bottom aspect ratio" +msgstr "Mantém as proporções de dimensões de baixo" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "Mantém as proporções de dimensões da cobertura de baixo." + +msgid "Maintain top aspect ratio" +msgstr "Mantém as proporções de dimensões de cima" + +msgid "Maintain top cap image aspect ratio." +msgstr "Mantém as proporções de dimensões da cobertura de cima." + msgid "Next bottom image" msgstr "Imagem inferior seguinte" @@ -1185,8 +942,23 @@ msgid "Prev top image" msgstr "Imagem superior seguinte" -msgid "Render images on top and bottom of the cube" -msgstr "Mostrar imagens nas faces de cima e de baixo do cubo" +msgid "Reflection" +msgstr "Reflexão" + +msgid "Reflection ground size" +msgstr "Tamanho da reflexão" + +msgid "Reflection ground size." +msgstr "Tamanho da superfície de reflexão." + +msgid "Reflection intensity" +msgstr "Intensidade da reflexão" + +msgid "Reflection mode" +msgstr "Modo de reflexão" + +msgid "Reflection mode." +msgstr "Modo de reflexão." msgid "Scale bottom image" msgstr "Escalar imagem inferior" @@ -1200,69 +972,33 @@ msgid "Scale top image" msgstr "Escalar imagem superior" +msgid "Sphere" +msgstr "Esfera" + msgid "Top image files" msgstr "icheiros com as imagens para face superior" -msgid "Above" -msgstr "Topo" +msgid "Unfold cube deformation" +msgstr "Desdobrar deformação do cubo" -msgid "Auto zoom" -msgstr "Zoom automático" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Retroceder o zoom automaticamente apenas com rotação através do rato." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zoom automático apenas com rotação através do rato" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Diminuir o zoom automaticamente para o cubo caber no ecrã." -msgid "Color of the ground (far)." -msgstr "Cor do chão (longe)." +msgid "Cube Caps" +msgstr "Coberturas Cubo" -msgid "Color of the ground (near)." -msgstr "Cor do chão (perto)." +msgid "Render images on top and bottom of the cube" +msgstr "Mostrar imagens nas faces de cima e de baixo do cubo" msgid "Compiz cube reflection" -msgstr "Criar uma reflexão do cubo" +msgstr "Reflexão do cubo compiz" msgid "Cube Reflection" msgstr "Reflexão do cubo" -msgid "Distance" -msgstr "Distância" - -msgid "Ground color(far)" -msgstr "Cor do chão (longe)" - -msgid "Ground color(near)" -msgstr "Cor do chão (perto)" - -msgid "Intensity" -msgstr "Intensidade" - -msgid "Jumpy" -msgstr "Saltitante (O cubo acompanha a reflexão)" - -msgid "Jumpy reflection" -msgstr "Reflexão saltitante (A reflexão acompanha o cubo)" - -msgid "Reflection ground size" -msgstr "Tamanho da reflexão" - -msgid "Reflection ground size." -msgstr "Tamanho da superfície de reflexão." - -msgid "Reflection intensity" -msgstr "Intensidade da reflexão" - -msgid "Reflection mode" -msgstr "Modo de reflexão" - -msgid "Reflection mode." -msgstr "Modo de reflexão." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Retroceder o zoom automaticamente apenas com rotação através do rato." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Diminuir o zoom automaticamente para o cubo caber no ecrã." - msgid "Animation used when switching to expo mode" msgstr "Animação usada quando se muda para o modo expo" @@ -1284,9 +1020,6 @@ msgid "Curve strength" msgstr "Força curva" -msgid "Deformation" -msgstr "Deformação:" - msgid "Deformation of the expo wall" msgstr "Deformação do muro expo" @@ -1377,9 +1110,6 @@ msgid "Previous viewport" msgstr "Viewport anterior" -msgid "Reflection" -msgstr "Reflexão" - msgid "Reflection Scale" msgstr "Escala Reflexão" @@ -1420,9 +1150,8 @@ msgid "Zoom time" msgstr "Tempo de zoom" -#, fuzzy msgid "Activate Demanding Attention Window" -msgstr "Activar uma janela especificada" +msgstr "Activa Janela Necessita Atenção" msgid "Activate Window" msgstr "Activar janela" @@ -1432,6 +1161,7 @@ msgid "Activate next window which has the \"demands attention\" flag set." msgstr "" +"Activa a próxima janela que tenha a opção \"necessita atenção\" activada." msgid "Extra WM Actions" msgstr "Acções extra do gestor de janelas" @@ -1488,6 +1218,10 @@ msgid "Center the mouse" msgstr "Centrar o rato" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Escalar o ponteiro do rato" + msgid "Enable focus tracking" msgstr "Activar seguimento de foco" @@ -1554,19 +1288,12 @@ "Esconde o cursor original do rato quando tem magnificação activa e " "escalamento do rato" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Quantas vezes verificar a posição do rato, em milisegundos. Diminua este " -"valor para reduzir comportamento \"aos saltos\"." +msgid "Minimum zoom factor" +msgstr "Factor mínimo de zoom" msgid "Mouse Behaviour" msgstr "Comportamento do Rato" -msgid "Mouse Poll Interval" -msgstr "Refrescamento Ponteiro Rato" - msgid "Mouse Restrain Margin" msgstr "Margem Restringimento Rato" @@ -1656,12 +1383,23 @@ msgid "Speed" msgstr "Velocidade" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Escalar o ponteiro do rato" + msgid "Sync Mouse" msgstr "Sincronizar Rato" msgid "Target Focused Window on Specific level" msgstr "Mostrar a Janela Focada num Nível Específico" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" +"O factor mínimo de zoom permitido. Um valor de 0.5 significa zoom 2x, um " +"valor de 0.25 significa zoom 4x." + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" "Tamanho da margem a adicionar quando se tentar restringir o movimento do " @@ -1681,9 +1419,22 @@ msgid "Use linear filter when zoomed in" msgstr "Usar filtro linear quando magnificar" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Movimento Zoom Área" +msgid "Zoom Box" +msgstr "Caixa Zoom" + msgid "Zoom In" msgstr "Aumentar o zoom" @@ -1711,6 +1462,9 @@ msgid "Zoom factor" msgstr "Factor de zoom" +msgid "Zoom in on a boxed area" +msgstr "Amplia uma área dentro de uma caixa" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" "Zoom in/out por este factor. Valor mais altos significam magnificações mais " @@ -1770,6 +1524,12 @@ msgid "Toggle window fake ARGB." msgstr "Alternar ARGB falsos da janela." +msgid "Add Particle" +msgstr "Adicionar Partícula" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "Adiciona uma partícula de fogo na posição (x,y), onde x e y são floats" + msgid "Background brightness" msgstr "Brilho do fundo" @@ -1785,6 +1545,35 @@ msgid "Clear (key)" msgstr "Limpar (tecla)" +msgid "Fire Particle Color" +msgstr "Cor das partículas" + +msgid "Fire Particle Life" +msgstr "Vida das partículas" + +msgid "Fire Particle Size" +msgstr "Tamanho das partículas" + +msgid "Fire Particle Slowdown" +msgstr "Abrandamento das partículas" + +msgid "Fire particle color." +msgstr "Cor das partículas." + +msgid "Fire particle life." +msgstr "Vida das partículas." + +msgid "Fire particle size." +msgstr "Tamanho das partículas." + +msgid "Fire particle slowdown." +msgstr "Abrandamento das partículas." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Cores aleatórias para o efeito de fogo. Opção também conhecida como Fogo " +"Místico." + msgid "Initiate (button)" msgstr "Iniciar (botão)" @@ -1806,6 +1595,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Cria partículas de fogo no ecrã" +msgid "Randomly Colored Fire" +msgstr "Fogo com cores aleatórias" + msgid "Cube Gears" msgstr "Engrenagem no Cubo" @@ -1903,6 +1695,9 @@ msgid "Font Size" msgstr "Tamanho da fonte" +msgid "General" +msgstr "Geral" + msgid "Glass" msgstr "Vidro" @@ -2507,9 +2302,19 @@ msgid "Start gesture" msgstr "Iniciar gesto" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Quantas vezes verificar a posição do rato, em milisegundos. Diminua este " +"valor para reduzir comportamento \"aos saltos\"." + msgid "Misc" msgstr "Misc" +msgid "Mouse Poll Interval" +msgstr "Refrescamento Ponteiro Rato" + msgid "Mouse position polling" msgstr "Refrescamento da posição do rato" @@ -2529,7 +2334,7 @@ msgstr "Mudar viewport em resposta a um gesto do rato" msgid "Also negate window decorations, not only the window contents." -msgstr "" +msgstr "Também negar decorações da janela, não apenas os conteúdos da janela." msgid "Exclude Windows" msgstr "Excluir Janelas" @@ -2537,9 +2342,8 @@ msgid "Neg Windows" msgstr "Janelas a Negativo" -#, fuzzy msgid "Negate Decorations" -msgstr "Reflexão de Decorações" +msgstr "Negar Decorações" msgid "Negative" msgstr "Negativo" @@ -3252,8 +3056,11 @@ msgid "Background color of the window title" msgstr "Cor de fundo do título da janela" -msgid "Close Windows In Scale" -msgstr "Fechar Janelas em Scale" +msgid "Close Window" +msgstr "Fechar Janela" + +msgid "Close window while in scale mode" +msgstr "Fechar janelas enquanto em modo Scale" msgid "Close windows while in scale mode" msgstr "Fechar janelas enquanto em modo Redimensionar" @@ -3261,9 +3068,18 @@ msgid "Color used for highlighting the hovered window" msgstr "Cor usada para evidenciar a janela sobre a qual paira o cursor do rato" +msgid "Constrain Pull To Screen" +msgstr "Limitar Puxar Para Ecrã" + msgid "Draw Window Highlight" msgstr "Desenhar Realce Janela" +msgid "Exit Scale On Pull" +msgstr "Sair Scale Ao Puxar" + +msgid "Exit scale mode after a window has been pulled." +msgstr "Sair do modo scale após uma janela ter sido puxada." + msgid "Font color of the window title" msgstr "Cor do título da janela" @@ -3280,6 +3096,12 @@ msgstr "" "Evidencia a janela sobre a qual paira o cursor do rato com a cor escolhida" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" +"Certificar que as janelas estão completamente visíveis após tê-las puxado " +"para outro viewport" + msgid "No display" msgstr "Não exibe" @@ -3289,6 +3111,12 @@ msgid "Organic - EXPERIMENTAL" msgstr "Orgânico - EXPERIMENTAL" +msgid "Pull Window" +msgstr "Puxar Janela" + +msgid "Pull window to current viewport while in scale mode" +msgstr "Puxar janela para o viewport actual enquanto em modo Scale" + msgid "Scale Addons" msgstr "Adições ao Scale" @@ -3313,6 +3141,9 @@ msgid "Window Layout Mode" msgstr "Modo Exibição Janelas" +msgid "Window Pull" +msgstr "Puxar Janela" + msgid "Window Title" msgstr "Título Janela" @@ -3322,11 +3153,11 @@ msgid "Window title display in scale mode" msgstr "Mostrar título da janela no modo Redimensionar" -msgid "Zoom Windows In Scale" -msgstr "Magnificar Janelas Em Scale" +msgid "Zoom Window" +msgstr "Ampliar Janela" -msgid "Zoom windows while in scale mode" -msgstr "Magnificar janelas enquanto em modo scale" +msgid "Zoom window while in scale mode" +msgstr "Ampliar janela enquanto em modo Scale" msgid "Filter Case Insensitive" msgstr "Filtro Insensível a Maísculas" @@ -3594,18 +3425,30 @@ msgid "Direction of window movement" msgstr "Direcção do movimento das janelas" +msgid "Down" +msgstr "Para baixo" + +msgid "Left" +msgstr "Para a esquerda" + msgid "Left/Right" msgstr "Esquerda/Direita" msgid "Movement Direction" msgstr "Direcção do Movimento" +msgid "Right" +msgstr "Para a direita" + msgid "Show desktop" msgstr "Mostrar ambiente de trabalho" msgid "To Corners" msgstr "Para os Cantos" +msgid "Up" +msgstr "Para cima" + msgid "Up/Down" msgstr "Cima/Baixo" @@ -3932,6 +3775,217 @@ msgid "Start Splash." msgstr "Iniciar Ecrã de Logótipo." +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" +"Nível de opacidade (em percentagem) para janelas no alternador que não estão " +"seleccionadas" + +msgid "Behavior" +msgstr "Comportamento" + +msgid "Darken background when showing the stack" +msgstr "Escurecer fundo quando se estiver a mostrar a pilha" + +msgid "On Thumbnail" +msgstr "Em Miniatura" + +msgid "Rotate inactive windows" +msgstr "Rodar janelas inactivas" + +msgid "Should not selected windows be rotated" +msgstr "Janelas não selecionadas devem ser rodadas" + +msgid "Stack Window Switcher" +msgstr "Alternador Janelas Pilha" + +msgid "Tilt angle of the background." +msgstr "Ângulo de inclinação do fundo." + +msgid "Windows" +msgstr "Janelas" + +msgid "Windows that should be shown in the switcher" +msgstr "Janelas que devem ser mostradas no alternador" + +msgid "Alignment for rows that are not fully filled" +msgstr "Alinhamento para linhas que não estão completamente preenchidas" + +msgid "Amount of brightness in percent" +msgstr "Valor de brilho em percentagem" + +msgid "Amount of opacity in percent" +msgstr "Valor de opacidade em percentagem" + +msgid "Amount of saturation in percent" +msgstr "Valor de saturação em percentagem" + +msgid "Auto Change Viewport" +msgstr "Mudar Automaticamente Viewport" + +msgid "Bring Selected To Front" +msgstr "Colocar Selecção Na Frente" + +msgid "Centered" +msgstr "Centrada" + +msgid "Change to the viewport of the selected window while switching" +msgstr "Mudar para o viewport da janela selecionada ao alternar" + +msgid "Color of highlight rectangle" +msgstr "Cor do rectângulo de realce" + +msgid "Color of highlight rectangle border" +msgstr "Cor da margem do rectângulo de realce" + +msgid "Color of inlay in highlight rectangle border" +msgstr "Cor do inlay na margem de realce rectangular" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "Gerar MipMaps quando possível para escalamento de melhor qualidade" + +msgid "Highlight Border Color" +msgstr "Cor Margem Realce" + +msgid "Highlight Border Inlay Color" +msgstr "Cor Inlay Margem Realce" + +msgid "Highlight Mode" +msgstr "Modo Realce" + +msgid "Icon" +msgstr "Ícone" + +msgid "Minimized Window Highlight Rectangle" +msgstr "Rectângulo Realce Janelas Minimizadas" + +msgid "Mipmap" +msgstr "MipMap" + +msgid "Mode for highlighting the currently selected window" +msgstr "Modo para realçar a janela seleccionada actualmente" + +msgid "Next Panel" +msgstr "Painel Seguinte" + +msgid "Next window" +msgstr "Próxima janela" + +msgid "Next window (All windows)" +msgstr "Próxima Janela (Todas as janelas)" + +msgid "Next window (Group)" +msgstr "Próxima Janela (Grupo)" + +msgid "Next window (No popup)" +msgstr "Próxima Janela (Sem popup)" + +msgid "Original Window Position" +msgstr "Posição Original Janela" + +msgid "Popup Window Delay" +msgstr "Atraso Janela Popup" + +msgid "Popup switcher if not visible and select next window" +msgstr "" +"Mostrar alternador, se não estiver visível, e selecionar próxima janela" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Mostrar alternador, se não estiver visível, e seleccionar a próxima janela " +"da aplicação actual." + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Mostrar alternador, se não estiver visível, e selecionar próxima janela de " +"todas as janelas" + +msgid "Popup switcher if not visible and select previous window" +msgstr "" +"Mostrar alternador, se não estiver visível, e selecionar janela anterior" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Mostar anel se não visível e seleccionar a janela anterior da aplicação " +"actual." + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Mostrar alternador, se não estiver visível, e selecionar janela anterior de " +"todas as janelas" + +msgid "Prev Panel" +msgstr "Painel Anterior" + +msgid "Prev window" +msgstr "Janela anterior" + +msgid "Prev window (All windows)" +msgstr "Janela anterior (Todas as janelas)" + +msgid "Prev window (Group)" +msgstr "Janela Anterior (Grupo)" + +msgid "Prev window (No popup)" +msgstr "Janela anterior (Sem popup)" + +msgid "Row Alignment" +msgstr "Alinhamento Horizontal" + +msgid "Select next panel type window." +msgstr "Seleccionar janela de tipo de painel seguinte" + +msgid "Select next window without showing the popup window." +msgstr "Seleccionar janela seguinte sem mostrar a janela de popup." + +msgid "Select previous panel type window." +msgstr "Seleccionar janela de tipo de painel anterior" + +msgid "Select previous window without showing the popup window." +msgstr "Seleccionar janela anterior sem mostrar a janela de popup." + +msgid "Selected Window Highlight" +msgstr "Seleccionar Realce Janela" + +msgid "Show Rectangle" +msgstr "Mostar Rectângulo" + +msgid "Show icon next to thumbnail" +msgstr "Mostrar ícone ao lado da miniatura" + +msgid "Show minimized windows" +msgstr "Mostrar janelas minimizadas" + +msgid "Static Application Switcher" +msgstr "Alternador Estático de Aplicações" + +msgid "Switcher speed" +msgstr "Velocidade do alternador" + +msgid "Switcher timestep" +msgstr "Timestep do alternador" + +msgid "Switcher windows" +msgstr "Janelas a alternar" + +msgid "Taskbar Entry" +msgstr "Entrada Barra Tarefas" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "Tempo (em s) que a janela popup deve ser atrasada antes de aparecer" + +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "Onde mostrar rectângulo de realce para janelas minimizadas" + +msgid "Windows that should be shown in switcher" +msgstr "Janelas que devem ser mostradas no alternador" + msgid "Render text to texture" msgstr "Renderizar texto em texturas" @@ -4562,7 +4616,7 @@ msgstr "Cor de delineação da janela de mudança." msgid "Preview Scale" -msgstr "" +msgstr "Prever Escalamento" msgid "Radius of the rounded edge" msgstr "Raio das margens arredondadas" @@ -4596,7 +4650,7 @@ #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Tamanho da antevisão em %s" msgid "Switch Target Preview Visibility Time" msgstr "Mudar Tempo de Visibilidade da Antevisão do Alvo" @@ -4623,7 +4677,7 @@ msgstr "Duração do Deslizamento do Muro" msgid "Width of the border between the previews" -msgstr "" +msgstr "Largura da borda entre as antevisões" msgid "Background fill type." msgstr "Tipo de preenchimento do fundo." @@ -4634,9 +4688,6 @@ msgid "Center Tiled" msgstr "Centrar Mosaico" -msgid "Centered" -msgstr "Centrada" - msgid "Color 1" msgstr "Cor 1" @@ -4706,12 +4757,11 @@ msgid "End widget mode when a non-widget window is clicked." msgstr "Terminar modo widget quando uma janela não-widget é clicada." -#, fuzzy msgid "Focus Widget Layer" -msgstr "Camada de Widgets" +msgstr "Focar Camada Widget" msgid "Focus a window in the widget layer when activating the layer" -msgstr "" +msgstr "Focar uma janela na camada widget quando camada for activada" msgid "Saturation of non-widget windows in widget modes." msgstr "Contraste das janelas não-widget em modo Widget." @@ -4764,6 +4814,12 @@ msgid "Matches" msgstr "Coincidências" +msgid "Maximized" +msgstr "Maximizada" + +msgid "Maximized windows" +msgstr "Janelas maximizadas" + msgid "No ARGB visuals" msgstr "Sem visualização ARGB" @@ -4842,6 +4898,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Correcção Parâmetro Fragmento AIGLX" +msgid "Convert Urgency to Demands Attention" +msgstr "Converter Urgência para Necessita Atenção" + msgid "Firefox Menu Fix" msgstr "Correcção para o Menu do Firefox" @@ -4887,6 +4946,9 @@ "Tornar janelas com a opção \"Em todos os ambientes de trabalho\" fixas. " "Janelas fixas irão ser visíveis em todos os viewports." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "Tornar janelas \"urgentes\" também \"a necessitar atenção\"." + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "Fazer com que aplicações mais antigas e Wine funcionem como esperado em modo " @@ -4914,6 +4976,322 @@ msgid "Workarounds" msgstr "Correcções" +#~ msgid "Airplane" +#~ msgstr "Avião" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Comprimento do trajecto de vôo do avião" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Espaço de tempo de animação para Efeitos Intensos" + +#~ msgid "Automatic" +#~ msgstr "Automático" + +#~ msgid "Beam" +#~ msgstr "Feixe" + +#~ msgid "Beam Color" +#~ msgstr "Cor Feixe" + +#~ msgid "Beam Life" +#~ msgstr "Vida do Feixe" + +#~ msgid "Beam Slowdown" +#~ msgstr "Abrandamento Feixe" + +#~ msgid "Beam Spacing" +#~ msgstr "Espaçamento Feixe" + +#~ msgid "Beam Up" +#~ msgstr "Feixe para Cima" + +#~ msgid "Beam Width" +#~ msgstr "Largura Feixe" + +#~ msgid "Beam color." +#~ msgstr "Cor do feixe." + +#~ msgid "Beam life." +#~ msgstr "Vida do feixe." + +#~ msgid "Beam slowdown." +#~ msgstr "Abrandamento do feixe." + +#~ msgid "Beam width." +#~ msgstr "Largura do feixe." + +#~ msgid "Burn" +#~ msgstr "Arder" + +#~ msgid "Domino" +#~ msgstr "Dominó" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Direcção de Queda das Peças de Dominó" + +#~ msgid "Explode" +#~ msgstr "Explosão" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Direcção na qual as peças de Dominó irão cair." + +#~ msgid "Fire" +#~ msgstr "Fogo" + +#~ msgid "Fire Smoke" +#~ msgstr "Fumo" + +#~ msgid "Fire constant speed" +#~ msgstr "Velocidade constante do fogo" + +#~ msgid "Fire direction" +#~ msgstr "Direcção do fogo" + +#~ msgid "Fire direction." +#~ msgstr "Direcção do fogo." + +#~ msgid "Fire smoke." +#~ msgstr "Fumo do fogo." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Voar para a Barra de tarefas quando se minimiza" + +#~ msgid "Fold" +#~ msgstr "Dobrar" + +#~ msgid "Fold Direction" +#~ msgstr "Direcção da Dobra" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Direcção de abertura das dobras para as peças no efeito Razr." + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "Aproximar" + +#~ msgid "In-out" +#~ msgstr "Dentro-Fora" + +#~ msgid "Leaf Spread" +#~ msgstr "Espalhamento das Folhas" + +#~ msgid "Left-right" +#~ msgstr "Esquerda-Direita" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Comprimento do trajecto de vôo do avião." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Tornar duração do efeito de fogo dependente da altura da janela." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Direcção(ões) de movimento para as peças da janela." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Número De Partículas de Fogo" + +#~ msgid "Number of fire particles." +#~ msgstr "Número de partículas de fogo." + +#~ msgid "Out" +#~ msgstr "Afastar" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Direcção de Abertura da Dobra Razr" + +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#~ msgid "Rotation Angle" +#~ msgstr "Ângulo de Rotação" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Ângulo de rotação das peças das janelas (em graus)." + +#~ msgid "Skewer" +#~ msgstr "Enviesar" + +#~ msgid "Skewer Direction" +#~ msgstr "Direcção do Skewer" + +#~ msgid "Spacing between beams." +#~ msgstr "Espaçamento entre feixes." + +#~ msgid "Tessellation Type" +#~ msgstr "Tipo Padrão" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "" +#~ "Tipo de padrão elementar que se irá usar para \"construir\" as peças " +#~ "resultantes da explosão de uma janela." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "" +#~ "Tipo de padrão elementar que se irá usar para \"construir\" as peças de " +#~ "uma janela." + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Tempo em milisegundos entre cada desenho da animação intensa (Ex. Arder, " +#~ "Feixe). Quanto mais alto o número, mais aos saltos o movimento se torna." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "A janela animada irá ser separada em peças ao longo de uma grelha. " +#~ "Especifique o número de células da grelha ao longo da altura da janela." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "A janela animada irá ser separada em peças ao longo de uma grelha. " +#~ "Especifique o número de células da grelha ao longo da largura da janela." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "A janela explodida irá ser separada em peças ao longo de uma grelha. " +#~ "Especifique o número de células da grelha ao longo da altura da janela." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "A janela explodida irá ser separada em peças ao longo de uma grelha. " +#~ "Especifique o número de células da grelha ao longo da largura da janela." + +#~ msgid "Thickness" +#~ msgstr "Espessura" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Espessura dos Polígonos Animados" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Espessura dos Polígonos Explodidos" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Espessura das peças da janela animada (em pixeís)." + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Espessura das peças da janela explodida (em pixeís)." + +#~ msgid "Up-down" +#~ msgstr "Cima-Baixo" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Se a janela deve voar para a barra de tarefas quando minimizada usando o " +#~ "efeito Avião." + +#~ msgid "Window Grid Height" +#~ msgstr "Altura da Grelha da Janela" + +#~ msgid "Window Grid Width" +#~ msgstr "Largura da Grelha da Janela" + +#~ msgid "Window folding direction." +#~ msgstr "Direcção de dobra das janelas." + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Espessura da janela em pixeís. Definir este valor maior que 0 irá " +#~ "desactivar sombras, difusões e reflexões durante a animação." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (tamanho das ondas das dobras) das Dobras Horizontais " +#~ "relativamente à largura da janela. Valores negativos dobram para fora." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Amplitude (tamanho das ondas das dobras) das dobras curvadas " +#~ "relativamente à largura da janela. Valores negativos dobram para fora." + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "" +#~ "Amplitude das ondas (tamanho das ondas) relativamente à altura da janela." + +#~ msgid "Brightness Decrease" +#~ msgstr "Diminuir Brilho" + +#~ msgid "Brightness Increase" +#~ msgstr "Aumentar Brilho" + +#~ msgid "Brightness Step" +#~ msgstr "Incremento no Brilho" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Brilho e Constraste" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Ajustes de Brilho e Contraste" + +#~ msgid "Brightness settings" +#~ msgstr "Definições de brilho" + +#~ msgid "Brightness values for windows" +#~ msgstr "Valores de brilho para janelas" + +#~ msgid "Brightness window values" +#~ msgstr "Valores de brilho da janela" + +#~ msgid "Brightness windows" +#~ msgstr "Janelas com brilho" + +#~ msgid "Saturation Decrease" +#~ msgstr "Diminuir Contraste" + +#~ msgid "Saturation Increase" +#~ msgstr "Aumentar Contraste" + +#~ msgid "Saturation Step" +#~ msgstr "Incremento de Contraste" + +#~ msgid "Saturation settings" +#~ msgstr "Definições de Contraste" + +#~ msgid "Saturation values for windows" +#~ msgstr "Valores de contraste para janelas" + +#~ msgid "Saturation window values" +#~ msgstr "Valores de contraste da janela" + +#~ msgid "Saturation windows" +#~ msgstr "Janelas com Contraste" + +#~ msgid "Window specific" +#~ msgstr "Janela específica" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Janelas que devem ser ter um brilho diferente por omissão" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Janelas que devem ser ter um contraste diferente por omissão" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Fechar Janelas em Scale" + #~ msgid "Animation Speed" #~ msgstr "Velocidade da animação" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/ru.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/ru.po --- compiz-fusion-plugins-unsupported-0.7.6/po/ru.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/ru.po 2008-09-17 14:29:33.000000000 +0100 @@ -1,17 +1,19 @@ +# translation of i18n.po to Russian +# Dimitriy Ryazantcev , 2008. msgid "" msgstr "" "Project-Id-Version: i18n\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" -"PO-Revision-Date: 2008-04-04 21:46+0200\n" -"Last-Translator: Sabirov Mikhail \n" -"Language-Team: \n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" +"PO-Revision-Date: 2008-07-09 11:46+0200\n" +"Last-Translator: Dmitry Petrushevsky \n" +"Language-Team: Russian \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" -"X-Poedit-Language: Russian\n" -"X-Poedit-Country: RUSSIAN FEDERATION\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" msgstr "3D только при вращении мышкой" @@ -19,39 +21,30 @@ msgid "3D Windows" msgstr "3D Окна" -#, fuzzy msgid "Bevel Bottom Left" msgstr "Скос нижнего левого" -#, fuzzy msgid "Bevel Bottom Right" msgstr "Скос нижнего правого" -#, fuzzy msgid "Bevel Corners" msgstr "Скос углов" -#, fuzzy msgid "Bevel Top Left" msgstr "Скос верхнего левого" -#, fuzzy msgid "Bevel Top Right" msgstr "Скос верхнего правого" -#, fuzzy msgid "Bevel bottom left corner" msgstr "Скос нижнего левого угла" -#, fuzzy msgid "Bevel bottom right corner" msgstr "Скос нижнего правого угла" -#, fuzzy msgid "Bevel top left corner" msgstr "Скос верхнего левого угла" -#, fuzzy msgid "Bevel top right corner" msgstr "Скос верхнего правого угла" @@ -60,21 +53,20 @@ msgstr "Изменить расстояние между окнами (в процентах от размера куба)." msgid "Color of an inactive window's depth" -msgstr "" +msgstr "Цвет кромки неактивного окна" -#, fuzzy msgid "Color of the active window's depth" -msgstr "Развертывание активного окна" +msgstr "Цвет кромки активного окна" msgid "Elevates windows while rotating the cube" -msgstr "Подъем окон при вращении куба" +msgstr "Поднимает окна при вращении куба" msgid "" "Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " "cube via the mouse)" msgstr "" -"Инициировать 3D-дисплей только если вращение производится мышью. (Например: " -"Вы вращаете куб мышью)" +"Активирует 3D-дисплей только при вращении мышкой. (Например: Вы вращаете куб " +"мышкой)" msgid "Minimum Cube Size" msgstr "Минимальный размер куба" @@ -83,121 +75,89 @@ msgstr "Минимальный размер куба (в процентах)." msgid "Misc. Options" -msgstr "Разные опции" +msgstr "Различные настройки" msgid "Roundoff corners for consistency with rounded decorations" msgstr "Скруглять углы для соответствия округлому оформлению" -#, fuzzy msgid "Window Color (Active)" -msgstr "Заголовок окна" +msgstr "Цвет окна (активного)" -#, fuzzy msgid "Window Color (Inactive)" -msgstr "Центр выделения" +msgstr "Цвет окна (неактивного)" -#, fuzzy +# Посмотрите на этот параметр в действии. "Толщина" - более точное определение. msgid "Window Depth" -msgstr "Битность:" +msgstr "Толщина окна" -#, fuzzy msgid "Window Match" -msgstr "Совпадений нет" +msgstr "Соответствие окна" -#, fuzzy msgid "Window Space" -msgstr "Своб. место: %s (%d%%) из %s" +msgstr "Площадь окна" -#, fuzzy msgid "Window depth" -msgstr "Битность:" +msgstr "толщина окна" -#, fuzzy msgid "Windows that should be handled by 3D" -msgstr "Окна, прозрачные по умолчанию" +msgstr "Окна, которые должны восприниматься как 3D" -#, fuzzy msgid "ADD Helper" -msgstr "добавить подключ" +msgstr "ADD Helper" -#, fuzzy msgid "Bindings" -msgstr "Горячие клавиши" +msgstr "Сочетания клавиш" -#, fuzzy msgid "Brightness" msgstr "Яркость" -#, fuzzy msgid "Brightness of faded windows" -msgstr "Восстановление минимизированных окон" +msgstr "Яркость затемненных окон" + +msgid "Enable ADD Helper on start" +msgstr "Включить ADD Helper при входе в систему" + +msgid "Enables ADD helper when it is first loaded." +msgstr "Включает ADD helper при первой загрузке" -#, fuzzy msgid "" "Make it slightly easier to concentrate by dimming all but the active window." -msgstr "" -"Сделать немного легче сосредоточиться, затемнив всё, кроме активного окна." +msgstr "Помогает сконцентрироваться, притемнив всё, кроме активного окна." msgid "Opacity" msgstr "Непрозрачность" -#, fuzzy msgid "Opacity of faded windows" -msgstr "Степень прозрачности движущихся окон" +msgstr "Степень непрозрачности затемненных окон" -#, fuzzy msgid "Saturation" msgstr "Насыщенность" -#, fuzzy msgid "Saturation of faded windows" -msgstr "Восстановление минимизированных окон" +msgstr "Насыщенность затемненных окон" -#, fuzzy msgid "Toggle AddHelper" -msgstr "Переключить закладку" +msgstr "Переключение AddHelper" msgid "Use this to enable/disable AddHelper on the fly." msgstr "" +"Использовать это сочетание клавиш для включения/отключения AddHelper на лету." -#, fuzzy msgid "Window Types" -msgstr "Типы &файлов" +msgstr "Типы окна" msgid "Window types that should be Opacified." -msgstr "" - -msgid "Airplane" -msgstr "Самолёт" - -msgid "Airplane Flying Path Length" -msgstr "Продолжительность полёта самолёта" +msgstr "Типы окна, которые должны быть непрозрачными." msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." msgstr "" "Все эффекты выбираются произвольно, игнорируя выбранный эффект. Если ничего " -"(None) не выбрано для события, это событие не будет анимировано." - -#, fuzzy -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Амплитуда (размер волн в изгибе) в Горизонтальном Изгибе по отношению к " -"ширине окна. Отрицательные значения изгибают наружу." - -#, fuzzy -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Амплитуда (размер волн в изгибе) в Кривом Изгибе по отношению к ширине окна. " -"Отрицательные значения изгибают наружу." +"не выбрано для события, это событие не будет анимировано." msgid "Angle of window at the end of the animation." -msgstr "Угол окна по окончанию анимации." +msgstr "Угол окна по окончании анимации." msgid "Animation Selection" msgstr "Выбор анимации" @@ -205,223 +165,91 @@ msgid "Animation Time Step" msgstr "Скорость анимации" -#, fuzzy -msgid "Animation Time Step For Intense Effects" -msgstr "Скорость анимации для интенсивных эффектов" - -#, fuzzy msgid "Animation duration in milliseconds for close effect." -msgstr "Длительность анимации в мсек. для закрывающего эффекта." +msgstr "Длительность анимации в миллисекундах для эффекта закрытия." -#, fuzzy msgid "Animation duration in milliseconds for focus effect." -msgstr "Длительность анимации в мсек. для фокусирующего эффекта." +msgstr "Длительность анимации в миллисекундах для эффекта фокусировки." -#, fuzzy msgid "Animation duration in milliseconds for minimize effect." -msgstr "Длительность анимации в мсек. для минимизирующего эффекта." +msgstr "Длительность анимации в миллисекундах для эффекта свёртывания." -#, fuzzy msgid "Animation duration in milliseconds for open effect." -msgstr "Длительность анимации в мсек. для открывающего эффекта." +msgstr "Длительность анимации в миллисекундах для эффекта открытия." -#, fuzzy msgid "Animation duration in milliseconds for shade effect." -msgstr "Длительность анимации в мсек. для затеняющего эффекта." +msgstr "" +"Длительность анимации в миллисекундах для эффекта \"свернуть в заголовок\"." -#, fuzzy msgid "Animations" msgstr "Анимации" -#, fuzzy -msgid "Automatic" -msgstr "Автоматически" - -#, fuzzy msgid "Away Angle" -msgstr "Угол наклона:(_I)" +msgstr "Угол отклонения" -#, fuzzy msgid "Away Position" -msgstr "позиция курсора" - -msgid "Beam" -msgstr "Лазер" - -msgid "Beam Color" -msgstr "Цвет лазера" - -msgid "Beam Life" -msgstr "Время жизни лазера" - -msgid "Beam Slowdown" -msgstr "Время угасания лазера" - -msgid "Beam Spacing" -msgstr "Разброс лазера" - -msgid "Beam Up" -msgstr "Высота лазера" +msgstr "Позиция отклонения" -msgid "Beam Width" -msgstr "Ширина лазера" - -msgid "Beam color." -msgstr "Цвет лазера" - -#, fuzzy -msgid "Beam life." -msgstr "Время жизни" - -msgid "Beam slowdown." -msgstr "Замедление луча." - -#, fuzzy -msgid "Beam width." -msgstr "Ширина луча." - -msgid "Burn" -msgstr "Горение" - -#, fuzzy msgid "Close Animation" -msgstr "Скорость анимации" +msgstr "Анимация закрытия" -#, fuzzy msgid "Close Effect" -msgstr "Эффект фокусировки" +msgstr "Эффект закрытия" msgid "" "Closeness of window to camera at the end of the animation (1.0: Close to " "camera, -2.0: Away from camera)." msgstr "" +"Приближенность окна к камере в конце анимации (1.0: близко к камере, -2.0: " +"далеко от камеры)." +# +# msgid "" "Comma separated list of option value assignments to override effect " "settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1" msgstr "" +"Разделенный запятыми список значений, предназначенных для переопределения " +"настроек эффекта, например: fire_color=#0080ffff, fire_particles=700, " +"fire_smoke=1" -#, fuzzy msgid "Curved Fold" -msgstr "Ускорение свертывания" +msgstr "Изогнутое свертывание" #, fuzzy -msgid "Curved Fold Amplitude" -msgstr "Переключить поле свертывания кода" +msgid "Curved Fold Amplitude Multiplier" +msgstr "Амплитуда изогнутого свертывания" msgid "Dodge" msgstr "Эффект трансфокатора" -#, fuzzy msgid "Dodge Gap Ratio" msgstr "Коэффициент цифрового трансфокатора" -msgid "Domino" -msgstr "Эффект домино" - -msgid "Domino Piece Falling Direction" -msgstr "Направление падения домино" - -msgid "Down" -msgstr "Вниз" - msgid "Dream" msgstr "Эффект мечта" -#, fuzzy msgid "Duration" -msgstr "Длительность" +msgstr "Продолжительность" msgid "Effect Settings" msgstr "Параметры эффекта" -msgid "Explode" -msgstr "Эффект взрыв" - msgid "Fade" msgstr "Скорость угасания" -msgid "Falling direction for Domino pieces." -msgstr "Направление падения элементов домино." - -msgid "Fire" -msgstr "Эффект пламя" - -#, fuzzy -msgid "Fire Particle Color" -msgstr "Степень непрозрачности фонового цвета" - -#, fuzzy -msgid "Fire Particle Life" -msgstr "В реальной жизни: " - -#, fuzzy -msgid "Fire Particle Size" -msgstr "Размер окна текстового диалога" - -#, fuzzy -msgid "Fire Particle Slowdown" -msgstr "Вспышка не сработала" - -#, fuzzy -msgid "Fire Smoke" -msgstr "Пожарная машина" - -#, fuzzy -msgid "Fire constant speed" -msgstr "Всегда максимальная скорость" - -#, fuzzy -msgid "Fire direction" -msgstr "Направление текста" - -#, fuzzy -msgid "Fire direction." -msgstr "Направление текста" - -#, fuzzy -msgid "Fire particle color." -msgstr "Степень непрозрачности фонового цвета" - -#, fuzzy -msgid "Fire particle life." -msgstr "В реальной жизни: " - -#, fuzzy -msgid "Fire particle size." -msgstr "Размер окна текстового диалога" - -#, fuzzy -msgid "Fire particle slowdown." -msgstr "Вспышка не сработала" - -#, fuzzy -msgid "Fire smoke." -msgstr "Пожарная машина" - msgid "Fixed window interior during the Rollup animation." -msgstr "Фиксированное содержание окна во время анимации свёртывания." +msgstr "Фиксированное содержимое окна во время анимации свёртывания." -msgid "Fly to TaskBar on Minimize" -msgstr "Полёт к строке задач при минимизировании" - -#, fuzzy msgid "Focus Animation" -msgstr "Скорость анимации" +msgstr "Анимация фокусировки" -#, fuzzy msgid "Focus Effect" msgstr "Эффект фокусировки" -#, fuzzy -msgid "Fold" -msgstr "Ускорение свертывания" - -#, fuzzy -msgid "Fold Direction" -msgstr "Направление текста" - -msgid "Fold opening direction for pieces in Razr effect." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "Glide 1" @@ -431,52 +259,19 @@ msgid "Glide 2" msgstr "Эффект скольжения 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" -"Применять случайные цвета для эффекта пламени, также известного как " -"Мистический Огонь." - -msgid "Hexagonal" -msgstr "Шестиугольник" - -#, fuzzy msgid "Horizontal Folds" -msgstr "Свёртывается горизонтально" +msgstr "Горизонтальное свёртывание" #, fuzzy -msgid "Horizontal Folds Amplitude" +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Амплитуда горизонтального свёртывания" msgid "How spring-like the Sidekick animation should be." -msgstr "" +msgstr "Насколько скачкообразной должна быть анимация Sidekick." msgid "How spring-like the Zoom animation should be." -msgstr "" - -#, fuzzy -msgid "In" -msgstr "Увеличить" +msgstr "Насколько скачкообразной должна быть аниимация Zoom." -#, fuzzy -msgid "In-out" -msgstr "Масштабировать вид" - -#, fuzzy -msgid "Leaf Spread" -msgstr "1 страница _растянута на " - -#, fuzzy -msgid "Left" -msgstr "Слева" - -#, fuzzy -msgid "Left-right" -msgstr "слева направо" - -msgid "Length of airplane's flying path." -msgstr "Длина пути полёта самолёта." - -#, fuzzy msgid "Magic Lamp" msgstr "Магическая лампа" @@ -487,7 +282,7 @@ msgstr "Максимальная амплитуда волн Магической лампы" msgid "Magic Lamp Max Waves" -msgstr "" +msgstr "Максимум волн лампы" msgid "Magic Lamp Min Wave Amplitude" msgstr "Минимальная амплитуда волн Магической лампы" @@ -498,43 +293,27 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "" -msgid "Make fire effect duration be dependent on window height." -msgstr "" - -#, fuzzy msgid "Minimize Animation" -msgstr "Скорость анимации" +msgstr "Анимация свертывания" -#, fuzzy msgid "Minimize Effect" msgstr "Эффект свертывания" -#, fuzzy msgid "Minimize/Unminimize Only" -msgstr " (%d) DSA (только для подписи)\n" - -msgid "Movement direction(s) for window pieces." -msgstr "" +msgstr "Только Свертывание/Развертывание" #, fuzzy msgid "None" msgstr "Отсутствует" #, fuzzy -msgid "Number Of Fire Particles" -msgstr "число совпавших издателей: %d\n" - -#, fuzzy msgid "Number of Horizontal Folds" -msgstr "Свернуть _весь код" - -#, fuzzy -msgid "Number of fire particles." -msgstr "число совпавших издателей: %d\n" +msgstr "Количество горизонтальных складок" #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" +"Количество вращений для эффекта Sidekick (плюс-минус 10% для случайности)" #, fuzzy msgid "Off" @@ -566,16 +345,12 @@ msgid "Options" msgstr "Параметры" -#, fuzzy -msgid "Out" -msgstr "Уменьшить" - msgid "Pool" msgstr "" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" #, fuzzy @@ -587,29 +362,11 @@ #, fuzzy msgid "Random Effects" -msgstr "Предпрослушивание эффектов" - -#, fuzzy -msgid "Randomly Colored Fire" -msgstr "Вспышка не сработала" +msgstr "Случайные эффекты" msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" -msgid "Razr" -msgstr "" - -msgid "Razr Fold Opening Direction" -msgstr "" - -#, fuzzy -msgid "Rectangular" -msgstr "Rectangular" - -#, fuzzy -msgid "Right" -msgstr "Справа" - #, fuzzy msgid "Roll Up" msgstr "скручивание" @@ -619,13 +376,6 @@ msgstr "_Моноширинный шрифт:" #, fuzzy -msgid "Rotation Angle" -msgstr "Угол наклона:(_I)" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "" - -#, fuzzy msgid "Shade Animation" msgstr "Скорость анимации" @@ -643,17 +393,6 @@ msgid "Sidekick Springiness" msgstr "" -msgid "Skewer" -msgstr "" - -#, fuzzy -msgid "Skewer Direction" -msgstr "Направление текста" - -#, fuzzy -msgid "Spacing between beams." -msgstr "Расстояние между ячейками" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -663,38 +402,11 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "" -#, fuzzy -msgid "Tessellation Type" -msgstr "Type 1 (CID)" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -#, fuzzy -msgid "Tessellation type for window pieces." -msgstr "Тип размытия, используемый для оконного декоратора" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The animation effect shown when closing a window." msgstr "" @@ -710,16 +422,6 @@ msgid "The animation effect shown when shading a window." msgstr "" -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" @@ -733,9 +435,6 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" - msgid "The width of the wave relative to the window height." msgstr "" @@ -743,31 +442,6 @@ msgid "The windows that will be animated." msgstr "Окна к которым будет применено оформление" -#, fuzzy -msgid "Thickness" -msgstr "Толщина углов" - -#, fuzzy -msgid "Thickness of Animated Polygons" -msgstr "Показывать анимированные изображения как анимации." - -msgid "Thickness of Exploding Polygons" -msgstr "" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "" - -#, fuzzy -msgid "Up" -msgstr "Вверх" - -#, fuzzy -msgid "Up-down" -msgstr "Прокрутить вверх или вниз" - msgid "Use various animations as window effects" msgstr "" @@ -802,7 +476,7 @@ msgstr "Волны заголовка" #, fuzzy -msgid "Wave Amplitude" +msgid "Wave Amplitude Multiplier" msgstr "Волны заголовка" #, fuzzy @@ -810,7 +484,8 @@ msgstr "По ширине страницы" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "" @@ -835,29 +510,12 @@ "Folds effect." msgstr "" -#, fuzzy -msgid "Window Grid Height" -msgstr "Высота окна по умолчанию" - -#, fuzzy -msgid "Window Grid Width" -msgstr "Ширина линии сетки" - -#, fuzzy -msgid "Window folding direction." -msgstr "Включить поиск в обратную сторону" - msgid "Window that should animate with this effect when focused." msgstr "" msgid "Window that should animate with this effect when shaded." msgstr "" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" - #, fuzzy msgid "Zoom" msgstr "Масштаб" @@ -933,9 +591,8 @@ msgid "Console Output" msgstr "стандартный вывод" -#, fuzzy msgid "Console output update time" -msgstr " noatime не обновлять время последнего доступа\n" +msgstr "Период обновления вывода на консоль" msgid "Disable Compiz integrated FPS limiter" msgstr "" @@ -992,85 +649,13 @@ msgstr "Позиция по вертикали" #, fuzzy -msgid "Brightness Decrease" -msgstr "Яркость" - -#, fuzzy -msgid "Brightness Increase" -msgstr "Яркость" - -#, fuzzy -msgid "Brightness Step" -msgstr "Яркость" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "Восстановление минимизированных окон" +msgid "Bicubic filter" +msgstr "Остановить фильтрацию" -msgid "Brightness and Saturation adjustments" +msgid "Bicubic texture filtering" msgstr "" #, fuzzy -msgid "Brightness settings" -msgstr "Вызов выбранных окон по истечении интервала времени" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Восстановление минимизированных окон" - -#, fuzzy -msgid "Brightness window values" -msgstr "Восстановление минимизированных окон" - -#, fuzzy -msgid "Brightness windows" -msgstr "Восстановление минимизированных окон" - -#, fuzzy -msgid "General" -msgstr "Общие" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "Насыщенность" - -#, fuzzy -msgid "Saturation Increase" -msgstr "Насыщенность" - -#, fuzzy -msgid "Saturation Step" -msgstr "Насыщенность" - -#, fuzzy -msgid "Saturation settings" -msgstr "Вызов выбранных окон по истечении интервала времени" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "Восстановление минимизированных окон" - -#, fuzzy -msgid "Saturation window values" -msgstr "Восстановление минимизированных окон" - -#, fuzzy -msgid "Saturation windows" -msgstr "Восстановление минимизированных окон" - -#, fuzzy -msgid "Window specific" -msgstr "Уменьшить прозрачность окна" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "Окна, прозрачные по умолчанию" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "Окна, прозрачные по умолчанию" - -#, fuzzy msgid "Color filter" msgstr "Остановить фильтрацию" @@ -1171,6 +756,10 @@ msgstr "" #, fuzzy +msgid "Above" +msgstr "Над" + +#, fuzzy msgid "Adjust bottom face image to rotation" msgstr "Настройка изображения на верхней грани куба" @@ -1197,6 +786,20 @@ msgstr "Внешний вид" #, fuzzy +msgid "Aspect ratio" +msgstr "_Cоотношение экрана" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +#, fuzzy +msgid "Auto zoom" +msgstr "Увеличить" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "" + +#, fuzzy msgid "Behaviour" msgstr "Поведение" @@ -1228,22 +831,68 @@ msgstr "Цвет верхней и нижней граней куба" #, fuzzy +msgid "Color of the ground (far)." +msgstr "Степень непрозрачности фонового цвета" + +#, fuzzy +msgid "Color of the ground (near)." +msgstr "Контакты возле меня" + +#, fuzzy msgid "Color of top face of the cube" msgstr "Привязка вращения куба к верхней грани" #, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Вращение куба рабочего стола" + +#, fuzzy msgid "Cube Bottom Color" msgstr "Степень непрозрачности фонового цвета" #, fuzzy -msgid "Cube Caps" -msgstr "Цвета куба" +msgid "Cube Reflection and Deformation" +msgstr "Пароль к документу %s" #, fuzzy msgid "Cube Top Color" msgstr "Степень непрозрачности фонового цвета" #, fuzzy +msgid "Cube caps" +msgstr "Цвета куба" + +#, fuzzy +msgid "Cylinder" +msgstr "Очистить" + +#, fuzzy +msgid "Deform caps" +msgstr "Длительность" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "3D только при вращении мышкой" + +#, fuzzy +msgid "Deformation" +msgstr "Длительность" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "Длительность" + +#, fuzzy +msgid "Distance" +msgstr "Расстояние: " + +#, fuzzy msgid "Draw bottom face" msgstr "Начертание шрифта (устаревший)" @@ -1259,6 +908,14 @@ msgid "Draw top face of the cube" msgstr "Привязка вращения куба к верхней грани" +#, fuzzy +msgid "Enabled" +msgstr "Вкл." + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Вращение куба рабочего стола" + msgid "Go back to previous image for bottom face of the cube" msgstr "" @@ -1266,6 +923,27 @@ msgstr "" #, fuzzy +msgid "Ground color(far)" +msgstr "Степень непрозрачности фонового цвета" + +#, fuzzy +msgid "Ground color(near)" +msgstr "Контакты возле меня" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +#, fuzzy +msgid "Intensity" +msgstr "Интенсивность эффекта:" + +msgid "Jumpy" +msgstr "" + +msgid "Jumpy reflection" +msgstr "" + +#, fuzzy msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1277,6 +955,22 @@ "Список PNG- и SVG-файлов, которые следует отобразить на верхней грани куба" #, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Формат изображения режима экспозиции" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Настройка изображения на верхней грани куба" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Формат изображения режима экспозиции" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Настройка изображения на верхней грани куба" + +#, fuzzy msgid "Next bottom image" msgstr "Заранее загружать следующее изображение" @@ -1292,103 +986,77 @@ msgid "Prev top image" msgstr "Изображение для верхней отметки" -msgid "Render images on top and bottom of the cube" +msgid "Reflection" msgstr "" #, fuzzy -msgid "Scale bottom image" -msgstr "Сохранить изображение _как" - -#, fuzzy -msgid "Scale image to cover bottom face of cube" -msgstr "Масштабировать изображения для покрытия верхней грани куба" - -#, fuzzy -msgid "Scale image to cover top face of cube" -msgstr "Масштабировать изображения для покрытия верхней грани куба" - -#, fuzzy -msgid "Scale top image" -msgstr "Изображение для верхней отметки" - -#, fuzzy -msgid "Top image files" -msgstr "Изображение для верхней отметки" +msgid "Reflection ground size" +msgstr "Размер окна текстового диалога" #, fuzzy -msgid "Above" -msgstr "Над" +msgid "Reflection ground size." +msgstr "Размер окна текстового диалога" #, fuzzy -msgid "Auto zoom" -msgstr "Увеличить" - -msgid "Auto zoom only on Mouse Rotate" -msgstr "" +msgid "Reflection intensity" +msgstr "Интенсивность эффекта:" #, fuzzy -msgid "Color of the ground (far)." -msgstr "Степень непрозрачности фонового цвета" +msgid "Reflection mode" +msgstr "Режим DTMF" #, fuzzy -msgid "Color of the ground (near)." -msgstr "Контакты возле меня" +msgid "Reflection mode." +msgstr "Режим DTMF" #, fuzzy -msgid "Compiz cube reflection" -msgstr "Вращение куба рабочего стола" +msgid "Scale bottom image" +msgstr "Сохранить изображение _как" #, fuzzy -msgid "Cube Reflection" -msgstr "Цвета куба" +msgid "Scale image to cover bottom face of cube" +msgstr "Масштабировать изображения для покрытия верхней грани куба" #, fuzzy -msgid "Distance" -msgstr "Расстояние: " +msgid "Scale image to cover top face of cube" +msgstr "Масштабировать изображения для покрытия верхней грани куба" #, fuzzy -msgid "Ground color(far)" -msgstr "Степень непрозрачности фонового цвета" +msgid "Scale top image" +msgstr "Изображение для верхней отметки" #, fuzzy -msgid "Ground color(near)" -msgstr "Контакты возле меня" +msgid "Sphere" +msgstr "Скорость" #, fuzzy -msgid "Intensity" -msgstr "Интенсивность эффекта:" +msgid "Top image files" +msgstr "Изображение для верхней отметки" -msgid "Jumpy" +msgid "Unfold cube deformation" msgstr "" -msgid "Jumpy reflection" +msgid "Zoom out automatically only on mouse rotate." msgstr "" -#, fuzzy -msgid "Reflection ground size" -msgstr "Размер окна текстового диалога" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "" #, fuzzy -msgid "Reflection ground size." -msgstr "Размер окна текстового диалога" +msgid "Cube Caps" +msgstr "Цвета куба" #, fuzzy -msgid "Reflection intensity" -msgstr "Интенсивность эффекта:" +msgid "Render images on top and bottom of the cube" +msgstr "Масштабировать изображения для покрытия верхней грани куба" #, fuzzy -msgid "Reflection mode" -msgstr "Режим DTMF" +msgid "Compiz cube reflection" +msgstr "Цвета куба" #, fuzzy -msgid "Reflection mode." -msgstr "Режим DTMF" - -msgid "Zoom out automatically only on mouse rotate." -msgstr "" - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "" +msgid "Cube Reflection" +msgstr "Цвета куба" msgid "Animation used when switching to expo mode" msgstr "" @@ -1415,10 +1083,6 @@ msgstr "Прочность нового пароля" #, fuzzy -msgid "Deformation" -msgstr "Длительность" - -#, fuzzy msgid "Deformation of the expo wall" msgstr "Расстояние до стены экспозиции" @@ -1475,7 +1139,7 @@ #, fuzzy msgid "Expo key" -msgstr " ключом %s с ID %s\n" +msgstr "Клавиша Expo" msgid "Expo mode aspect ratio" msgstr "Формат изображения режима экспозиции" @@ -1526,9 +1190,6 @@ msgid "Previous viewport" msgstr "<нет видимой области>" -msgid "Reflection" -msgstr "" - #, fuzzy msgid "Reflection Scale" msgstr "Масштаб" @@ -1646,6 +1307,10 @@ msgstr "команда мыши" #, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Отражение при курсоре на краю" + +#, fuzzy msgid "Enable focus tracking" msgstr "О_тслеживание состояния" @@ -1708,20 +1373,15 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Неверный размер ёмкости блока" #, fuzzy msgid "Mouse Behaviour" msgstr "Общие" #, fuzzy -msgid "Mouse Poll Interval" -msgstr "Продолжительность _перерыва:" - -#, fuzzy msgid "Mouse Restrain Margin" msgstr "Переключить поле свертывания кода" @@ -1814,12 +1474,21 @@ msgstr "Скорость" #, fuzzy +msgid "Static mouse pointer scale" +msgstr "Отражение при курсоре на краю" + +#, fuzzy msgid "Sync Mouse" msgstr "команда мыши" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" @@ -1836,11 +1505,25 @@ msgid "Use linear filter when zoomed in" msgstr "" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "Клавиша перемещения" #, fuzzy +msgid "Zoom Box" +msgstr "Масштаб" + +#, fuzzy msgid "Zoom In" msgstr "Увеличить" @@ -1876,6 +1559,9 @@ msgid "Zoom factor" msgstr "Коэффициент масштабирования" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" @@ -1940,23 +1626,59 @@ msgstr "Развертывать окно по горизонтали" #, fuzzy +msgid "Add Particle" +msgstr "В реальной жизни: " + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + +#, fuzzy msgid "Background brightness" msgstr "Подстройка яркости" -msgid "Background brightness during paint" -msgstr "" +msgid "Background brightness during paint" +msgstr "" + +#, fuzzy +msgid "Clear" +msgstr "Очистить" + +#, fuzzy +msgid "Clear (button)" +msgstr "кнопку мыши)\n" + +#, fuzzy +msgid "Clear (key)" +msgstr " ключом %s с ID %s\n" + +msgid "Fire Particle Color" +msgstr "Цвет частиц огня" + +msgid "Fire Particle Life" +msgstr "Время жизни частиц огня" + +msgid "Fire Particle Size" +msgstr "Размер частиц огня" + +msgid "Fire Particle Slowdown" +msgstr "Замедление частиц огня" + +msgid "Fire particle color." +msgstr "Цвет частиц огня." + +msgid "Fire particle life." +msgstr "Время жизни частиц огня." -#, fuzzy -msgid "Clear" -msgstr "Очистить" +msgid "Fire particle size." +msgstr "Размер частиц огня." -#, fuzzy -msgid "Clear (button)" -msgstr "кнопку мыши)\n" +msgid "Fire particle slowdown." +msgstr "Замедление частиц огня." -#, fuzzy -msgid "Clear (key)" -msgstr " ключом %s с ID %s\n" +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" +"Применять случайные цвета для эффекта пламени, также известного как " +"Мистический Огонь." #, fuzzy msgid "Initiate (button)" @@ -1986,6 +1708,10 @@ msgstr "" #, fuzzy +msgid "Randomly Colored Fire" +msgstr "Случайные цвета эффекта Пламени" + +#, fuzzy msgid "Cube Gears" msgstr "Цвета куба" @@ -2092,6 +1818,10 @@ msgstr "Размер шрифта" #, fuzzy +msgid "General" +msgstr "Общие" + +#, fuzzy msgid "Glass" msgstr "прозрачная панель" @@ -2747,10 +2477,19 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" + msgid "Misc" msgstr "" #, fuzzy +msgid "Mouse Poll Interval" +msgstr "Продолжительность _перерыва:" + +#, fuzzy msgid "Mouse position polling" msgstr "команда мыши" @@ -3616,8 +3355,12 @@ msgstr "Тут будет заголовок окна" #, fuzzy -msgid "Close Windows In Scale" -msgstr "Оба (оба в _новых окнах)" +msgid "Close Window" +msgstr "Сеть Windows" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Показать главное окно" msgid "Close windows while in scale mode" msgstr "" @@ -3625,10 +3368,19 @@ msgid "Color used for highlighting the hovered window" msgstr "" +msgid "Constrain Pull To Screen" +msgstr "" + #, fuzzy msgid "Draw Window Highlight" msgstr "_Стиль подсвечивания" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + #, fuzzy msgid "Font color of the window title" msgstr "Тут будет заголовок окна" @@ -3647,6 +3399,10 @@ msgid "Highlights the hovered window with the given color" msgstr "" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + #, fuzzy msgid "No display" msgstr "Показать главное окно" @@ -3660,6 +3416,14 @@ msgstr "Э&кспериментальное отображение..." #, fuzzy +msgid "Pull Window" +msgstr "Окно разговора" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Показать главное окно" + +#, fuzzy msgid "Scale Addons" msgstr "Масштаб" @@ -3688,6 +3452,10 @@ msgstr "Режим активации окна" #, fuzzy +msgid "Window Pull" +msgstr "Бесполезные правила" + +#, fuzzy msgid "Window Title" msgstr "Заголовок окна" @@ -3700,11 +3468,12 @@ msgstr "Показать главное окно" #, fuzzy -msgid "Zoom Windows In Scale" +msgid "Zoom Window" msgstr "Оба (оба в _новых окнах)" -msgid "Zoom windows while in scale mode" -msgstr "" +#, fuzzy +msgid "Zoom window while in scale mode" +msgstr "Показать главное окно" #, fuzzy msgid "Filter Case Insensitive" @@ -4007,6 +3776,13 @@ msgid "Direction of window movement" msgstr "Чувствительность к перемещениям курсора" +msgid "Down" +msgstr "Вниз" + +#, fuzzy +msgid "Left" +msgstr "Слева" + #, fuzzy msgid "Left/Right" msgstr "слева направо" @@ -4016,6 +3792,10 @@ msgstr "Направление текста" #, fuzzy +msgid "Right" +msgstr "Справа" + +#, fuzzy msgid "Show desktop" msgstr "Расчистить рабочий стол" @@ -4024,6 +3804,10 @@ msgstr "_Перейти" #, fuzzy +msgid "Up" +msgstr "Вверх" + +#, fuzzy msgid "Up/Down" msgstr "Прокрутить вверх или вниз" @@ -4187,7 +3971,7 @@ msgstr "Устойчивость тени" msgid "Edges" -msgstr "" +msgstr "Края" msgid "Enables windows edges resistance" msgstr "" @@ -4198,7 +3982,7 @@ #, fuzzy msgid "Screen edges" -msgstr "Заблокировать экран" +msgstr "Края экрана" #, fuzzy msgid "Shift" @@ -4226,7 +4010,7 @@ #, fuzzy msgid "Window edges" -msgstr "Окно разговора" +msgstr "Края окна" #, fuzzy msgid "Bottom to Top" @@ -4333,89 +4117,335 @@ msgid "Snow is drawn above windows" msgstr "" -msgid "Snow textures" -msgstr "Текстуры снега" +msgid "Snow textures" +msgstr "Текстуры снега" + +msgid "Snow toggle key" +msgstr "Клавиша переключения снега" + +msgid "Speed of falling snow" +msgstr "Скорость падения снега" + +#, fuzzy +msgid "Textures" +msgstr "Текстуры высокого разрешения" + +#, fuzzy +msgid "Top to Bottom" +msgstr "снизу вверх" + +#, fuzzy +msgid "Update Delay" +msgstr "Задержка отклика" + +#, fuzzy +msgid "A simple splash plugin" +msgstr "Простой модуль всплывающего изображения" + +msgid "Background File" +msgstr "Файл фона" + +msgid "Background brightness." +msgstr "Яркость фона." + +#, fuzzy +msgid "Background image File." +msgstr "Путь к файлу фонового изображения" + +msgid "Background saturation." +msgstr "Насыщенность фона." + +#, fuzzy +msgid "Display In/Out Time." +msgstr "Если этот ключ установлен, отображаются секунды." + +msgid "Display Time" +msgstr "Время показа" + +msgid "Images" +msgstr "Изображения" + +msgid "Initiate Splash" +msgstr "Активировать Splash" + +msgid "Logo File" +msgstr "Файл логотипа" + +msgid "Logo image File." +msgstr "Файл логотипа" + +#, fuzzy +msgid "Show on first start" +msgstr "Показать при первом запуске" + +#, fuzzy +msgid "Show splash on first start." +msgstr "Показать splash при первом запуске" + +#, fuzzy +msgid "Splash" +msgstr "экран приветствия" + +#, fuzzy +msgid "Start Splash." +msgstr "Запустить Splash" + +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" + +#, fuzzy +msgid "Behavior" +msgstr "Поведение" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Затемнение фона при масштабировании окон" + +#, fuzzy +msgid "On Thumbnail" +msgstr "По ширине страницы" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Активировать меню окна" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Должны ли быть видимыми кнопки окон." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Переключатель окон" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Степень непрозрачности фонового цвета" + +#, fuzzy +msgid "Windows" +msgstr "3D Окна" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Окна к которым будет применено оформление" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +msgid "Amount of brightness in percent" +msgstr "" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Не показывать окно в списке окон" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Поместить на все рабочие столы" + +msgid "Bring Selected To Front" +msgstr "" + +msgid "Centered" +msgstr "По центру" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Размытый осциллоскоп: выбор цвета" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" +"По возможности применять множественное отображение для масштабирования " +"качества изображения" + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Цвет подсветки" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Цвет подсветки" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Цвет подсветки" + +#, fuzzy +msgid "Icon" +msgstr "Увеличить" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Цвет выделения" + +msgid "Mipmap" +msgstr "" + +msgid "Mode for highlighting the currently selected window" +msgstr "" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Следующее окно" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Переключить расположение на всех рабочих местах" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Выбрать следующее окно" + +#, fuzzy +msgid "Next window (No popup)" +msgstr "Выбрать следующее окно" + +msgid "Original Window Position" +msgstr "" + +#, fuzzy +msgid "Popup Window Delay" +msgstr "Инициировать средство выбора окна для группы окон" + +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Отображение переключателя (если он невидим) и выбор следующего окна" + +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Отображение переключателя (если он невидим) и выбор следующего окна из всех " +"имеющихся" + +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Отображение переключателя (если он невидим) и выбор следующего окна из всех " +"имеющихся" + +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Отображение переключателя (если он невидим) и выбор предыдущего окна" + +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Отображение переключателя (если он невидим) и выбор предыдущего окна из всех " +"имеющихся" -msgid "Snow toggle key" -msgstr "Клавиша переключения снега" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Отображение переключателя (если он невидим) и выбор предыдущего окна из всех " +"имеющихся" -msgid "Speed of falling snow" -msgstr "Скорость падения снега" +msgid "Prev Panel" +msgstr "" #, fuzzy -msgid "Textures" -msgstr "Текстуры высокого разрешения" +msgid "Prev window" +msgstr "Выбрать предыдущее окно" #, fuzzy -msgid "Top to Bottom" -msgstr "снизу вверх" +msgid "Prev window (All windows)" +msgstr "Переключить расположение на всех рабочих местах" #, fuzzy -msgid "Update Delay" -msgstr "Задержка отклика" +msgid "Prev window (Group)" +msgstr "Выбрать предыдущее окно" #, fuzzy -msgid "A simple splash plugin" -msgstr "Модуль протокола SIP/SIMPLE" +msgid "Prev window (No popup)" +msgstr "Выбрать предыдущее окно" + +msgid "Row Alignment" +msgstr "" #, fuzzy -msgid "Background File" -msgstr " Фоновый процесс: файл существует " +msgid "Select next panel type window." +msgstr "Выбрать следующее окно" + +msgid "Select next window without showing the popup window." +msgstr "" #, fuzzy -msgid "Background brightness." -msgstr "Подстройка яркости" +msgid "Select previous panel type window." +msgstr "Выбрать следующее окно" + +msgid "Select previous window without showing the popup window." +msgstr "" #, fuzzy -msgid "Background image File." -msgstr "Путь к файлу фонового изображения" +msgid "Selected Window Highlight" +msgstr "Цвет выделения" #, fuzzy -msgid "Background saturation." -msgstr "Высокая насыщенность" +msgid "Show Rectangle" +msgstr "Rectangular" #, fuzzy -msgid "Display In/Out Time." -msgstr "Если этот ключ установлен, отображаются секунды." +msgid "Show icon next to thumbnail" +msgstr "Не показывать окно в списке окон" #, fuzzy -msgid "Display Time" -msgstr "Показывать время создания" +msgid "Show minimized windows" +msgstr "Восстановление минимизированных окон" -msgid "Images" -msgstr "Изображения" +msgid "Static Application Switcher" +msgstr "" #, fuzzy -msgid "Initiate Splash" -msgstr "экран приветствия" +msgid "Switcher speed" +msgstr "Режим DTMF" #, fuzzy -msgid "Logo File" -msgstr "Файл повреждён" +msgid "Switcher timestep" +msgstr "Шаг времени свертывания" #, fuzzy -msgid "Logo image File." -msgstr "Неправильный файл изображения" +msgid "Switcher windows" +msgstr "Сеть Windows" #, fuzzy -msgid "Show on first start" -msgstr "Начать с первого пункта" +msgid "Taskbar Entry" +msgstr "Список задач" -#, fuzzy -msgid "Show splash on first start." -msgstr "Показывать столбец времени запуска процесса при запуске" +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -#, fuzzy -msgid "Splash" -msgstr "экран приветствия" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" #, fuzzy -msgid "Start Splash." -msgstr "экран приветствия" +msgid "Windows that should be shown in switcher" +msgstr "Окна к которым будет применено оформление" #, fuzzy msgid "Render text to texture" -msgstr "Размеченный для визуализатора текст" +msgstr "Перевести текст в текстуру" msgid "Text" msgstr "Текст" @@ -5159,7 +5189,7 @@ #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "Размер вида в %" msgid "Switch Target Preview Visibility Time" msgstr "" @@ -5170,7 +5200,7 @@ #, fuzzy msgid "Switch separately" -msgstr "Сменить пользователя" +msgstr "Переключить раздельно" msgid "Third color for the background gradient of the switcher window." msgstr "" @@ -5192,95 +5222,73 @@ msgstr "/wall <сообщение> .......... команда администратора" msgid "Width of the border between the previews" -msgstr "" +msgstr "Ширина обрамления между видами" -#, fuzzy msgid "Background fill type." -msgstr " Фоновый процесс: файл существует " +msgstr "Тип заливки фона" -#, fuzzy msgid "Backgrounds" -msgstr "Фон и эмблемы" +msgstr "Фоны" msgid "Center Tiled" -msgstr "" - -#, fuzzy -msgid "Centered" -msgstr "Центр выделения" +msgstr "По центру черепицей" -#, fuzzy msgid "Color 1" -msgstr "Цвета" +msgstr "Цвет 1" -#, fuzzy msgid "Color 2" -msgstr "Цвета" +msgstr "Цвет 2" -#, fuzzy msgid "Draw the desktop wallpaper" msgstr "Отрисовывать фон рабочего стола" -#, fuzzy msgid "Fill or first gradient color." -msgstr "Степень непрозрачности фонового цвета" +msgstr "Цвет заполнения или первый цвет градиента" -#, fuzzy msgid "Fill type" -msgstr "Заполненный эллипс" +msgstr "Тип заполнения" -#, fuzzy msgid "Horizontal gradient" -msgstr "Свёртывается горизонтально" +msgstr "Горизонтальный градиент" -#, fuzzy msgid "Image" -msgstr "Изображения" +msgstr "Изображение" -#, fuzzy msgid "Image file." -msgstr "Изображение для верхней отметки" +msgstr "Файл изображения." -#, fuzzy msgid "Image position." -msgstr "Позиция по горизонтали" +msgstr "Расположение изображения" -#, fuzzy msgid "Position" -msgstr "Позиция по горизонтали" +msgstr "Расположение" -#, fuzzy msgid "Scale and Crop" -msgstr "Масштаб" +msgstr "Масштабировать" -#, fuzzy msgid "Scaled" -msgstr "Масштаб" +msgstr "Растянуть" -#, fuzzy msgid "Second gradient color." -msgstr "Конечный цвет градиента для фона" +msgstr "Второй цвет градиента" msgid "Solid fill" -msgstr "" +msgstr "Сплошной цвет" -#, fuzzy msgid "Tiled" -msgstr "Заполнять" +msgstr "Черепицей" msgid "Vertical gradient" -msgstr "" +msgstr "Вертикальный градиент" msgid "Wallpaper" msgstr "Обои рабочего стола" -#, fuzzy msgid "Background Brightness" -msgstr "Подстройка яркости" +msgstr "Яркость фона" -#, fuzzy msgid "Background Saturation" -msgstr "Высокая насыщенность" +msgstr "Насыщенность фона" #, fuzzy msgid "Background in Widget Mode" @@ -5333,7 +5341,7 @@ #, fuzzy msgid "Above others windows" -msgstr "Располагаться поверх всех окон" +msgstr "Пповерх всех окон" #, fuzzy msgid "Below others windows" @@ -5368,6 +5376,14 @@ msgstr "Совпадения: %d" #, fuzzy +msgid "Maximized" +msgstr "Отображение свернутых окон" + +#, fuzzy +msgid "Maximized windows" +msgstr "Восстановление минимизированных окон" + +#, fuzzy msgid "No ARGB visuals" msgstr "Время ожидания ответа" @@ -5415,16 +5431,15 @@ msgid "Set window as non resizable" msgstr "Невозможно установить канал как неблокирующий: %s" -#, fuzzy msgid "Set windows rules" -msgstr "Правила не сведены" +msgstr "Установить правила окон" msgid "Size rules" -msgstr "" +msgstr "Правила размеров" #, fuzzy msgid "Sized Windows" -msgstr "Сеть Windows" +msgstr "Окна с переменным размером" #, fuzzy msgid "Skip pager" @@ -5432,7 +5447,7 @@ #, fuzzy msgid "Skip taskbar" -msgstr "Скрыть из переключателя задач" +msgstr "Скрыть переключатель задач" #, fuzzy msgid "Sticky" @@ -5440,15 +5455,14 @@ #, fuzzy msgid "Sticky windows" -msgstr "Сеть Windows" +msgstr "Прилипающие окна" #, fuzzy msgid "Width values" -msgstr "Встроенные значения" +msgstr "Значения ширины" -#, fuzzy msgid "Window Rules" -msgstr "Бесполезные правила" +msgstr "Правила поведения окна" #, fuzzy msgid "Windows that should be resized by default" @@ -5467,6 +5481,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "" +msgid "Convert Urgency to Demands Attention" +msgstr "" + #, fuzzy msgid "Firefox Menu Fix" msgstr "выйти из этого меню" @@ -5511,6 +5528,9 @@ "viewports." msgstr "" +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" @@ -5541,6 +5561,281 @@ msgid "Workarounds" msgstr "Обходные пути" +#~ msgid "Airplane" +#~ msgstr "Самолёт" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Продолжительность полёта самолёта" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Скорость анимации для сложных эффектов" + +#~ msgid "Automatic" +#~ msgstr "Автоматически" + +#~ msgid "Beam" +#~ msgstr "Луч" + +#~ msgid "Beam Color" +#~ msgstr "Цвет луча" + +#~ msgid "Beam Life" +#~ msgstr "Время жизни луча" + +#~ msgid "Beam Slowdown" +#~ msgstr "Время угасания луча" + +#~ msgid "Beam Spacing" +#~ msgstr "Разброс луча" + +#~ msgid "Beam Up" +#~ msgstr "Высота луча" + +#~ msgid "Beam Width" +#~ msgstr "Ширина луча" + +#~ msgid "Beam color." +#~ msgstr "Цвет луча." + +#~ msgid "Beam life." +#~ msgstr "Время жизни луча." + +#~ msgid "Beam slowdown." +#~ msgstr "Замедление луча." + +#~ msgid "Beam width." +#~ msgstr "Ширина луча." + +#~ msgid "Burn" +#~ msgstr "Горение" + +#~ msgid "Domino" +#~ msgstr "Эффект домино" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Направление падения домино" + +#~ msgid "Explode" +#~ msgstr "Эффект взрыв" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Направление падения элементов домино." + +#~ msgid "Fire" +#~ msgstr "Эффект пламя" + +#~ msgid "Fire Smoke" +#~ msgstr "Дым от огня" + +#~ msgid "Fire constant speed" +#~ msgstr "Скорость горения" + +#~ msgid "Fire direction" +#~ msgstr "Направление огня" + +#~ msgid "Fire direction." +#~ msgstr "Направление огня." + +#~ msgid "Fire smoke." +#~ msgstr "Дым от огня." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Полёт к панели задач при свёртывании" + +#~ msgid "Fold" +#~ msgstr "Свёртывание" + +#~ msgid "Fold Direction" +#~ msgstr "Направление свёртывания" + +# Начальное направление свёртывания для частиц из эффекта Бритва +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Начальное направление свёртывания для частиц из эффекта Бритва" + +#~ msgid "Hexagonal" +#~ msgstr "Шестиугольник" + +#, fuzzy +#~ msgid "In" +#~ msgstr "Увеличить" + +#, fuzzy +#~ msgid "In-out" +#~ msgstr "Масштабировать вид" + +#, fuzzy +#~ msgid "Leaf Spread" +#~ msgstr "1 страница _растянута на " + +#~ msgid "Left-right" +#~ msgstr "Влево-Вправо" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Длина пути полёта самолёта." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Направлениe(я) движения для частей окна" + +#, fuzzy +#~ msgid "Number Of Fire Particles" +#~ msgstr "Количество горящих частиц" + +#, fuzzy +#~ msgid "Number of fire particles." +#~ msgstr "число совпавших издателей: %d\n" + +#, fuzzy +#~ msgid "Out" +#~ msgstr "Уменьшить" + +#~ msgid "Razr" +#~ msgstr "Эффект Бритва" + +#, fuzzy +#~ msgid "Rectangular" +#~ msgstr "Rectangular" + +#, fuzzy +#~ msgid "Rotation Angle" +#~ msgstr "Угол поворота" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Угол поворота анимированных кусков окон (в градусах)" + +#, fuzzy +#~ msgid "Skewer Direction" +#~ msgstr "Направление текста" + +#, fuzzy +#~ msgid "Spacing between beams." +#~ msgstr "Расстояние между ячейками" + +#, fuzzy +#~ msgid "Tessellation Type" +#~ msgstr "Type 1 (CID)" + +#, fuzzy +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Тип размытия, используемый для оконного декоратора" + +#, fuzzy +#~ msgid "Thickness" +#~ msgstr "Толщина углов" + +#, fuzzy +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Показывать анимированные изображения как анимации." + +#, fuzzy +#~ msgid "Up-down" +#~ msgstr "Прокрутить вверх или вниз" + +#, fuzzy +#~ msgid "Window Grid Height" +#~ msgstr "Высота окна по умолчанию" + +#, fuzzy +#~ msgid "Window Grid Width" +#~ msgstr "Ширина линии сетки" + +#, fuzzy +#~ msgid "Window folding direction." +#~ msgstr "Включить поиск в обратную сторону" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Амплитуда (размер волн в изгибе) в Горизонтальном Свёртывании по " +#~ "отношению к ширине окна. Отрицательные значения изгибают наружу." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Амплитуда (размер волн в изгибе) в кривом изгибе по отношению к ширине " +#~ "окна. Отрицательные значения изгибают наружу." + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "Яркость" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "Яркость" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "Яркость" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "Восстановление минимизированных окон" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "Вызов выбранных окон по истечении интервала времени" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "Восстановление минимизированных окон" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "Восстановление минимизированных окон" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "Восстановление минимизированных окон" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "Насыщенность" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "Насыщенность" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "Насыщенность" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "Вызов выбранных окон по истечении интервала времени" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "Восстановление минимизированных окон" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "Восстановление минимизированных окон" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "Восстановление минимизированных окон" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Уменьшить прозрачность окна" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Окна, прозрачные по умолчанию" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Окна, прозрачные по умолчанию" + +#, fuzzy +#~ msgid "Close Windows In Scale" +#~ msgstr "Оба (оба в _новых окнах)" + +#, fuzzy +#~ msgid "Put Exact" +#~ msgstr "Поместить удалённые сообщения в" + #~ msgid "Animation Speed" #~ msgstr "Скорость анимации" @@ -5553,25 +5848,16 @@ #, fuzzy #~ msgid "Tilt view" -#~ msgstr "Отображение документа" +#~ msgstr "Заполнять" #, fuzzy #~ msgid "Move window to x, y" #~ msgstr "Переместить окно на рабочее место 1" #, fuzzy -#~ msgid "Put Exact" -#~ msgstr "Поместить удалённые сообщения в" - -# ВАРИАНТ: Др. опции -#, fuzzy #~ msgid "Misc. options" -#~ msgstr "несовместимые ключи" - -#, fuzzy -#~ msgid "Show minimized windows" -#~ msgstr "Отображение свернутых окон" +#~ msgstr "Разные опции" #, fuzzy #~ msgid "Tile or Stretch" -#~ msgstr "Ширина шрифта" +#~ msgstr "Название" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/sv.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/sv.po --- compiz-fusion-plugins-unsupported-0.7.6/po/sv.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/sv.po 2008-09-17 14:29:33.000000000 +0100 @@ -10,9 +10,9 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins 0.0.1\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:52+0530\n" -"PO-Revision-Date: 2008-05-01 12:40+0200\n" -"Last-Translator: Sebastian Parborg \n" +"POT-Creation-Date: 2008-09-15 14:47+0530\n" +"PO-Revision-Date: 2008-07-15 20:07+0200\n" +"Last-Translator: Daniel Nylander \n" "Language-Team: Compiz Fusion Translators \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,6 +120,12 @@ msgid "Brightness of faded windows" msgstr "Ljusstyrka av tonade fönster" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -150,12 +156,6 @@ msgid "Window types that should be Opacified." msgstr "Fönstertyper som ska bli genomskinliga" -msgid "Airplane" -msgstr "Flygplan" - -msgid "Airplane Flying Path Length" -msgstr "Flygplans flyglängd" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -163,20 +163,6 @@ "Alla effekter är slumpmässigt utvalda, ignorerar den valda effekten. Om " "inget är valt för en händelse kommer den händelse inte att bli animerad." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" -"Storleken på den horisontella vikningen i relativitet med fönstrets bredd." -"Negativa värden viker utåt." - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" -"Storlek på den kurvade vikningen i relativitet med fönstrets bredd. Negativa " -"värden viker utåt" - msgid "Angle of window at the end of the animation." msgstr "Vinkel på fönster i slutet av animationen" @@ -186,9 +172,6 @@ msgid "Animation Time Step" msgstr "Tidssteg på animation" -msgid "Animation Time Step For Intense Effects" -msgstr "Tidssteg för animation av intensiva effekter" - msgid "Animation duration in milliseconds for close effect." msgstr "Varaktighet på animation i millisekunder för stängningseffekt" @@ -207,52 +190,12 @@ msgid "Animations" msgstr "Animationer" -msgid "Automatic" -msgstr "Automatisk" - msgid "Away Angle" msgstr "Bortflygningsvinkel" msgid "Away Position" msgstr "Bortflygningspositon" -msgid "Beam" -msgstr "Stråle" - -msgid "Beam Color" -msgstr "Strålens färg" - -msgid "Beam Life" -msgstr "Strålens livslängd" - -# nedsaktning -> hastighetsminskning -msgid "Beam Slowdown" -msgstr "Strålens hastighetsminskning" - -msgid "Beam Spacing" -msgstr "Strålmellanrum" - -msgid "Beam Up" -msgstr "Stråla upp" - -msgid "Beam Width" -msgstr "Strålens bredd" - -msgid "Beam color." -msgstr "Strålens färg" - -msgid "Beam life." -msgstr "Strålens livslängd" - -msgid "Beam slowdown." -msgstr "Strålens hastighetsminskning" - -msgid "Beam width." -msgstr "Strålbredd" - -msgid "Burn" -msgstr "Bränn" - msgid "Close Animation" msgstr "Stängningsanimation" @@ -277,7 +220,8 @@ msgid "Curved Fold" msgstr "Kurvad ihopvikning" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Styrka på kurvad ihopvikning" # Något bättre ord? @@ -287,15 +231,6 @@ msgid "Dodge Gap Ratio" msgstr "Ratio på undvikningmellanrums" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Fallriktning på dominobrickor" - -msgid "Down" -msgstr "Ner" - msgid "Dream" msgstr "Dröm" @@ -305,77 +240,22 @@ msgid "Effect Settings" msgstr "Effektinställningar" -msgid "Explode" -msgstr "Explodera" - msgid "Fade" msgstr "Tona" -msgid "Falling direction for Domino pieces." -msgstr "Fallriktning på dominobrickor" - -msgid "Fire" -msgstr "Eld" - -msgid "Fire Particle Color" -msgstr "Färg på eldpartiklar" - -msgid "Fire Particle Life" -msgstr "Livslängd på eldpartiklar" - -msgid "Fire Particle Size" -msgstr "Storlek på eldpartiklar" - -msgid "Fire Particle Slowdown" -msgstr "Hastighetsminskning av eldpartiklar" - -msgid "Fire Smoke" -msgstr "Eldrök" - -msgid "Fire constant speed" -msgstr "Konstant eldhastighet" - -msgid "Fire direction" -msgstr "Eldriktning" - -msgid "Fire direction." -msgstr "Eldriktning" - -msgid "Fire particle color." -msgstr "Färg på eldpartiklar" - -msgid "Fire particle life." -msgstr "Livslängd på eldpartiklar" - -msgid "Fire particle size." -msgstr "Storlek på eldpartiklar" - -msgid "Fire particle slowdown." -msgstr "Hastighetsminskning av eldpartiklar" - -msgid "Fire smoke." -msgstr "Eldrök" - msgid "Fixed window interior during the Rollup animation." msgstr "Fast innandöme på fönster under upprullningsanimation" -msgid "Fly to TaskBar on Minimize" -msgstr "Flyg till aktivitetsfält vid minimering" - msgid "Focus Animation" msgstr "Fokus-animation" msgid "Focus Effect" msgstr "Fokus-effekt" -msgid "Fold" -msgstr "Vik" - -msgid "Fold Direction" -msgstr "Vikriktning" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "Vikriktning vid öppning för delar i Razreffekt" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "" msgid "Glide 1" msgstr "Glid 1" @@ -383,16 +263,11 @@ msgid "Glide 2" msgstr "Glid 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "Ha slumpmässiga färger till eldeffekten, också känd som Mystisk Eld" - -msgid "Hexagonal" -msgstr "Hexagonal" - msgid "Horizontal Folds" msgstr "Horisontella vikningar" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Styrka på de horisontella vikningarna" msgid "How spring-like the Sidekick animation should be." @@ -401,24 +276,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "Hur återfjädrande zoomanimationen ska vara." -msgid "In" -msgstr "In" - -msgid "In-out" -msgstr "In-ut" - -msgid "Leaf Spread" -msgstr "Lövspridning" - -msgid "Left" -msgstr "Vänster" - -msgid "Left-right" -msgstr "Vänster-höger" - -msgid "Length of airplane's flying path." -msgstr "Längden på flygplanets flyglängd." - msgid "Magic Lamp" msgstr "Magisk lampa" @@ -441,9 +298,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Magisk lampa slutpunkt vid öppning/stängning" -msgid "Make fire effect duration be dependent on window height." -msgstr "Få eldeffektens varaktighet att bero på hur högt fönstret är." - msgid "Minimize Animation" msgstr "Minimeringsanimation" @@ -453,21 +307,12 @@ msgid "Minimize/Unminimize Only" msgstr "Endast Minimera/Maximera" -msgid "Movement direction(s) for window pieces." -msgstr "Rörelseriktning(ar) för fönsterdelar" - msgid "None" msgstr "Inget" -msgid "Number Of Fire Particles" -msgstr "Antal eld-partiklar" - msgid "Number of Horizontal Folds" msgstr "Antal horisontella vikningar" -msgid "Number of fire particles." -msgstr "Antal eld-partiklar" - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -498,15 +343,13 @@ msgid "Options" msgstr "Alternativ" -msgid "Out" -msgstr "Ut" - msgid "Pool" msgstr "Pool" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" "En pool av effekter att välja från om slumpmässig effekt är vald. Klicka på " "återställ för att återställa hela listan." @@ -520,37 +363,16 @@ msgid "Random Effects" msgstr "Slumpmässiga effekter" -msgid "Randomly Colored Fire" -msgstr "Slumpmässigt färgad eld" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" "Proportionen av mellanrum mellan \"undvik\" starttider och fokusvaraktighet" -msgid "Razr" -msgstr "Razr" - -msgid "Razr Fold Opening Direction" -msgstr "Riktning på razr-uppvikning" - -msgid "Rectangular" -msgstr "Rektangulär" - -msgid "Right" -msgstr "Höger" - msgid "Roll Up" msgstr "Rulla upp" msgid "Rollup Fixed Interior" msgstr "Rulla upp med fast innandöme" -msgid "Rotation Angle" -msgstr "Rotationsvinkel" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "Rotationsvinkel på animerade fönsterdelar (i grader)" - msgid "Shade Animation" msgstr "Skugganimation" @@ -566,16 +388,6 @@ msgid "Sidekick Springiness" msgstr "Återfjädring på sidospark" -# Direktöversättning... -msgid "Skewer" -msgstr "Spett" - -msgid "Skewer Direction" -msgstr "Spettriktning" - -msgid "Spacing between beams." -msgstr "Mellanrum mellan strålar" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -586,15 +398,6 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "Bredd vid start på öppningseffekt och stängningseffekt för vakuum" -msgid "Tessellation Type" -msgstr "Tessellationstyp" - -msgid "Tessellation type for exploding window pieces." -msgstr "Tessellationtyp för exploderande fönsterdelar." - -msgid "Tessellation type for window pieces." -msgstr "Tessellationtyp för fönsterdelar" - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." @@ -602,28 +405,6 @@ "Tiden i millisekunder mellan varje renderering av animationen. Ju högre " "nummer desto hackigare kommer rörelserna bli." -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" -"Tiden i millisekunder mellan varje renderering av intensiva animationer (Ex." -"Bränn, Stråle). Ju högre nummer desto hackigare kommer rörelserna bli." - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Det animerade fönstret kommer splittras till delar ut med ett rutnät." -"Specificera antalet rutor i rutnätet längs höjden av fönstret" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Det animerade fönstret kommer splittras till delar ut med ett rutnät." -"Specificera antalet rutor i rutnätet längs bredden av fönstret" - msgid "The animation effect shown when closing a window." msgstr "Animationseffekt vid stängning av fönster" @@ -639,20 +420,6 @@ msgid "The animation effect shown when shading a window." msgstr "Animationseffekt vid skuggning av ett fönster" -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" -"Det exploderande fönstret kommer att splittras i delar längs ett rutnät. " -"Ange antalet rutor i rutnätet längs fönsterhöjden." - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" -"Det exploderande fönstret kommer att splittras i delar längs ett rutnät. " -"Ange antalet rutor i rutnätet längs fönsterbredden." - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "Den maximala storleken på den Magiska Lampans vågor" @@ -667,36 +434,12 @@ msgstr "" "Antal horisontella vikningar som sker i den horisontella vikningsanimationen" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "Storleken på vågorna i relativitet med höjd på fönster" - msgid "The width of the wave relative to the window height." msgstr "Bredden på vågen i relativitet med höjd på fönster" msgid "The windows that will be animated." msgstr "Fönster som kommer att animeras" -msgid "Thickness" -msgstr "Tjocklek" - -msgid "Thickness of Animated Polygons" -msgstr "Tjockleken på animerade polygoner" - -msgid "Thickness of Exploding Polygons" -msgstr "Tjockleken på exploderande polygoner" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "Tjockleken på animerade fönsterdelar (i pixlar)" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "Tjockleken på exploderande fönsterbitar (i pixlar)" - -msgid "Up" -msgstr "Upp" - -msgid "Up-down" -msgstr "Upp-ner" - msgid "Use various animations as window effects" msgstr "Använd olika slags animationer som fönstereffekter" @@ -735,17 +478,17 @@ msgid "Wave" msgstr "Våg" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Vågstyrka" msgid "Wave Width" msgstr "Vågbredd" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" -"Om fönstret ska flygas till aktivitetsfältet vid minimering med " -"flygplanseffekt" msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -778,28 +521,12 @@ "Om fönster ska zoomas till aktivitetsfältet vid minimering med horisontell " "vikningseffekt." -msgid "Window Grid Height" -msgstr "Höjd på fönsterrutnät" - -msgid "Window Grid Width" -msgstr "Bredd på fönsterrutnät" - -msgid "Window folding direction." -msgstr "Vikningsriktning på fönster" - msgid "Window that should animate with this effect when focused." msgstr "Fönster som ska animeras med denna effekt vid fokus" msgid "Window that should animate with this effect when shaded." msgstr "Fönster som ska animeras med denna effekt vid skuggning" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"Tjocklek på fönster i pixlar. Om större än 0 kommer den att inaktivera " -"skugga, blur och reflektioner under animationen" - msgid "Zoom" msgstr "Zoom" @@ -909,67 +636,12 @@ msgid "Y position" msgstr "Y-position" -msgid "Brightness Decrease" -msgstr "Minska ljusstyrka" - -msgid "Brightness Increase" -msgstr "Öka ljusstyrka" - -msgid "Brightness Step" -msgstr "Ljusstyrke steg" - -msgid "Brightness and Saturation" -msgstr "Ljusstyrka och färgmättnad" - -msgid "Brightness and Saturation adjustments" -msgstr "Justering av ljusstyrka och färgmättnad" - -msgid "Brightness settings" -msgstr "Ljusstyrkeinställningar" - -msgid "Brightness values for windows" -msgstr "Ljusstyrkevärden för fönster" - -msgid "Brightness window values" -msgstr "Fönsters ljusstyrkevärden" - -#, fuzzy -msgid "Brightness windows" -msgstr "Ljusstyrka fönster" - -msgid "General" -msgstr "Allmänt" - -msgid "Saturation Decrease" -msgstr "Minska färgmättnad" - -msgid "Saturation Increase" -msgstr "Öka färgmättnad" - -msgid "Saturation Step" -msgstr "Färgmättnads steg" - -msgid "Saturation settings" -msgstr "Färgmättnads inställningar" - -msgid "Saturation values for windows" -msgstr "Färgmättnadsvärden för fönster" - -msgid "Saturation window values" -msgstr "Fönsters färgmättnadsvärden" - #, fuzzy -msgid "Saturation windows" -msgstr "Färgmättnad fönster" - -msgid "Window specific" -msgstr "Fönster specifikt" - -msgid "Windows that should have a different brightness by default" -msgstr "Fönster som ska ha en annan standardljusstyrka" +msgid "Bicubic filter" +msgstr "Bytningsfilter" -msgid "Windows that should have a different saturation by default" -msgstr "Fönster som ska ha en annan standardfärgmättnad" +msgid "Bicubic texture filtering" +msgstr "" msgid "Color filter" msgstr "Färgfilter" @@ -1063,6 +735,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Kommandorad för fönsterhanterare. SKRIV INTE IN COMPIZ HÄR!!!" +msgid "Above" +msgstr "Ovanför" + msgid "Adjust bottom face image to rotation" msgstr "Justera bilden på undersidan till rotation" @@ -1084,6 +759,19 @@ msgid "Appearance" msgstr "Utseende" +#, fuzzy +msgid "Aspect ratio" +msgstr "Bildformat" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Automatisk zoom" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Zooma endast automatiskt vid musrotation" + msgid "Behaviour" msgstr "Beteende" @@ -1118,18 +806,62 @@ msgid "Color of bottom face of the cube" msgstr "Färgen på bottenytan av kuben" +msgid "Color of the ground (far)." +msgstr "Färgen på marken (långt bort)" + +msgid "Color of the ground (near)." +msgstr "Färgen på marken (nära)" + msgid "Color of top face of the cube" msgstr "Färgen på toppytan av kuben" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Compiz kubreflektion" + msgid "Cube Bottom Color" msgstr "Färgen på kubens undersidan" -msgid "Cube Caps" -msgstr "Kublock" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Reflektionen för ramar" msgid "Cube Top Color" msgstr "Färgen på kubens översida" +#, fuzzy +msgid "Cube caps" +msgstr "Kublock" + +#, fuzzy +msgid "Cylinder" +msgstr "Rensa" + +#, fuzzy +msgid "Deform caps" +msgstr "Deformation" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Zooma endast automatiskt vid musrotation" + +msgid "Deformation" +msgstr "Deformation" + +#, fuzzy +msgid "Deformation in unfold cube mode." +msgstr "Styrkan på deformationen i kurvläget" + +#, fuzzy +msgid "Deformation mode." +msgstr "Deformation" + +msgid "Distance" +msgstr "Avstånd" + msgid "Draw bottom face" msgstr "Rita undersida" @@ -1142,12 +874,38 @@ msgid "Draw top face of the cube" msgstr "Ritar översidan av kuben" +#, fuzzy +msgid "Enabled" +msgstr "Aktivera" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Compiz kubreflektion" + msgid "Go back to previous image for bottom face of the cube" msgstr "Gå tillbaka till föregående bild för undersidan av kuben" msgid "Go back to previous image for top face of the cube" msgstr "Gå tillbaka till föregående bild för översidan av kuben" +msgid "Ground color(far)" +msgstr "Markfärg (långt bort)" + +msgid "Ground color(near)" +msgstr "Markfärg (nära)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Intensitet" + +msgid "Jumpy" +msgstr "Hoppig" + +msgid "Jumpy reflection" +msgstr "Hoppig reflektion" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "Lista på PNG och SVG filer som ska renderas på undersidan av kuben" @@ -1155,6 +913,22 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "Lista på PNG och SVG filer som ska renderas på översidan av kuben" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Expolägets bildformat" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Justera bilden på undersidan till rotation" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Expolägets bildformat" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Justera bilden på översidan till rotation" + msgid "Next bottom image" msgstr "Nästa bild på undersida" @@ -1167,8 +941,23 @@ msgid "Prev top image" msgstr "Föreg bild på översida" -msgid "Render images on top and bottom of the cube" -msgstr "Rendererar bilder på toppen och botten av kuben" +msgid "Reflection" +msgstr "Reflektion" + +msgid "Reflection ground size" +msgstr "Storleken på reflektionen på marken" + +msgid "Reflection ground size." +msgstr "Storleken på reflektionen på marken." + +msgid "Reflection intensity" +msgstr "Reflektionsintensitet" + +msgid "Reflection mode" +msgstr "Reflektionsläge" + +msgid "Reflection mode." +msgstr "Reflektionsläge." msgid "Scale bottom image" msgstr "Skala bilden på undersidan" @@ -1182,69 +971,36 @@ msgid "Scale top image" msgstr "Skala bilden på översidan" +#, fuzzy +msgid "Sphere" +msgstr "Hastighet" + msgid "Top image files" msgstr "Bildfiler för översida" -msgid "Above" -msgstr "Ovanför" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Automatisk zoom" +msgid "Zoom out automatically only on mouse rotate." +msgstr "Zooma ut automatiskt endast vid musrotation." -msgid "Auto zoom only on Mouse Rotate" -msgstr "Zooma endast automatiskt vid musrotation" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "Zooma ut automatiskt för att få kuben att passa skärmen." -msgid "Color of the ground (far)." -msgstr "Färgen på marken (långt bort)" +#, fuzzy +msgid "Cube Caps" +msgstr "Kublock" -msgid "Color of the ground (near)." -msgstr "Färgen på marken (nära)" +msgid "Render images on top and bottom of the cube" +msgstr "Rendererar bilder på toppen och botten av kuben" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz kubreflektion" +msgstr "Kubreflektion" msgid "Cube Reflection" msgstr "Kubreflektion" -msgid "Distance" -msgstr "Avstånd" - -msgid "Ground color(far)" -msgstr "Markfärg (långt bort)" - -msgid "Ground color(near)" -msgstr "Markfärg (nära)" - -msgid "Intensity" -msgstr "Intensitet" - -msgid "Jumpy" -msgstr "Hoppig" - -msgid "Jumpy reflection" -msgstr "Hoppig reflektion" - -msgid "Reflection ground size" -msgstr "Storleken på reflektionen på marken" - -msgid "Reflection ground size." -msgstr "Storleken på reflektionen på marken." - -msgid "Reflection intensity" -msgstr "Reflektionsintensitet" - -msgid "Reflection mode" -msgstr "Reflektionsläge" - -msgid "Reflection mode." -msgstr "Reflektionsläge." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "Zooma ut automatiskt endast vid musrotation." - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "Zooma ut automatiskt för att få kuben att passa skärmen." - msgid "Animation used when switching to expo mode" msgstr "Animationen som används när man växlar till expoläge" @@ -1260,16 +1016,12 @@ msgid "Button binding to switch to next viewport in expo" msgstr "Tangentbindning för att byta till nästa skrivbordsyta i expo" -#, fuzzy msgid "Curve" -msgstr "Kurvad ihopvikning" +msgstr "Kurva" #, fuzzy msgid "Curve strength" -msgstr "Styrka för rörelseoskärpa." - -msgid "Deformation" -msgstr "Deformation" +msgstr "Styrka för kurva" msgid "Deformation of the expo wall" msgstr "Deformationen av expo-väggen" @@ -1361,9 +1113,6 @@ msgid "Previous viewport" msgstr "Föregående skrivbordsyta" -msgid "Reflection" -msgstr "Reflektion" - msgid "Reflection Scale" msgstr "Reflektionsskala" @@ -1471,6 +1220,10 @@ msgid "Center the mouse" msgstr "Centrera musen" +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "Skala muspekaren" + msgid "Enable focus tracking" msgstr "Aktivera fokusspårning" @@ -1531,19 +1284,13 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "Döljer orginalmuspekaren vid inzoomning och musen är skalad" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" -"Hur ofta man ska fråga efter muspostionen, i millisekunder. Minska detta för " -"att minska hackigt beteende" +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Minsta skalningsfaktorn" msgid "Mouse Behaviour" msgstr "Musbeteende" -msgid "Mouse Poll Interval" -msgstr "Mussökningsinstervall" - msgid "Mouse Restrain Margin" msgstr "Musrestriktionsmarginal" @@ -1627,12 +1374,21 @@ msgid "Speed" msgstr "Hastighet" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "Skala muspekaren" + msgid "Sync Mouse" msgstr "Synkronisera musen" msgid "Target Focused Window on Specific level" msgstr "Välj ett fokuserat fönster på en specifik nivå" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "Välj storleksmarginal att lägga till vid försök att hålla kvar musen." @@ -1649,9 +1405,23 @@ msgid "Use linear filter when zoomed in" msgstr "Använd linjärfilter vid inzoomning" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + msgid "Zoom Area Movement" msgstr "Zoomrörelse" +#, fuzzy +msgid "Zoom Box" +msgstr "Zoom" + msgid "Zoom In" msgstr "Zooma in" @@ -1679,6 +1449,9 @@ msgid "Zoom factor" msgstr "Zoomfaktor" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "Zooma in/ut med denna faktor. Högre värde innebär snabbare zoomning" @@ -1734,20 +1507,54 @@ msgid "Toggle window fake ARGB." msgstr "Växla falskt fönster ARGB" +#, fuzzy +msgid "Add Particle" +msgstr "Livslängd på eldpartiklar" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Ljustyrka på bakgrund" -msgid "Background brightness during paint" -msgstr "Ljustyrka på bakgrund under ritande" +msgid "Background brightness during paint" +msgstr "Ljustyrka på bakgrund under ritande" + +msgid "Clear" +msgstr "Rensa" + +msgid "Clear (button)" +msgstr "Rensa (knapp)" + +msgid "Clear (key)" +msgstr "Rensa (nyckel)" + +msgid "Fire Particle Color" +msgstr "Färg på eldpartiklar" + +msgid "Fire Particle Life" +msgstr "Livslängd på eldpartiklar" + +msgid "Fire Particle Size" +msgstr "Storlek på eldpartiklar" + +msgid "Fire Particle Slowdown" +msgstr "Hastighetsminskning av eldpartiklar" + +msgid "Fire particle color." +msgstr "Färg på eldpartiklar" + +msgid "Fire particle life." +msgstr "Livslängd på eldpartiklar" -msgid "Clear" -msgstr "Rensa" +msgid "Fire particle size." +msgstr "Storlek på eldpartiklar" -msgid "Clear (button)" -msgstr "Rensa (knapp)" +msgid "Fire particle slowdown." +msgstr "Hastighetsminskning av eldpartiklar" -msgid "Clear (key)" -msgstr "Rensa (nyckel)" +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "Ha slumpmässiga färger till eldeffekten, också känd som Mystisk Eld" msgid "Initiate (button)" msgstr "Initiera (knapp)" @@ -1770,6 +1577,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Rita eld eller andra partiklar på skärmen" +msgid "Randomly Colored Fire" +msgstr "Slumpmässigt färgad eld" + msgid "Cube Gears" msgstr "Kugghjul i kub" @@ -1863,6 +1673,9 @@ msgid "Font Size" msgstr "Typsnittsstorlek" +msgid "General" +msgstr "Allmänt" + msgid "Glass" msgstr "Glas" @@ -2482,9 +2295,19 @@ msgid "Start gesture" msgstr "Starta gest" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" +"Hur ofta man ska fråga efter muspostionen, i millisekunder. Minska detta för " +"att minska hackigt beteende" + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "Mussökningsinstervall" + #, fuzzy msgid "Mouse position polling" msgstr "Muspanorering" @@ -3028,7 +2851,7 @@ "Allow the selection of windows by just clicking on them while the switcher " "is active." msgstr "" -"Tillåt val av fönster bara genom att klicka på dem medans bytaren är aktiv." +"Tillåt val av fönster bara genom att klicka på dem medans växlaren är aktiv." msgid "" "Amount of opacity (in percent) for windows in the ring which are not selected" @@ -3124,7 +2947,7 @@ msgstr "Ringhöjd" msgid "Ring Switcher" -msgstr "Ringbytare" +msgstr "Ringväxlare" msgid "Ring Width" msgstr "Ringbredd" @@ -3169,31 +2992,31 @@ "Show switcher if not visible and select next window of the current " "application." msgstr "" -"Visa bytare om den inte är synlig och välj nästa fönster av det nuvarande " +"Visa växlare om den inte är synlig och välj nästa fönster av det nuvarande " "programmet." msgid "Show switcher if not visible and select next window out of all windows." msgstr "" -"Visa bytare om den inte är synlig och välj nästa fönster utav alla fönster." +"Visa växlare om den inte är synlig och välj nästa fönster utav alla fönster." msgid "Show switcher if not visible and select next window." -msgstr "Visa bytare om den inte är synlig och välj nästa fönster." +msgstr "Visa växlare om den inte är synlig och välj nästa fönster." msgid "" "Show switcher if not visible and select previous window of the current " "application." msgstr "" -"Visa bytare om den inte är synlig och välj föregående fönster av det " +"Visa växlare om den inte är synlig och välj föregående fönster av det " "nuvarande programmet." msgid "" "Show switcher if not visible and select previous window out of all windows." msgstr "" -"Visa bytare om den inte är synlig och välj föregående fönster utav alla " +"Visa växlare om den inte är synlig och välj föregående fönster utav alla " "fönster." msgid "Show switcher if not visible and select previous window." -msgstr "Visa bytare om den inte är synlig och välj föregående fönster." +msgstr "Visa växlare om den inte är synlig och välj föregående fönster." msgid "Show window title of currently selected window." msgstr "Visa fönstertitel på det nuvarande valda fönstret." @@ -3222,8 +3045,13 @@ msgid "Background color of the window title" msgstr "Bakgrundsfärg för fönstertitel" -msgid "Close Windows In Scale" -msgstr "Stäng fönster i skala" +#, fuzzy +msgid "Close Window" +msgstr "Kakla fönster" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Stäng fönster i skalningsläge" msgid "Close windows while in scale mode" msgstr "Stäng fönster i skalningsläge" @@ -3231,9 +3059,18 @@ msgid "Color used for highlighting the hovered window" msgstr "Färg använd för framhävning av fönster som man musen är över" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "Rita fönsterframhävning" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "Typsnittsfärg för fönstertitel" @@ -3250,6 +3087,11 @@ msgid "Highlights the hovered window with the given color" msgstr "Framhäver fönstret som musen är över med den angivna färgen." +#, fuzzy +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "Gör fönster lätt synliga genom att hålla musen över dem" + msgid "No display" msgstr "Ingen visning" @@ -3259,6 +3101,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organisk - EXPERIMENTELL" +#, fuzzy +msgid "Pull Window" +msgstr "Placera fönster" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Stäng fönster i skalningsläge" + msgid "Scale Addons" msgstr "Skala tillägg" @@ -3283,6 +3133,10 @@ msgid "Window Layout Mode" msgstr "Fönsterlayoutläge" +#, fuzzy +msgid "Window Pull" +msgstr "Fönsterregler" + msgid "Window Title" msgstr "Fönstertitel" @@ -3292,10 +3146,12 @@ msgid "Window title display in scale mode" msgstr "Visa fönstertitel i skalningsläge" -msgid "Zoom Windows In Scale" +#, fuzzy +msgid "Zoom Window" msgstr "Zooma fönster i skalning" -msgid "Zoom windows while in scale mode" +#, fuzzy +msgid "Zoom window while in scale mode" msgstr "Zooma fönster i skalningsläge" msgid "Filter Case Insensitive" @@ -3556,18 +3412,30 @@ msgid "Direction of window movement" msgstr "Riktning på förflyttning av fönster" +msgid "Down" +msgstr "Ner" + +msgid "Left" +msgstr "Vänster" + msgid "Left/Right" msgstr "Vänster/Höger" msgid "Movement Direction" msgstr "Förflyttningsriktning" +msgid "Right" +msgstr "Höger" + msgid "Show desktop" msgstr "Visa skrivbord" msgid "To Corners" msgstr "Till kanterna" +msgid "Up" +msgstr "Upp" + msgid "Up/Down" msgstr "Upp/Ner" @@ -3816,101 +3684,357 @@ msgid "Select snow flake movement direction" msgstr "Ange snöflingornas rörelseriktning" -msgid "Settings" -msgstr "Inställningar" +msgid "Settings" +msgstr "Inställningar" + +msgid "Size Of Snowflakes" +msgstr "Storleken på snöflingor" + +msgid "Size of snowflakes" +msgstr "Storleken på snöflingor" + +msgid "Snow" +msgstr "Snö" + +msgid "Snow Direction" +msgstr "Snöriktning" + +msgid "Snow Over Windows" +msgstr "Snö över fönster" + +msgid "Snow Speed" +msgstr "Snöhastighet" + +msgid "Snow Textures" +msgstr "Snötexturer" + +msgid "Snow Toggle" +msgstr "Växla snö" + +msgid "Snow for Compiz" +msgstr "Snö för Compiz" + +msgid "Snow is drawn above windows" +msgstr "Snön är ritad ovanför fönster" + +msgid "Snow textures" +msgstr "Snötexturer" + +msgid "Snow toggle key" +msgstr "Växlingsknapp för snö" + +msgid "Speed of falling snow" +msgstr "Hastighet på fallande snö" + +msgid "Textures" +msgstr "Texturer" + +msgid "Top to Bottom" +msgstr "Toppen till botten" + +msgid "Update Delay" +msgstr "Updateringsfördröjning" + +msgid "A simple splash plugin" +msgstr "En simpel insticksmodul för startbild" + +msgid "Background File" +msgstr "Bakgrundsfil" + +msgid "Background brightness." +msgstr "Ljusstyrka på bakgrund" + +msgid "Background image File." +msgstr "Bildfil för bakgrund" + +msgid "Background saturation." +msgstr "Färgmättnad för bakgrund" + +msgid "Display In/Out Time." +msgstr "Visa in/ut tid" + +msgid "Display Time" +msgstr "Visa tid" + +msgid "Images" +msgstr "Bilder" + +msgid "Initiate Splash" +msgstr "Initiera startbild" + +msgid "Logo File" +msgstr "Logofil" + +msgid "Logo image File." +msgstr "Bildfil för logo" + +msgid "Show on first start" +msgstr "Visa under första starten" + +msgid "Show splash on first start." +msgstr "Visa startbild under första starten." + +msgid "Splash" +msgstr "Startbild" + +msgid "Start Splash." +msgstr "Startbild för start" + +#, fuzzy +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "Mängden opacitet (i procent) för fönster i ringen som inte är valda" + +#, fuzzy +msgid "Behavior" +msgstr "Beteende" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Förmörka bakgrunden när ringen visas" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Miniatyrbredd" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Aktivera ett angivet fönster" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Ska fönstertiteln vara fet" + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Fönsterbredd" + +#, fuzzy +msgid "Tilt angle of the background." +msgstr "Färg 1 för gradient bakgrund" + +# La till ett bindestreck +#, fuzzy +msgid "Windows" +msgstr "3D-fönster" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Fönster som ska visas i skiftväxlaren" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Ljustyrka på bakgrund under ritande" + +msgid "Amount of opacity in percent" +msgstr "" + +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Visa inte program i sidindelning" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Placera på arbetsyta" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "Placera mitt" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Fyllnadsfärgen för selektionsrektangeln" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +#, fuzzy +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" +"Generera mipmaps när det är möjligt att förbättra kvalitet på skalning." + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Framhävningsfärg" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Framhävningsfärg" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Framhävningsfärg" + +#, fuzzy +msgid "Icon" +msgstr "In" + +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Fönsterframhävning" + +#, fuzzy +msgid "Mipmap" +msgstr "Mipmaps" + +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "Färg använd för framhävning av fönster som man musen är över" + +msgid "Next Panel" +msgstr "" + +#, fuzzy +msgid "Next window" +msgstr "Nästa fönster" + +#, fuzzy +msgid "Next window (All windows)" +msgstr "Nästa fönster (Alla skrivbordsytor)" + +#, fuzzy +msgid "Next window (Group)" +msgstr "Nästa fönster (Grupp)" -msgid "Size Of Snowflakes" -msgstr "Storleken på snöflingor" +#, fuzzy +msgid "Next window (No popup)" +msgstr "Nästa fönster (Grupp)" -msgid "Size of snowflakes" -msgstr "Storleken på snöflingor" +msgid "Original Window Position" +msgstr "" -msgid "Snow" -msgstr "Snö" +#, fuzzy +msgid "Popup Window Delay" +msgstr "Grupp fönstermatchning" -msgid "Snow Direction" -msgstr "Snöriktning" +#, fuzzy +msgid "Popup switcher if not visible and select next window" +msgstr "Visa växlare om den inte är synlig och välj nästa fönster." -msgid "Snow Over Windows" -msgstr "Snö över fönster" +#, fuzzy +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" +"Visa växlare om den inte är synlig och välj nästa fönster av det nuvarande " +"programmet." -msgid "Snow Speed" -msgstr "Snöhastighet" +#, fuzzy +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" +"Visa växlare om den inte är synlig och välj nästa fönster utav alla fönster." -msgid "Snow Textures" -msgstr "Snötexturer" +#, fuzzy +msgid "Popup switcher if not visible and select previous window" +msgstr "Visa växlare om den inte är synlig och välj föregående fönster." -msgid "Snow Toggle" -msgstr "Växla snö" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" +"Visa växlare om den inte är synlig och välj föregående fönster av det " +"nuvarande programmet." -msgid "Snow for Compiz" -msgstr "Snö för Compiz" +#, fuzzy +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" +"Visa växlare om den inte är synlig och välj föregående fönster utav alla " +"fönster." -msgid "Snow is drawn above windows" -msgstr "Snön är ritad ovanför fönster" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Snötexturer" +#, fuzzy +msgid "Prev window" +msgstr "Föregående fönster" -msgid "Snow toggle key" -msgstr "Växlingsknapp för snö" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Föregående fönster (Alla arbetsytor)" -msgid "Speed of falling snow" -msgstr "Hastighet på fallande snö" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Föregående fönster (Grupp)" -msgid "Textures" -msgstr "Texturer" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Föregående fönster (Grupp)" -msgid "Top to Bottom" -msgstr "Toppen till botten" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Updateringsfördröjning" +#, fuzzy +msgid "Select next panel type window." +msgstr "Väljer placeringen av fönstertiteln" -msgid "A simple splash plugin" -msgstr "En simpel insticksmodul för startbild" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Bakgrundsfil" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Väljer placeringen av fönstertiteln" -msgid "Background brightness." -msgstr "Ljusstyrka på bakgrund" +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Bildfil för bakgrund" +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Fönsterframhävning" -msgid "Background saturation." -msgstr "Färgmättnad för bakgrund" +#, fuzzy +msgid "Show Rectangle" +msgstr "Rektangulär" -msgid "Display In/Out Time." -msgstr "Visa in/ut tid" +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Visa fönstertitel i miniatyren" -msgid "Display Time" -msgstr "Visa tid" +msgid "Show minimized windows" +msgstr "Visa minimerade fönster" -msgid "Images" -msgstr "Bilder" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Initiera startbild" +#, fuzzy +msgid "Switcher speed" +msgstr "Växlarläge" -msgid "Logo File" -msgstr "Logofil" +#, fuzzy +msgid "Switcher timestep" +msgstr "Skifttidsteg" -msgid "Logo image File." -msgstr "Bildfil för logo" +#, fuzzy +msgid "Switcher windows" +msgstr "Filtrerade fönster" -msgid "Show on first start" -msgstr "Visa under första starten" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Aktivitetsfältet" -msgid "Show splash on first start." -msgstr "Visa startbild under första starten." +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Startbild" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Startbild för start" +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Fönster som ska visas i skiftväxlaren" msgid "Render text to texture" msgstr "Renderera text till textur" @@ -4605,10 +4729,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "Placera mitt" - -#, fuzzy msgid "Color 1" msgstr "Färger" @@ -4750,6 +4870,14 @@ msgid "Matches" msgstr "Träffar" +#, fuzzy +msgid "Maximized" +msgstr "Visa minimerad" + +#, fuzzy +msgid "Maximized windows" +msgstr "Ej maximerbara fönster" + msgid "No ARGB visuals" msgstr "Inga ARGB-synligheter" @@ -4828,6 +4956,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "Korrigering för \"AIGLX Fragment Parameter\"" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Korrigering av Firefoxmeny" @@ -4877,6 +5008,9 @@ "Gör \"på alla skrivbord\"-fönster klistrade. Klistrade fönster är synliga på " "alla skrivbordsytor" +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + # "korrekt" är nog mer lämpligt än "ordentligt" msgid "Make Wine and legacy applications fullscreen properly." msgstr "Få wine och äldre program att använda helskärm korrekt." @@ -4902,6 +5036,321 @@ msgid "Workarounds" msgstr "Problemlösningar" +#~ msgid "Airplane" +#~ msgstr "Flygplan" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Flygplans flyglängd" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "Tidssteg för animation av intensiva effekter" + +#~ msgid "Automatic" +#~ msgstr "Automatisk" + +#~ msgid "Beam" +#~ msgstr "Stråle" + +#~ msgid "Beam Color" +#~ msgstr "Strålens färg" + +#~ msgid "Beam Life" +#~ msgstr "Strålens livslängd" + +# nedsaktning -> hastighetsminskning +#~ msgid "Beam Slowdown" +#~ msgstr "Strålens hastighetsminskning" + +#~ msgid "Beam Spacing" +#~ msgstr "Strålmellanrum" + +#~ msgid "Beam Up" +#~ msgstr "Stråla upp" + +#~ msgid "Beam Width" +#~ msgstr "Strålens bredd" + +#~ msgid "Beam color." +#~ msgstr "Strålens färg" + +#~ msgid "Beam life." +#~ msgstr "Strålens livslängd" + +#~ msgid "Beam slowdown." +#~ msgstr "Strålens hastighetsminskning" + +#~ msgid "Beam width." +#~ msgstr "Strålbredd" + +#~ msgid "Burn" +#~ msgstr "Bränn" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Fallriktning på dominobrickor" + +#~ msgid "Explode" +#~ msgstr "Explodera" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Fallriktning på dominobrickor" + +#~ msgid "Fire" +#~ msgstr "Eld" + +#~ msgid "Fire Smoke" +#~ msgstr "Eldrök" + +#~ msgid "Fire constant speed" +#~ msgstr "Konstant eldhastighet" + +#~ msgid "Fire direction" +#~ msgstr "Eldriktning" + +#~ msgid "Fire direction." +#~ msgstr "Eldriktning" + +#~ msgid "Fire smoke." +#~ msgstr "Eldrök" + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Flyg till aktivitetsfält vid minimering" + +#~ msgid "Fold" +#~ msgstr "Vik" + +#~ msgid "Fold Direction" +#~ msgstr "Vikriktning" + +#~ msgid "Fold opening direction for pieces in Razr effect." +#~ msgstr "Vikriktning vid öppning för delar i Razreffekt" + +#~ msgid "Hexagonal" +#~ msgstr "Hexagonal" + +#~ msgid "In" +#~ msgstr "In" + +#~ msgid "In-out" +#~ msgstr "In-ut" + +#~ msgid "Leaf Spread" +#~ msgstr "Lövspridning" + +#~ msgid "Left-right" +#~ msgstr "Vänster-höger" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Längden på flygplanets flyglängd." + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "Få eldeffektens varaktighet att bero på hur högt fönstret är." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Rörelseriktning(ar) för fönsterdelar" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Antal eld-partiklar" + +#~ msgid "Number of fire particles." +#~ msgstr "Antal eld-partiklar" + +#~ msgid "Out" +#~ msgstr "Ut" + +#~ msgid "Razr" +#~ msgstr "Razr" + +#~ msgid "Razr Fold Opening Direction" +#~ msgstr "Riktning på razr-uppvikning" + +#~ msgid "Rectangular" +#~ msgstr "Rektangulär" + +#~ msgid "Rotation Angle" +#~ msgstr "Rotationsvinkel" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "Rotationsvinkel på animerade fönsterdelar (i grader)" + +# Direktöversättning... +#~ msgid "Skewer" +#~ msgstr "Spett" + +#~ msgid "Skewer Direction" +#~ msgstr "Spettriktning" + +#~ msgid "Spacing between beams." +#~ msgstr "Mellanrum mellan strålar" + +#~ msgid "Tessellation Type" +#~ msgstr "Tessellationstyp" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Tessellationtyp för exploderande fönsterdelar." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Tessellationtyp för fönsterdelar" + +#~ msgid "" +#~ "The amount of time in milliseconds between each render of the intense " +#~ "animation (Ex. Burn, Beam). The higher the number, the jerkier the " +#~ "movements become." +#~ msgstr "" +#~ "Tiden i millisekunder mellan varje renderering av intensiva animationer " +#~ "(Ex.Bränn, Stråle). Ju högre nummer desto hackigare kommer rörelserna bli." + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Det animerade fönstret kommer splittras till delar ut med ett rutnät." +#~ "Specificera antalet rutor i rutnätet längs höjden av fönstret" + +#~ msgid "" +#~ "The animated window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Det animerade fönstret kommer splittras till delar ut med ett rutnät." +#~ "Specificera antalet rutor i rutnätet längs bredden av fönstret" + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the height of the window." +#~ msgstr "" +#~ "Det exploderande fönstret kommer att splittras i delar längs ett rutnät. " +#~ "Ange antalet rutor i rutnätet längs fönsterhöjden." + +#~ msgid "" +#~ "The exploding window will be split into pieces along a grid. Specify the " +#~ "number of grid cells along the width of the window." +#~ msgstr "" +#~ "Det exploderande fönstret kommer att splittras i delar längs ett rutnät. " +#~ "Ange antalet rutor i rutnätet längs fönsterbredden." + +#~ msgid "Thickness" +#~ msgstr "Tjocklek" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "Tjockleken på animerade polygoner" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "Tjockleken på exploderande polygoner" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "Tjockleken på animerade fönsterdelar (i pixlar)" + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "Tjockleken på exploderande fönsterbitar (i pixlar)" + +#~ msgid "Up-down" +#~ msgstr "Upp-ner" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "" +#~ "Om fönstret ska flygas till aktivitetsfältet vid minimering med " +#~ "flygplanseffekt" + +#~ msgid "Window Grid Height" +#~ msgstr "Höjd på fönsterrutnät" + +#~ msgid "Window Grid Width" +#~ msgstr "Bredd på fönsterrutnät" + +#~ msgid "Window folding direction." +#~ msgstr "Vikningsriktning på fönster" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "Tjocklek på fönster i pixlar. Om större än 0 kommer den att inaktivera " +#~ "skugga, blur och reflektioner under animationen" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "" +#~ "Storleken på den horisontella vikningen i relativitet med fönstrets bredd." +#~ "Negativa värden viker utåt." + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "Storlek på den kurvade vikningen i relativitet med fönstrets bredd. " +#~ "Negativa värden viker utåt" + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "Storleken på vågorna i relativitet med höjd på fönster" + +#~ msgid "Brightness Decrease" +#~ msgstr "Minska ljusstyrka" + +#~ msgid "Brightness Increase" +#~ msgstr "Öka ljusstyrka" + +#~ msgid "Brightness Step" +#~ msgstr "Ljusstyrke steg" + +#~ msgid "Brightness and Saturation" +#~ msgstr "Ljusstyrka och färgmättnad" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "Justering av ljusstyrka och färgmättnad" + +#~ msgid "Brightness settings" +#~ msgstr "Ljusstyrkeinställningar" + +#~ msgid "Brightness values for windows" +#~ msgstr "Ljusstyrkevärden för fönster" + +#~ msgid "Brightness window values" +#~ msgstr "Fönsters ljusstyrkevärden" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "Ljusstyrka fönster" + +#~ msgid "Saturation Decrease" +#~ msgstr "Minska färgmättnad" + +#~ msgid "Saturation Increase" +#~ msgstr "Öka färgmättnad" + +#~ msgid "Saturation Step" +#~ msgstr "Färgmättnads steg" + +#~ msgid "Saturation settings" +#~ msgstr "Färgmättnads inställningar" + +#~ msgid "Saturation values for windows" +#~ msgstr "Färgmättnadsvärden för fönster" + +#~ msgid "Saturation window values" +#~ msgstr "Fönsters färgmättnadsvärden" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "Färgmättnad fönster" + +#~ msgid "Window specific" +#~ msgstr "Fönster specifikt" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Fönster som ska ha en annan standardljusstyrka" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Fönster som ska ha en annan standardfärgmättnad" + +#~ msgid "Close Windows In Scale" +#~ msgstr "Stäng fönster i skala" + #~ msgid "Animation Speed" #~ msgstr "Animationshastighet" @@ -4938,9 +5387,6 @@ #~ msgid "Misc. options" #~ msgstr "Diverse inställningar" -#~ msgid "Show minimized windows" -#~ msgstr "Visa minimerade fönster" - #~ msgid "Tile or Stretch" #~ msgstr "Sida vid sida eller sträck ut" @@ -4969,6 +5415,3 @@ #~ msgstr "" #~ "Det här kommer skapa mipmaps som generellt kommer förbättra utseende på " #~ "textur och reducera ojämna kanter" - -#~ msgid "Window width" -#~ msgstr "Fönsterbredd" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/tr.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/tr.po --- compiz-fusion-plugins-unsupported-0.7.6/po/tr.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/tr.po 2008-09-17 14:29:33.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: compiz-fusion-plugins-new\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:53+0530\n" +"POT-Creation-Date: 2008-09-15 14:48+0530\n" "PO-Revision-Date: 2007-12-31 01:40+0100\n" "Last-Translator: Gürkan Gür \n" "Language-Team: \n" @@ -121,6 +121,12 @@ msgid "Brightness of faded windows" msgstr "Soldurulmuş pencerelerin parlaklığı" +msgid "Enable ADD Helper on start" +msgstr "" + +msgid "Enables ADD helper when it is first loaded." +msgstr "" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "" @@ -151,12 +157,6 @@ msgid "Window types that should be Opacified." msgstr "Matlaştırılması gereken pencere tipleri." -msgid "Airplane" -msgstr "Kağıt Uçak" - -msgid "Airplane Flying Path Length" -msgstr "Kağıt Uçağın Gideceği Yol Uzunluğu" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." @@ -164,16 +164,6 @@ "Bütün efektler rasgele ayarlanacak, eğer efektini kapattığınız bir bölüm " "varsa, orada efekt uygulanmayacak." -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" - msgid "Angle of window at the end of the animation." msgstr "Canlandırmanın sonundaki pencere açısı." @@ -183,10 +173,6 @@ msgid "Animation Time Step" msgstr "Canlandırma Zaman Aralığı" -# FIXED - Intense Effects == aufregende Effekte (analog zu OOo) -msgid "Animation Time Step For Intense Effects" -msgstr "" - msgid "Animation duration in milliseconds for close effect." msgstr "Kapatma efekti için milisaniye olarak canlandırma süresi." @@ -205,54 +191,12 @@ msgid "Animations" msgstr "Canlandırmalar" -msgid "Automatic" -msgstr "Otomatik" - msgid "Away Angle" msgstr "Uzak Açı" msgid "Away Position" msgstr "Uzak Konum" -msgid "Beam" -msgstr "Işıma" - -# Vielleicht ein bisschen gewagt aber 'Teleportation' wäre die korrekte Übersetzung - zu lang? -msgid "Beam Color" -msgstr "Işıma Rengi" - -msgid "Beam Life" -msgstr "Işıma Süresi" - -msgid "Beam Slowdown" -msgstr "Işıma Yavaşlaması" - -msgid "Beam Spacing" -msgstr "Işıma Aralığı" - -# Star-Trek-Referenz im Deutschen sowieso nicht machbar -msgid "Beam Up" -msgstr "Işıma" - -msgid "Beam Width" -msgstr "Işıma Genişliği" - -msgid "Beam color." -msgstr "Işıma rengi." - -msgid "Beam life." -msgstr "Işıma süresi." - -msgid "Beam slowdown." -msgstr "Işıma yavaşlaması." - -msgid "Beam width." -msgstr "Işıma genişliği." - -# Da der Effekt im Original einen eigenen Namen, trifft's 'Verbrennen' besser als 'Feuer' -msgid "Burn" -msgstr "Alev" - msgid "Close Animation" msgstr "Kapatma Canlandırması" @@ -273,7 +217,8 @@ msgid "Curved Fold" msgstr "Eğimli Katlama" -msgid "Curved Fold Amplitude" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" msgstr "Eğimli Katlama Genişlemesi" msgid "Dodge" @@ -283,15 +228,6 @@ msgid "Dodge Gap Ratio" msgstr "" -msgid "Domino" -msgstr "Domino" - -msgid "Domino Piece Falling Direction" -msgstr "Domino Taşlarının Düşme Yönü" - -msgid "Down" -msgstr "Aşağı" - msgid "Dream" msgstr "Hayal" @@ -301,77 +237,21 @@ msgid "Effect Settings" msgstr "Efekt Ayarları" -msgid "Explode" -msgstr "Patlama" - msgid "Fade" msgstr "Belirme/Kaybolma" -msgid "Falling direction for Domino pieces." -msgstr "Domino parçacıklarının düşme yönü." - -msgid "Fire" -msgstr "Ateş" - -msgid "Fire Particle Color" -msgstr "Ateş Rengi" - -msgid "Fire Particle Life" -msgstr "Ateş Parçacığı Ömrü" - -msgid "Fire Particle Size" -msgstr "Ateş Parçacığı Boyutu" - -msgid "Fire Particle Slowdown" -msgstr "Alev Parçacığı Yavaşlaması" - -msgid "Fire Smoke" -msgstr "Ateş Dumanı" - -msgid "Fire constant speed" -msgstr "Ateş hızı" - -msgid "Fire direction" -msgstr "Ateş yönü" - -msgid "Fire direction." -msgstr "Ateş yönü." - -msgid "Fire particle color." -msgstr "Ateş rengi." - -msgid "Fire particle life." -msgstr "Ateş parçacığı ömrü." - -msgid "Fire particle size." -msgstr "Ateş parçacığı boyutu." - -msgid "Fire particle slowdown." -msgstr "Alev parçacığı yavaşlaması." - -msgid "Fire smoke." -msgstr "Ateş dumanı." - msgid "Fixed window interior during the Rollup animation." msgstr "Toparlamada Pencerenin İç Yüzünü Onar." -msgid "Fly to TaskBar on Minimize" -msgstr "Küçültme sırasında Görev Çubuğuna Uç" - msgid "Focus Animation" msgstr "Odaklama Canlandırması" msgid "Focus Effect" msgstr "Odaklama Efekti" -msgid "Fold" -msgstr "Katlama" - -msgid "Fold Direction" -msgstr "Katlama Yönü" - -# siehe 'Razr' -msgid "Fold opening direction for pieces in Razr effect." +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "Glide 1" @@ -380,16 +260,11 @@ msgid "Glide 2" msgstr "Havadan Süzülme 2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "" - -msgid "Hexagonal" -msgstr "Altıgen" - msgid "Horizontal Folds" msgstr "Yatay Katlama" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "Yatay Katlama Genişlemesi" msgid "How spring-like the Sidekick animation should be." @@ -398,25 +273,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "" -# FIXME: Herein und Heraus sind noch nicht optimal -msgid "In" -msgstr "İç" - -msgid "In-out" -msgstr "İç-dış" - -msgid "Leaf Spread" -msgstr "Yaprak Yayılması" - -msgid "Left" -msgstr "Sol" - -msgid "Left-right" -msgstr "Sol-sağ" - -msgid "Length of airplane's flying path." -msgstr "Uçağın uçuş yolunun uzunluğu." - msgid "Magic Lamp" msgstr "Sihirli Lamba" @@ -438,9 +294,6 @@ msgid "Magic Lamp Open/Close Moving End" msgstr "Sihirli Lamba Açma/Kapatma Taşıma Sonu" -msgid "Make fire effect duration be dependent on window height." -msgstr "" - msgid "Minimize Animation" msgstr "Küçültme Canlandırması" @@ -450,21 +303,12 @@ msgid "Minimize/Unminimize Only" msgstr "Sadece Küçültme / Geri Yükleme" -msgid "Movement direction(s) for window pieces." -msgstr "Pencere parçaları için taşıma yönleri." - msgid "None" msgstr "Hiçbiri" -msgid "Number Of Fire Particles" -msgstr "Ateş Parçacıklarının Sayısı" - msgid "Number of Horizontal Folds" msgstr "Yatay Katlamaların Sayısı" -msgid "Number of fire particles." -msgstr "Alevin parçacık sayısı." - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "" @@ -493,15 +337,12 @@ msgid "Options" msgstr "Seçenekler" -msgid "Out" -msgstr "Dış" - msgid "Pool" msgstr "Havuz" msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "" msgid "Random" @@ -513,38 +354,15 @@ msgid "Random Effects" msgstr "Rastgele Efektler" -msgid "Randomly Colored Fire" -msgstr "Rastgele Renklendirilmiş Alev" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" -# bei 'Razr' belassen oder 'Rasierklinge'? -msgid "Razr" -msgstr "" - -msgid "Razr Fold Opening Direction" -msgstr "" - -msgid "Rectangular" -msgstr "Dikdörtgen" - -msgid "Right" -msgstr "Sağ" - msgid "Roll Up" msgstr "Toparlama" msgid "Rollup Fixed Interior" msgstr "Toparlamada Pencereyi Onar" -msgid "Rotation Angle" -msgstr "Döndürme Açısı" - -# FIXME: besser Bruchstücke statt Teile? -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "" - msgid "Shade Animation" msgstr "Gölgeleme Canlandırması" @@ -560,15 +378,6 @@ msgid "Sidekick Springiness" msgstr "Yardımcı Esnekliği" -msgid "Skewer" -msgstr "Şişeleme" - -msgid "Skewer Direction" -msgstr "Şişeleme Yönü" - -msgid "Spacing between beams." -msgstr "Işınlar arasındaki mesafe." - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." @@ -578,36 +387,11 @@ "Starting width of open effect and ending width of close effect for Vacuum." msgstr "" -msgid "Tessellation Type" -msgstr "Mozaik Tipi" - -msgid "Tessellation type for exploding window pieces." -msgstr "Patlayan pencere parçacıkları için mozaik tipi." - -msgid "Tessellation type for window pieces." -msgstr "Pencere parçacıkları için mozaik tipi." - msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The animation effect shown when closing a window." msgstr "Bir pencere kapatılırken uygulanacak efekt." @@ -623,16 +407,6 @@ msgid "The animation effect shown when shading a window." msgstr "Bir pencere gölgelenirken uygulanacak efekt." -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "" @@ -646,36 +420,12 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "" - msgid "The width of the wave relative to the window height." msgstr "" msgid "The windows that will be animated." msgstr "Canlandırılacak pencereler." -msgid "Thickness" -msgstr "Kalınlık" - -msgid "Thickness of Animated Polygons" -msgstr "" - -msgid "Thickness of Exploding Polygons" -msgstr "" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "" - -msgid "Up" -msgstr "Yukarı" - -msgid "Up-down" -msgstr "Yukarı-aşağı" - msgid "Use various animations as window effects" msgstr "Pencere efekti olarak değişik canlandırmalar kullan" @@ -706,14 +456,16 @@ msgid "Wave" msgstr "Dalga" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "Dalga Aralığı" msgid "Wave Width" msgstr "Dalga Genişliği" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." msgstr "" msgid "" @@ -738,26 +490,12 @@ "Folds effect." msgstr "" -msgid "Window Grid Height" -msgstr "Pencere Izgara Yüksekliği" - -msgid "Window Grid Width" -msgstr "Pencere Izgara Genişliği" - -msgid "Window folding direction." -msgstr "" - msgid "Window that should animate with this effect when focused." msgstr "" msgid "Window that should animate with this effect when shaded." msgstr "" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" - msgid "Zoom" msgstr "Büyütme" @@ -874,83 +612,12 @@ msgstr "Y-Konumu" #, fuzzy -msgid "Brightness Decrease" -msgstr "Parlaklık" - -#, fuzzy -msgid "Brightness Increase" -msgstr "Parlaklık" - -#, fuzzy -msgid "Brightness Step" -msgstr "Parlaklık" - -#, fuzzy -msgid "Brightness and Saturation" -msgstr "Soldurulmuş pencerelerin parlaklığı" +msgid "Bicubic filter" +msgstr "Filtreyi seç" -msgid "Brightness and Saturation adjustments" +msgid "Bicubic texture filtering" msgstr "" -#, fuzzy -msgid "Brightness settings" -msgstr "Parlaklık" - -#, fuzzy -msgid "Brightness values for windows" -msgstr "Soldurulmuş pencerelerin parlaklığı" - -#, fuzzy -msgid "Brightness window values" -msgstr "Soldurulmuş pencerelerin parlaklığı" - -#, fuzzy -msgid "Brightness windows" -msgstr "Soldurulmuş pencerelerin parlaklığı" - -msgid "General" -msgstr "Genel" - -#, fuzzy -msgid "Saturation Decrease" -msgstr "Doygunluk" - -#, fuzzy -msgid "Saturation Increase" -msgstr "Doygunluk" - -#, fuzzy -msgid "Saturation Step" -msgstr "Doygunluk" - -#, fuzzy -msgid "Saturation settings" -msgstr "Doygunluk" - -#, fuzzy -msgid "Saturation values for windows" -msgstr "Soldurulmuş pencerelerin doygunluğu" - -#, fuzzy -msgid "Saturation window values" -msgstr "Soldurulmuş pencerelerin doygunluğu" - -#, fuzzy -msgid "Saturation windows" -msgstr "Soldurulmuş pencerelerin doygunluğu" - -#, fuzzy -msgid "Window specific" -msgstr "Pencere Matlığı" - -#, fuzzy -msgid "Windows that should have a different brightness by default" -msgstr "Öntanımlı olarak yeniden boyutlandırılması gereken pencereler" - -#, fuzzy -msgid "Windows that should have a different saturation by default" -msgstr "Öntanımlı olarak yeniden boyutlandırılması gereken pencereler" - msgid "Color filter" msgstr "Renk Filtreleyicisi" @@ -1036,6 +703,9 @@ msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" msgstr "Pencere yöneticisi komut satırı. COMPIZ'İ BURAYA GİRMEYİN!!!" +msgid "Above" +msgstr "Yukarı" + msgid "Adjust bottom face image to rotation" msgstr "Taban resmini döndürmeye ayarla" @@ -1057,6 +727,19 @@ msgid "Appearance" msgstr "Görünüm" +#, fuzzy +msgid "Aspect ratio" +msgstr "Görünüm Oranı" + +msgid "Aspect ratio of the deformed cube" +msgstr "" + +msgid "Auto zoom" +msgstr "Otomatik Büyütme" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "Sadec Fare ile Döndürüldüğünde Otomatik Büyüt" + msgid "Behaviour" msgstr "Davranış" @@ -1084,18 +767,63 @@ msgid "Color of bottom face of the cube" msgstr "Küpün alt yüzünün rengi" +msgid "Color of the ground (far)." +msgstr "Alanın rengi (uzak)." + +msgid "Color of the ground (near)." +msgstr "Alanın rengi (yakın)." + msgid "Color of top face of the cube" msgstr "Küpün üst yüzünün rengi" +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Compiz Küp Yansıması" + msgid "Cube Bottom Color" msgstr "Küp Alt Rengi" -msgid "Cube Caps" -msgstr "Küp Kapakları" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "Dekorasyonlar için Yansıma" msgid "Cube Top Color" msgstr "Küp Üst Rengi" +#, fuzzy +msgid "Cube caps" +msgstr "Küp Kapakları" + +# FIXME +#, fuzzy +msgid "Cylinder" +msgstr "Temizle" + +#, fuzzy +msgid "Deform caps" +msgstr "Süre" + +msgid "Deform cube caps." +msgstr "" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "Sadec Fare ile Döndürüldüğünde Otomatik Büyüt" + +#, fuzzy +msgid "Deformation" +msgstr "Süre" + +msgid "Deformation in unfold cube mode." +msgstr "" + +#, fuzzy +msgid "Deformation mode." +msgstr "Süre" + +msgid "Distance" +msgstr "Uzaklık" + msgid "Draw bottom face" msgstr "Alt kapağı oluştur" @@ -1108,12 +836,38 @@ msgid "Draw top face of the cube" msgstr "Küpün üst kapağını oluştur" +#, fuzzy +msgid "Enabled" +msgstr "Etkinleştir" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Compiz Küp Yansıması" + msgid "Go back to previous image for bottom face of the cube" msgstr "" msgid "Go back to previous image for top face of the cube" msgstr "" +msgid "Ground color(far)" +msgstr "Alan rengi (uzak)" + +msgid "Ground color(near)" +msgstr "Alan rengi (yakın)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "Yoğunluk" + +msgid "Jumpy" +msgstr "Gerginleştir" + +msgid "Jumpy reflection" +msgstr "Gerginlik yansıması" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1121,6 +875,22 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "" +#, fuzzy +msgid "Maintain bottom aspect ratio" +msgstr "Segi kipi görünüm oranı" + +#, fuzzy +msgid "Maintain bottom cap image aspect ratio." +msgstr "Taban resmini döndürmeye ayarla" + +#, fuzzy +msgid "Maintain top aspect ratio" +msgstr "Segi kipi görünüm oranı" + +#, fuzzy +msgid "Maintain top cap image aspect ratio." +msgstr "Tavan resmini döndürmeye ayarla" + msgid "Next bottom image" msgstr "Sonraki taban resmi" @@ -1133,8 +903,23 @@ msgid "Prev top image" msgstr "Önceki tavan resmi" -msgid "Render images on top and bottom of the cube" -msgstr "" +msgid "Reflection" +msgstr "Yansıma" + +msgid "Reflection ground size" +msgstr "Yansıma alanı boyutu" + +msgid "Reflection ground size." +msgstr "Yansıma alanı boyutu." + +msgid "Reflection intensity" +msgstr "Yansıma yoğunluğu" + +msgid "Reflection mode" +msgstr "Yansıma kipi" + +msgid "Reflection mode." +msgstr "Yansıma kipi." msgid "Scale bottom image" msgstr "Taban resmini boyutlandır" @@ -1148,69 +933,36 @@ msgid "Scale top image" msgstr "Tavan resmini boyutlandır" +#, fuzzy +msgid "Sphere" +msgstr "Hız" + msgid "Top image files" msgstr "Tavan resim dosyaları" -msgid "Above" -msgstr "Yukarı" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "Otomatik Büyütme" +msgid "Zoom out automatically only on mouse rotate." +msgstr "" -msgid "Auto zoom only on Mouse Rotate" -msgstr "Sadec Fare ile Döndürüldüğünde Otomatik Büyüt" +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "" -msgid "Color of the ground (far)." -msgstr "Alanın rengi (uzak)." +#, fuzzy +msgid "Cube Caps" +msgstr "Küp Kapakları" -msgid "Color of the ground (near)." -msgstr "Alanın rengi (yakın)." +msgid "Render images on top and bottom of the cube" +msgstr "" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz Küp Yansıması" +msgstr "Küp Yansıması" msgid "Cube Reflection" msgstr "Küp Yansıması" -msgid "Distance" -msgstr "Uzaklık" - -msgid "Ground color(far)" -msgstr "Alan rengi (uzak)" - -msgid "Ground color(near)" -msgstr "Alan rengi (yakın)" - -msgid "Intensity" -msgstr "Yoğunluk" - -msgid "Jumpy" -msgstr "Gerginleştir" - -msgid "Jumpy reflection" -msgstr "Gerginlik yansıması" - -msgid "Reflection ground size" -msgstr "Yansıma alanı boyutu" - -msgid "Reflection ground size." -msgstr "Yansıma alanı boyutu." - -msgid "Reflection intensity" -msgstr "Yansıma yoğunluğu" - -msgid "Reflection mode" -msgstr "Yansıma kipi" - -msgid "Reflection mode." -msgstr "Yansıma kipi." - -msgid "Zoom out automatically only on mouse rotate." -msgstr "" - -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "" - msgid "Animation used when switching to expo mode" msgstr "" @@ -1235,10 +987,6 @@ msgid "Curve strength" msgstr "Hareketli bulnıklaştırma direnci." -#, fuzzy -msgid "Deformation" -msgstr "Süre" - # FIXME - is wall really == Wand here? -- Maybe we could use Ebene, Tafel or Brett here? #, fuzzy msgid "Deformation of the expo wall" @@ -1333,9 +1081,6 @@ msgid "Previous viewport" msgstr "Önceki masaüstü" -msgid "Reflection" -msgstr "Yansıma" - msgid "Reflection Scale" msgstr "Yansıma Boyutu" @@ -1442,6 +1187,9 @@ msgid "Center the mouse" msgstr "" +msgid "Dynamic mouse pointer scale" +msgstr "" + msgid "Enable focus tracking" msgstr "Odaklama izlemesini etkinleştir" @@ -1498,18 +1246,14 @@ msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" msgstr "" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +#, fuzzy +msgid "Minimum zoom factor" +msgstr "Belirli bir büyütme basamağı 1" #, fuzzy msgid "Mouse Behaviour" msgstr "Fare Davranışı" -msgid "Mouse Poll Interval" -msgstr "" - msgid "Mouse Restrain Margin" msgstr "" @@ -1590,12 +1334,20 @@ msgid "Speed" msgstr "Hız" +msgid "Static mouse pointer scale" +msgstr "" + msgid "Sync Mouse" msgstr "" msgid "Target Focused Window on Specific level" msgstr "" +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "" + msgid "The size of the margin to add when attempting to restrain the mouse." msgstr "" @@ -1611,10 +1363,24 @@ msgid "Use linear filter when zoomed in" msgstr "" +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." +msgstr "" + +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." +msgstr "" + #, fuzzy msgid "Zoom Area Movement" msgstr "Büyürme Taşıması" +#, fuzzy +msgid "Zoom Box" +msgstr "Büyütme" + msgid "Zoom In" msgstr "Büyüt" @@ -1643,6 +1409,9 @@ msgid "Zoom factor" msgstr "Büyütme basamağı" +msgid "Zoom in on a boxed area" +msgstr "" + msgid "Zoom in/out by this factor. Higher value means quicker zooming." msgstr "" @@ -1697,22 +1466,56 @@ msgid "Toggle window fake ARGB." msgstr "" +#, fuzzy +msgid "Add Particle" +msgstr "Ateş Parçacığı Ömrü" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "Arkaplan parlaklığı" msgid "Background brightness during paint" msgstr "Boyama sırasında arkaplanın parlaklığı" -# FIXME -msgid "Clear" -msgstr "Temizle" +# FIXME +msgid "Clear" +msgstr "Temizle" + +msgid "Clear (button)" +msgstr "Temizle (düğme)" + +# FIXME +msgid "Clear (key)" +msgstr "Temizle (tuş)" + +msgid "Fire Particle Color" +msgstr "Ateş Rengi" + +msgid "Fire Particle Life" +msgstr "Ateş Parçacığı Ömrü" + +msgid "Fire Particle Size" +msgstr "Ateş Parçacığı Boyutu" + +msgid "Fire Particle Slowdown" +msgstr "Alev Parçacığı Yavaşlaması" + +msgid "Fire particle color." +msgstr "Ateş rengi." + +msgid "Fire particle life." +msgstr "Ateş parçacığı ömrü." -msgid "Clear (button)" -msgstr "Temizle (düğme)" +msgid "Fire particle size." +msgstr "Ateş parçacığı boyutu." -# FIXME -msgid "Clear (key)" -msgstr "Temizle (tuş)" +msgid "Fire particle slowdown." +msgstr "Alev parçacığı yavaşlaması." + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "" msgid "Initiate (button)" msgstr "Başlat (düğme)" @@ -1735,6 +1538,9 @@ msgid "Paint fire or other particles on the screen" msgstr "Ekrana alev ya da başka parçacıklar çiz" +msgid "Randomly Colored Fire" +msgstr "Rastgele Renklendirilmiş Alev" + msgid "Cube Gears" msgstr "Küp Dişlileri" @@ -1828,6 +1634,9 @@ msgid "Font Size" msgstr "Yazıtipi Boyutu" +msgid "General" +msgstr "Genel" + msgid "Glass" msgstr "Cam" @@ -2426,9 +2235,17 @@ msgid "Start gesture" msgstr "" +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "" + msgid "Misc" msgstr "" +msgid "Mouse Poll Interval" +msgstr "" + msgid "Mouse position polling" msgstr "" @@ -3129,8 +2946,13 @@ msgid "Background color of the window title" msgstr "" -msgid "Close Windows In Scale" -msgstr "" +#, fuzzy +msgid "Close Window" +msgstr "Pencereleri Döşe" + +#, fuzzy +msgid "Close window while in scale mode" +msgstr "Küp döndürülürken pencereleri yükseltir" msgid "Close windows while in scale mode" msgstr "" @@ -3138,9 +2960,18 @@ msgid "Color used for highlighting the hovered window" msgstr "" +msgid "Constrain Pull To Screen" +msgstr "" + msgid "Draw Window Highlight" msgstr "" +msgid "Exit Scale On Pull" +msgstr "" + +msgid "Exit scale mode after a window has been pulled." +msgstr "" + msgid "Font color of the window title" msgstr "" @@ -3157,6 +2988,10 @@ msgid "Highlights the hovered window with the given color" msgstr "" +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "" + msgid "No display" msgstr "" @@ -3166,6 +3001,14 @@ msgid "Organic - EXPERIMENTAL" msgstr "Organik - DENEYSEL" +#, fuzzy +msgid "Pull Window" +msgstr "Pencereyi yerleştir" + +#, fuzzy +msgid "Pull window to current viewport while in scale mode" +msgstr "Pencereyi üst masaüstüne taşı" + msgid "Scale Addons" msgstr "" @@ -3190,6 +3033,10 @@ msgid "Window Layout Mode" msgstr "Pencere Yerleşim Kipi" +#, fuzzy +msgid "Window Pull" +msgstr "Pencere Kuralları" + msgid "Window Title" msgstr "Pencere Başlığı" @@ -3200,10 +3047,11 @@ msgid "Window title display in scale mode" msgstr "" -msgid "Zoom Windows In Scale" -msgstr "" +#, fuzzy +msgid "Zoom Window" +msgstr "3B Pencereler" -msgid "Zoom windows while in scale mode" +msgid "Zoom window while in scale mode" msgstr "" msgid "Filter Case Insensitive" @@ -3465,18 +3313,30 @@ msgid "Direction of window movement" msgstr "Pencere taşıma yönü" +msgid "Down" +msgstr "Aşağı" + +msgid "Left" +msgstr "Sol" + msgid "Left/Right" msgstr "Sol/Sağ" msgid "Movement Direction" msgstr "Hareket Yönü" +msgid "Right" +msgstr "Sağ" + msgid "Show desktop" msgstr "Masaüstünü göster" msgid "To Corners" msgstr "Köşelere" +msgid "Up" +msgstr "Yukarı" + msgid "Up/Down" msgstr "Yukarı/Aşağı" @@ -3691,126 +3551,365 @@ msgid "Key Bindings" msgstr "Kısayollar" -msgid "Left to Right" -msgstr "Soldan Sağa" +msgid "Left to Right" +msgstr "Soldan Sağa" + +msgid "Number Of Snowflakes" +msgstr "Kar Tanelerinin Sayısı" + +msgid "Number of snowflakes" +msgstr "Kar tanelerinin sayısı" + +msgid "Right to Left" +msgstr "Sağdan Sola" + +msgid "Rotate Flakes" +msgstr "Kar Tanelerini Döndür" + +# FIXME -- We need a better translation for 'Boxing' +msgid "Screen Boxing" +msgstr "Ekran Kutulaması" + +msgid "Screen Depth" +msgstr "Ekran Derinliği" + +msgid "Select snow flake movement direction" +msgstr "Kar tanelerinin hareket yönünü seç" + +msgid "Settings" +msgstr "Ayarlar" + +msgid "Size Of Snowflakes" +msgstr "Kar Tanelerinin Boyutu" + +msgid "Size of snowflakes" +msgstr "Kar tanelerinin boyutu" + +msgid "Snow" +msgstr "Kar" + +msgid "Snow Direction" +msgstr "Kar Yönü" + +msgid "Snow Over Windows" +msgstr "Pencereler Üzerinde Kar" + +msgid "Snow Speed" +msgstr "Kar Hızı" + +msgid "Snow Textures" +msgstr "Kar Dokuları" + +msgid "Snow Toggle" +msgstr "Kar Efekti Aç / Kapat" + +msgid "Snow for Compiz" +msgstr "Compiz için Kar Efekti" + +msgid "Snow is drawn above windows" +msgstr "Kar taneleri pencerelerin üzerinde gösterilir" + +msgid "Snow textures" +msgstr "Kar dokuları" + +msgid "Snow toggle key" +msgstr "Kar açma kapatma tuşu" + +msgid "Speed of falling snow" +msgstr "Düşen kar tanelerinin hızı" + +msgid "Textures" +msgstr "Dokular" + +msgid "Top to Bottom" +msgstr "Yukarıdan Aşağıya" + +msgid "Update Delay" +msgstr "Güncelleme Gecikmesi" + +msgid "A simple splash plugin" +msgstr "Basit bir açılış resmi eklentisi" + +msgid "Background File" +msgstr "Arkaplan Dosyası" + +msgid "Background brightness." +msgstr "Arkaplan parlaklığı." + +msgid "Background image File." +msgstr "Arkaplan resim dosyası." + +msgid "Background saturation." +msgstr "Arkaplan doygunluğu." + +msgid "Display In/Out Time." +msgstr "İç/Dış Zamanını Göster." + +msgid "Display Time" +msgstr "Gösterme Süresi" + +msgid "Images" +msgstr "Resimler" + +msgid "Initiate Splash" +msgstr "Açılış Resmini Başlat" + +msgid "Logo File" +msgstr "Logo Dosyası" + +msgid "Logo image File." +msgstr "Logo resim dosyası." + +msgid "Show on first start" +msgstr "İlk başlangıçta göster" + +msgid "Show splash on first start." +msgstr "Açılış resmini ilk başlatmada göster." + +msgid "Splash" +msgstr "Açılış Resmi" + +msgid "Start Splash." +msgstr "Açılış Resmini Başlat." + +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" +msgstr "" + +#, fuzzy +msgid "Behavior" +msgstr "Davranış" + +#, fuzzy +msgid "Darken background when showing the stack" +msgstr "Arkaplanı Koyulaştır" + +#, fuzzy +msgid "On Thumbnail" +msgstr "Küçük Pencere Genişliği" + +#, fuzzy +msgid "Rotate inactive windows" +msgstr "Verilen bir pencereyi etkinleştir" + +#, fuzzy +msgid "Should not selected windows be rotated" +msgstr "Pencere başlığı kalın olmalıdır." + +#, fuzzy +msgid "Stack Window Switcher" +msgstr "Çember Seçici" + +msgid "Tilt angle of the background." +msgstr "" + +#, fuzzy +msgid "Windows" +msgstr "3B Pencereler" + +#, fuzzy +msgid "Windows that should be shown in the switcher" +msgstr "Shift değiştiricide gösterilmesi gereken pencereler" + +msgid "Alignment for rows that are not fully filled" +msgstr "" + +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "Boyama sırasında arkaplanın parlaklığı" + +msgid "Amount of opacity in percent" +msgstr "" + +# FIXME - pager = ? +#, fuzzy +msgid "Amount of saturation in percent" +msgstr "Uygulamayı sayfalayıcıda gösterme" + +#, fuzzy +msgid "Auto Change Viewport" +msgstr "Masaüstüne Yerleştir" + +msgid "Bring Selected To Front" +msgstr "" + +#, fuzzy +msgid "Centered" +msgstr "Ortaya Yerleştir" + +msgid "Change to the viewport of the selected window while switching" +msgstr "" + +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "Seçim dikdörtgeninin çizgi rengi" + +msgid "Color of highlight rectangle border" +msgstr "" + +msgid "Color of inlay in highlight rectangle border" +msgstr "" + +msgid "Generate mipmaps when possible for higher quality scaling" +msgstr "" + +#, fuzzy +msgid "Highlight Border Color" +msgstr "Vurgulama Rengi" + +#, fuzzy +msgid "Highlight Border Inlay Color" +msgstr "Vurgulama Rengi" + +#, fuzzy +msgid "Highlight Mode" +msgstr "Vurgulama Rengi" -msgid "Number Of Snowflakes" -msgstr "Kar Tanelerinin Sayısı" +# FIXME: Herein und Heraus sind noch nicht optimal +#, fuzzy +msgid "Icon" +msgstr "İç" -msgid "Number of snowflakes" -msgstr "Kar tanelerinin sayısı" +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "Pencere Vurgulaması" -msgid "Right to Left" -msgstr "Sağdan Sola" +msgid "Mipmap" +msgstr "" -msgid "Rotate Flakes" -msgstr "Kar Tanelerini Döndür" +#, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "O anda odaklanmış pencerenin filtrelemesini aç / kapat." -# FIXME -- We need a better translation for 'Boxing' -msgid "Screen Boxing" -msgstr "Ekran Kutulaması" +msgid "Next Panel" +msgstr "" -msgid "Screen Depth" -msgstr "Ekran Derinliği" +#, fuzzy +msgid "Next window" +msgstr "Sonraki Pencere" -msgid "Select snow flake movement direction" -msgstr "Kar tanelerinin hareket yönünü seç" +#, fuzzy +msgid "Next window (All windows)" +msgstr "Sonraki Pencere (Tüm Çalışma Alanları)" -msgid "Settings" -msgstr "Ayarlar" +#, fuzzy +msgid "Next window (Group)" +msgstr "Sonraki Pencere (Grup)" -msgid "Size Of Snowflakes" -msgstr "Kar Tanelerinin Boyutu" +#, fuzzy +msgid "Next window (No popup)" +msgstr "Sonraki Pencere (Grup)" -msgid "Size of snowflakes" -msgstr "Kar tanelerinin boyutu" +msgid "Original Window Position" +msgstr "" -msgid "Snow" -msgstr "Kar" +#, fuzzy +msgid "Popup Window Delay" +msgstr "Pencereleri Grupla" -msgid "Snow Direction" -msgstr "Kar Yönü" +msgid "Popup switcher if not visible and select next window" +msgstr "" -msgid "Snow Over Windows" -msgstr "Pencereler Üzerinde Kar" +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "" -msgid "Snow Speed" -msgstr "Kar Hızı" +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "" -msgid "Snow Textures" -msgstr "Kar Dokuları" +msgid "Popup switcher if not visible and select previous window" +msgstr "" -msgid "Snow Toggle" -msgstr "Kar Efekti Aç / Kapat" +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "" -msgid "Snow for Compiz" -msgstr "Compiz için Kar Efekti" +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "" -msgid "Snow is drawn above windows" -msgstr "Kar taneleri pencerelerin üzerinde gösterilir" +msgid "Prev Panel" +msgstr "" -msgid "Snow textures" -msgstr "Kar dokuları" +#, fuzzy +msgid "Prev window" +msgstr "Önceki Pencere" -msgid "Snow toggle key" -msgstr "Kar açma kapatma tuşu" +#, fuzzy +msgid "Prev window (All windows)" +msgstr "Önceki Pencere (Tüm Çalışma Alanları)" -msgid "Speed of falling snow" -msgstr "Düşen kar tanelerinin hızı" +#, fuzzy +msgid "Prev window (Group)" +msgstr "Önceki Pencere (Grup)" -msgid "Textures" -msgstr "Dokular" +#, fuzzy +msgid "Prev window (No popup)" +msgstr "Önceki Pencere (Grup)" -msgid "Top to Bottom" -msgstr "Yukarıdan Aşağıya" +msgid "Row Alignment" +msgstr "" -msgid "Update Delay" -msgstr "Güncelleme Gecikmesi" +#, fuzzy +msgid "Select next panel type window." +msgstr "Tek Pencere Seç" -msgid "A simple splash plugin" -msgstr "Basit bir açılış resmi eklentisi" +msgid "Select next window without showing the popup window." +msgstr "" -msgid "Background File" -msgstr "Arkaplan Dosyası" +#, fuzzy +msgid "Select previous panel type window." +msgstr "Tek Pencere Seç" -msgid "Background brightness." -msgstr "Arkaplan parlaklığı." +msgid "Select previous window without showing the popup window." +msgstr "" -msgid "Background image File." -msgstr "Arkaplan resim dosyası." +#, fuzzy +msgid "Selected Window Highlight" +msgstr "Pencere Vurgulaması" -msgid "Background saturation." -msgstr "Arkaplan doygunluğu." +#, fuzzy +msgid "Show Rectangle" +msgstr "Dikdörtgen" -msgid "Display In/Out Time." -msgstr "İç/Dış Zamanını Göster." +#, fuzzy +msgid "Show icon next to thumbnail" +msgstr "Önzilemelerde Pencere Başlığını Göster." -msgid "Display Time" -msgstr "Gösterme Süresi" +msgid "Show minimized windows" +msgstr "Küçültülmüş pencereleri göster" -msgid "Images" -msgstr "Resimler" +msgid "Static Application Switcher" +msgstr "" -msgid "Initiate Splash" -msgstr "Açılış Resmini Başlat" +#, fuzzy +msgid "Switcher speed" +msgstr "Değiştirici kipi" -msgid "Logo File" -msgstr "Logo Dosyası" +#, fuzzy +msgid "Switcher timestep" +msgstr "Shift zaman aralığı" -msgid "Logo image File." -msgstr "Logo resim dosyası." +#, fuzzy +msgid "Switcher windows" +msgstr "Filtrelenmiş pencereler" -msgid "Show on first start" -msgstr "İlk başlangıçta göster" +#, fuzzy +msgid "Taskbar Entry" +msgstr "Görev Çubuğu" -msgid "Show splash on first start." -msgstr "Açılış resmini ilk başlatmada göster." +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "" -msgid "Splash" -msgstr "Açılış Resmi" +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "" -msgid "Start Splash." -msgstr "Açılış Resmini Başlat." +#, fuzzy +msgid "Windows that should be shown in switcher" +msgstr "Shift değiştiricide gösterilmesi gereken pencereler" msgid "Render text to texture" msgstr "Metni doku haline getir" @@ -4471,10 +4570,6 @@ msgstr "" #, fuzzy -msgid "Centered" -msgstr "Ortaya Yerleştir" - -#, fuzzy msgid "Color 1" msgstr "Renkler" @@ -4620,6 +4715,14 @@ msgid "Matches" msgstr "" +#, fuzzy +msgid "Maximized" +msgstr "Küçültülmüşleri Göster" + +#, fuzzy +msgid "Maximized windows" +msgstr "Büyütülemez pencereler" + msgid "No ARGB visuals" msgstr "ARGB visuals Kullanma" @@ -4699,6 +4802,9 @@ msgid "AIGLX Fragment Parameter Fix" msgstr "AIGLX Parça Parametresi Çözümü" +msgid "Convert Urgency to Demands Attention" +msgstr "" + msgid "Firefox Menu Fix" msgstr "Firefox Menü Hatasının Çözümü" @@ -4742,6 +4848,9 @@ "\"Tüm masaüstlerindeki\" pencereleri yapışkan yap. Yapışkan pencereler tüm " "masaüstlerinde görünebilirdir." +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "" + msgid "Make Wine and legacy applications fullscreen properly." msgstr "" "Wine ve önceden açık olan uygulamaların pencerelerini düzgünce tam ekran yap." @@ -4768,6 +4877,232 @@ msgid "Workarounds" msgstr "Hızlı Çözümler" +#~ msgid "Airplane" +#~ msgstr "Kağıt Uçak" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "Kağıt Uçağın Gideceği Yol Uzunluğu" + +#~ msgid "Automatic" +#~ msgstr "Otomatik" + +#~ msgid "Beam" +#~ msgstr "Işıma" + +# Vielleicht ein bisschen gewagt aber 'Teleportation' wäre die korrekte Übersetzung - zu lang? +#~ msgid "Beam Color" +#~ msgstr "Işıma Rengi" + +#~ msgid "Beam Life" +#~ msgstr "Işıma Süresi" + +#~ msgid "Beam Slowdown" +#~ msgstr "Işıma Yavaşlaması" + +#~ msgid "Beam Spacing" +#~ msgstr "Işıma Aralığı" + +# Star-Trek-Referenz im Deutschen sowieso nicht machbar +#~ msgid "Beam Up" +#~ msgstr "Işıma" + +#~ msgid "Beam Width" +#~ msgstr "Işıma Genişliği" + +#~ msgid "Beam color." +#~ msgstr "Işıma rengi." + +#~ msgid "Beam life." +#~ msgstr "Işıma süresi." + +#~ msgid "Beam slowdown." +#~ msgstr "Işıma yavaşlaması." + +#~ msgid "Beam width." +#~ msgstr "Işıma genişliği." + +# Da der Effekt im Original einen eigenen Namen, trifft's 'Verbrennen' besser als 'Feuer' +#~ msgid "Burn" +#~ msgstr "Alev" + +#~ msgid "Domino" +#~ msgstr "Domino" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "Domino Taşlarının Düşme Yönü" + +#~ msgid "Explode" +#~ msgstr "Patlama" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "Domino parçacıklarının düşme yönü." + +#~ msgid "Fire" +#~ msgstr "Ateş" + +#~ msgid "Fire Smoke" +#~ msgstr "Ateş Dumanı" + +#~ msgid "Fire constant speed" +#~ msgstr "Ateş hızı" + +#~ msgid "Fire direction" +#~ msgstr "Ateş yönü" + +#~ msgid "Fire direction." +#~ msgstr "Ateş yönü." + +#~ msgid "Fire smoke." +#~ msgstr "Ateş dumanı." + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "Küçültme sırasında Görev Çubuğuna Uç" + +#~ msgid "Fold" +#~ msgstr "Katlama" + +#~ msgid "Fold Direction" +#~ msgstr "Katlama Yönü" + +#~ msgid "Hexagonal" +#~ msgstr "Altıgen" + +# FIXME: Herein und Heraus sind noch nicht optimal +#~ msgid "In" +#~ msgstr "İç" + +#~ msgid "In-out" +#~ msgstr "İç-dış" + +#~ msgid "Leaf Spread" +#~ msgstr "Yaprak Yayılması" + +#~ msgid "Left-right" +#~ msgstr "Sol-sağ" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "Uçağın uçuş yolunun uzunluğu." + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "Pencere parçaları için taşıma yönleri." + +#~ msgid "Number Of Fire Particles" +#~ msgstr "Ateş Parçacıklarının Sayısı" + +#~ msgid "Number of fire particles." +#~ msgstr "Alevin parçacık sayısı." + +#~ msgid "Out" +#~ msgstr "Dış" + +#~ msgid "Rectangular" +#~ msgstr "Dikdörtgen" + +#~ msgid "Rotation Angle" +#~ msgstr "Döndürme Açısı" + +#~ msgid "Skewer" +#~ msgstr "Şişeleme" + +#~ msgid "Skewer Direction" +#~ msgstr "Şişeleme Yönü" + +#~ msgid "Spacing between beams." +#~ msgstr "Işınlar arasındaki mesafe." + +#~ msgid "Tessellation Type" +#~ msgstr "Mozaik Tipi" + +#~ msgid "Tessellation type for exploding window pieces." +#~ msgstr "Patlayan pencere parçacıkları için mozaik tipi." + +#~ msgid "Tessellation type for window pieces." +#~ msgstr "Pencere parçacıkları için mozaik tipi." + +#~ msgid "Thickness" +#~ msgstr "Kalınlık" + +#~ msgid "Up-down" +#~ msgstr "Yukarı-aşağı" + +#~ msgid "Window Grid Height" +#~ msgstr "Pencere Izgara Yüksekliği" + +#~ msgid "Window Grid Width" +#~ msgstr "Pencere Izgara Genişliği" + +#, fuzzy +#~ msgid "Brightness Decrease" +#~ msgstr "Parlaklık" + +#, fuzzy +#~ msgid "Brightness Increase" +#~ msgstr "Parlaklık" + +#, fuzzy +#~ msgid "Brightness Step" +#~ msgstr "Parlaklık" + +#, fuzzy +#~ msgid "Brightness and Saturation" +#~ msgstr "Soldurulmuş pencerelerin parlaklığı" + +#, fuzzy +#~ msgid "Brightness settings" +#~ msgstr "Parlaklık" + +#, fuzzy +#~ msgid "Brightness values for windows" +#~ msgstr "Soldurulmuş pencerelerin parlaklığı" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "Soldurulmuş pencerelerin parlaklığı" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "Soldurulmuş pencerelerin parlaklığı" + +#, fuzzy +#~ msgid "Saturation Decrease" +#~ msgstr "Doygunluk" + +#, fuzzy +#~ msgid "Saturation Increase" +#~ msgstr "Doygunluk" + +#, fuzzy +#~ msgid "Saturation Step" +#~ msgstr "Doygunluk" + +#, fuzzy +#~ msgid "Saturation settings" +#~ msgstr "Doygunluk" + +#, fuzzy +#~ msgid "Saturation values for windows" +#~ msgstr "Soldurulmuş pencerelerin doygunluğu" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "Soldurulmuş pencerelerin doygunluğu" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "Soldurulmuş pencerelerin doygunluğu" + +#, fuzzy +#~ msgid "Window specific" +#~ msgstr "Pencere Matlığı" + +#, fuzzy +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "Öntanımlı olarak yeniden boyutlandırılması gereken pencereler" + +#, fuzzy +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "Öntanımlı olarak yeniden boyutlandırılması gereken pencereler" + #~ msgid "Animation Speed" #~ msgstr "Canlandırma Hızı" @@ -4790,8 +5125,5 @@ #~ msgid "Misc. options" #~ msgstr "Diğer seçenekler" -#~ msgid "Show minimized windows" -#~ msgstr "Küçültülmüş pencereleri göster" - #~ msgid "Tile or Stretch" #~ msgstr "Döşe ya da Uzat" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/po/zh_CN.po /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/po/zh_CN.po --- compiz-fusion-plugins-unsupported-0.7.6/po/zh_CN.po 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/po/zh_CN.po 2008-09-17 14:29:33.000000000 +0100 @@ -3,25 +3,26 @@ # Copyright (C) 2007 opencompositing.org # This file is distributed under the same license as the compiz-fusion package. # Thruth , 2007 +# JING Cheng 2008 # msgid "" msgstr "" "Project-Id-Version: compiz-fusion-plugins\n" "Report-Msgid-Bugs-To: http://bugs.opencompositing.org\n" -"POT-Creation-Date: 2008-05-02 13:53+0530\n" -"PO-Revision-Date: 2008-02-22 04:46+0100\n" -"Last-Translator: Gao Dexiang \n" +"POT-Creation-Date: 2008-09-15 14:48+0530\n" +"PO-Revision-Date: 2008-09-14 00:04+0200\n" +"Last-Translator: Haoyu Bai \n" "Language-Team: Chinese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.0.2\n" +"X-Generator: Pootle 1.1.0\n" msgid "3D Only On Mouse Rotate" -msgstr "仅鼠标转面时开启 3D 窗口" +msgstr "仅鼠标转面时开启3D窗口" msgid "3D Windows" -msgstr "3D 窗口" +msgstr "3D窗口" msgid "Bevel Bottom Left" msgstr "圆滑左底角" @@ -50,20 +51,18 @@ msgid "Bevel top right corner" msgstr "圆滑右顶角" -#, fuzzy msgid "" "Change the amount of space between the windows (in percent of the cube size)." -msgstr "改变窗口间隔" +msgstr "改变窗口间的距离(以立方体大小的百分比为单位)" msgid "Color of an inactive window's depth" -msgstr "" +msgstr "未激活窗口颜色深度" -#, fuzzy msgid "Color of the active window's depth" -msgstr "开关窗口重导" +msgstr "激活窗口颜色深度" msgid "Elevates windows while rotating the cube" -msgstr "立方体转面时浮起的窗口" +msgstr "立方体转面时浮起窗口" msgid "" "Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the " @@ -71,10 +70,10 @@ msgstr "仅仅在用鼠标转动桌面的时候显示 3D 效果。(例,您通过鼠标进行转面操作)" msgid "Minimum Cube Size" -msgstr "最小立方体大小" +msgstr "立方体最小大小" msgid "Minimum cube size (in percent)." -msgstr "" +msgstr "立方体最小大小(百分比)" msgid "Misc. Options" msgstr "杂项设置" @@ -82,13 +81,11 @@ msgid "Roundoff corners for consistency with rounded decorations" msgstr "与圆形窗口装饰协调的圆角" -#, fuzzy msgid "Window Color (Active)" -msgstr "窗口标题字体" +msgstr "(激活的)窗口标题字体" -#, fuzzy msgid "Window Color (Inactive)" -msgstr "窗口标题字体" +msgstr "(未激活的)窗口标题字体" msgid "Window Depth" msgstr "窗口深度" @@ -109,7 +106,7 @@ msgstr "突出显示" msgid "Bindings" -msgstr "按键组合" +msgstr "绑定" msgid "Brightness" msgstr "亮度" @@ -117,6 +114,12 @@ msgid "Brightness of faded windows" msgstr "淡出窗口的亮度" +msgid "Enable ADD Helper on start" +msgstr "启动时启用ADD帮助" + +msgid "Enables ADD helper when it is first loaded." +msgstr "首次载入时启用ADD帮助" + msgid "" "Make it slightly easier to concentrate by dimming all but the active window." msgstr "突出显示当前窗口,暗淡活动窗口之外的一切内容。" @@ -145,31 +148,15 @@ msgid "Window types that should be Opacified." msgstr "不使用不透明的窗口类型。" -msgid "Airplane" -msgstr "纸飞机" - -msgid "Airplane Flying Path Length" -msgstr "纸飞机飞行路径长度" - msgid "" "All effects are chosen randomly, ignoring the selected effect. If None is " "selected for an event, that event won't be animated." msgstr "" "除了选择的特效外,所有特效将随机选用。如果没选择触发事件,则无动画效果。" -msgid "" -"Amplitude (size of the waves in the fold) of the Horizontal Folds relative " -"to the window width. Negative values fold outward." -msgstr "" - -msgid "" -"Amplitude (size of the waves in the fold) of the curved fold relative to " -"window width. Negative values fold outward." -msgstr "" - #, fuzzy msgid "Angle of window at the end of the animation." -msgstr "改变 3D 动画速度" +msgstr "动画终止时的窗口角度" msgid "Animation Selection" msgstr "动画选取" @@ -177,9 +164,6 @@ msgid "Animation Time Step" msgstr "动画时间步长" -msgid "Animation Time Step For Intense Effects" -msgstr "" - msgid "Animation duration in milliseconds for close effect." msgstr "以毫秒为单位的关闭效果的动画持续时间" @@ -198,56 +182,12 @@ msgid "Animations" msgstr "动画" -msgid "Automatic" -msgstr "自动" - +#, fuzzy msgid "Away Angle" -msgstr "" +msgstr "离开角度" -#, fuzzy msgid "Away Position" -msgstr "X 坐标" - -msgid "Beam" -msgstr "光线特效" - -#, fuzzy -msgid "Beam Color" -msgstr "线条颜色" - -msgid "Beam Life" -msgstr "" - -#, fuzzy -msgid "Beam Slowdown" -msgstr "火焰颗粒减速" - -msgid "Beam Spacing" -msgstr "" - -msgid "Beam Up" -msgstr "" - -#, fuzzy -msgid "Beam Width" -msgstr "边框宽度" - -msgid "Beam color." -msgstr "" - -msgid "Beam life." -msgstr "" - -#, fuzzy -msgid "Beam slowdown." -msgstr "火焰颗粒减速。" - -#, fuzzy -msgid "Beam width." -msgstr "边框宽度" - -msgid "Burn" -msgstr "燃烧特效" +msgstr "离开位置" msgid "Close Animation" msgstr "关闭动画" @@ -258,7 +198,7 @@ msgid "" "Closeness of window to camera at the end of the animation (1.0: Close to " "camera, -2.0: Away from camera)." -msgstr "" +msgstr "动画结束时窗口与视角的接近程度(1.0: 与视角接近,-2.0: 远离视角)" msgid "" "Comma separated list of option value assignments to override effect " @@ -266,25 +206,17 @@ msgstr "" msgid "Curved Fold" -msgstr "" +msgstr "弯曲折叠" -msgid "Curved Fold Amplitude" -msgstr "" +#, fuzzy +msgid "Curved Fold Amplitude Multiplier" +msgstr "弯曲折叠振幅" msgid "Dodge" msgstr "闪避效果" msgid "Dodge Gap Ratio" -msgstr "" - -msgid "Domino" -msgstr "多米诺骨牌效果" - -msgid "Domino Piece Falling Direction" -msgstr "多米诺骨牌倾倒方向" - -msgid "Down" -msgstr "下" +msgstr "闪避效果间隔比率" msgid "Dream" msgstr "梦幻特效" @@ -295,78 +227,22 @@ msgid "Effect Settings" msgstr "特效设置" -msgid "Explode" -msgstr "爆炸特效" - msgid "Fade" msgstr "淡入淡出" -msgid "Falling direction for Domino pieces." -msgstr "多米诺骨牌的倾倒方向" - -msgid "Fire" -msgstr "火焰特效" - -msgid "Fire Particle Color" -msgstr "火焰颗粒颜色" - -msgid "Fire Particle Life" -msgstr "火焰颗粒周期" - -msgid "Fire Particle Size" -msgstr "火焰颗粒大小" - -msgid "Fire Particle Slowdown" -msgstr "火焰颗粒减速" - -msgid "Fire Smoke" -msgstr "火焰烟尘" - -#, fuzzy -msgid "Fire constant speed" -msgstr "火焰常速" - -msgid "Fire direction" -msgstr "火焰方向" - -msgid "Fire direction." -msgstr "火焰方向。" - -msgid "Fire particle color." -msgstr "火焰颗粒颜色。" - -msgid "Fire particle life." -msgstr "火焰颗粒存留时间。" - -msgid "Fire particle size." -msgstr "火焰颗粒大小。" - -msgid "Fire particle slowdown." -msgstr "火焰颗粒减速。" - -msgid "Fire smoke." -msgstr "火焰烟尘" - msgid "Fixed window interior during the Rollup animation." msgstr "在上滚动画时固定窗口内部" -msgid "Fly to TaskBar on Minimize" -msgstr "最小化时飞向任务栏" - msgid "Focus Animation" msgstr "获得焦点动画" msgid "Focus Effect" msgstr "获得焦点效果" -msgid "Fold" -msgstr "折叠特效" - -msgid "Fold Direction" -msgstr "折叠方向" - -msgid "Fold opening direction for pieces in Razr effect." -msgstr "" +msgid "" +"Fold amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "折叠幅度(尺寸)倍数。负值会导致向外折叠。" msgid "Glide 1" msgstr "滑动效果1" @@ -374,16 +250,11 @@ msgid "Glide 2" msgstr "滑动效果2" -msgid "Have random colors for the fire effect, also known as Mystical Fire." -msgstr "为火焰随机选取颜色,亦称神秘火焰。" - -msgid "Hexagonal" -msgstr "六边形" - msgid "Horizontal Folds" msgstr "水平折叠" -msgid "Horizontal Folds Amplitude" +#, fuzzy +msgid "Horizontal Folds Amplitude Multiplier" msgstr "水平折叠幅度" #, fuzzy @@ -394,27 +265,6 @@ msgid "How spring-like the Zoom animation should be." msgstr "缩放动画的弹簧相似度" -msgid "In" -msgstr "进" - -# 这翻译有点汗 -msgid "In-out" -msgstr "进出" - -# 野战? 我面壁去 -msgid "Leaf Spread" -msgstr "叶展" - -msgid "Left" -msgstr "左" - -#, fuzzy -msgid "Left-right" -msgstr "左/右" - -msgid "Length of airplane's flying path." -msgstr "纸飞机飞行路径的长度" - msgid "Magic Lamp" msgstr "神灯特效" @@ -436,10 +286,7 @@ msgstr "窗口打开时神灯特效的宽度" msgid "Magic Lamp Open/Close Moving End" -msgstr "" - -msgid "Make fire effect duration be dependent on window height." -msgstr "使火焰特效持续时间与窗口高度相关" +msgstr "神灯开启/关闭动画终点可移动" msgid "Minimize Animation" msgstr "最小化动画" @@ -450,21 +297,12 @@ msgid "Minimize/Unminimize Only" msgstr "仅用于最小化/取消最小化" -msgid "Movement direction(s) for window pieces." -msgstr "窗口碎片的运动方向" - msgid "None" msgstr "无" -msgid "Number Of Fire Particles" -msgstr "火焰颗粒数量" - msgid "Number of Horizontal Folds" msgstr "水平折叠层数" -msgid "Number of fire particles." -msgstr "火焰颗粒数量。" - #, no-c-format msgid "Number of rotations for Sidekick (plus or minus 10% for randomness)." msgstr "插袋效果的旋转数量(将随机增减10%)" @@ -476,10 +314,10 @@ msgstr "开" msgid "On open/close, move magic lamp ending point with the mouse pointer." -msgstr "" +msgstr "在打开/关闭时,使神灯动画终点随鼠标指针移动。" msgid "On open/close, move vacuum ending point with the mouse pointer." -msgstr "" +msgstr "在打开/关闭时,使真空特效终点随鼠标指针移动。" msgid "Open Animation" msgstr "开启动画" @@ -493,15 +331,13 @@ msgid "Options" msgstr "选项" -msgid "Out" -msgstr "出" - msgid "Pool" msgstr "效果池" +#, fuzzy msgid "" "Pool of effects to be chosen from if Random effect is selected. Click reset " -"to restore full list." +"to use all effects." msgstr "如果选择了随机效果,则从此池中选用效果。点击重置则复原全特效列表。" msgid "Random" @@ -513,43 +349,20 @@ msgid "Random Effects" msgstr "随机效果" -msgid "Randomly Colored Fire" -msgstr "随机颜色火焰" - msgid "Ratio of gaps between dodge start times to focus duration." msgstr "" -msgid "Razr" -msgstr "" - -msgid "Razr Fold Opening Direction" -msgstr "" - -#, fuzzy -msgid "Rectangular" -msgstr "矩形光晕" - -msgid "Right" -msgstr "右" - msgid "Roll Up" msgstr "上滚" msgid "Rollup Fixed Interior" msgstr "" -msgid "Rotation Angle" -msgstr "转动角度" - -msgid "Rotation angle of animated window pieces (in degrees)." -msgstr "窗口碎片的转动角度(以角度为单位)" - -#, fuzzy msgid "Shade Animation" -msgstr "动画速度" +msgstr "收起动画" msgid "Shade Effect" -msgstr "" +msgstr "收起特效" msgid "Sidekick" msgstr "插袋特效" @@ -560,57 +373,20 @@ msgid "Sidekick Springiness" msgstr "插袋弹性" -msgid "Skewer" -msgstr "" - -#, fuzzy -msgid "Skewer Direction" -msgstr "飞雪方向" - -#, fuzzy -msgid "Spacing between beams." -msgstr "缩略图间距" - msgid "" "Starting width of open effect and ending width of close effect for Magic " "Lamp." -msgstr "" +msgstr "神灯特效开启效果的初始宽度以及关闭效果的结束宽度。" msgid "" "Starting width of open effect and ending width of close effect for Vacuum." -msgstr "" - -#, fuzzy -msgid "Tessellation Type" -msgstr "排列动画类型" - -msgid "Tessellation type for exploding window pieces." -msgstr "" - -msgid "Tessellation type for window pieces." -msgstr "" +msgstr "真空特效开启效果的初始宽度以及关闭效果的结束宽度。" msgid "" "The amount of time in milliseconds between each render of the animation. The " "higher the number, the jerkier the movements become." msgstr "" -msgid "" -"The amount of time in milliseconds between each render of the intense " -"animation (Ex. Burn, Beam). The higher the number, the jerkier the movements " -"become." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The animated window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" - msgid "The animation effect shown when closing a window." msgstr "当关闭窗口时显现的动画特效" @@ -624,17 +400,7 @@ msgstr "窗口最小化时显现的动画特效" msgid "The animation effect shown when shading a window." -msgstr "" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the height of the window." -msgstr "" - -msgid "" -"The exploding window will be split into pieces along a grid. Specify the " -"number of grid cells along the width of the window." -msgstr "" +msgstr "遮蔽窗口时显现的动画特效" msgid "The maximum amplitude (size of the waves) Magic Lamp will have." msgstr "神灯效果最大波幅(波动的大小)" @@ -649,58 +415,35 @@ "The number of horizontal folds that occur in the Horizontal Fold animation." msgstr "水平折叠动画中的水平折叠数量" -msgid "The wave amplitude (size of the waves) relative to the window height." -msgstr "波幅(波的大小)与窗口高度相关。" - msgid "The width of the wave relative to the window height." msgstr "波的宽度与窗口高度相关" msgid "The windows that will be animated." msgstr "将产生动画的窗口" -msgid "Thickness" -msgstr "厚度" - -msgid "Thickness of Animated Polygons" -msgstr "动画多边形的厚度" - -msgid "Thickness of Exploding Polygons" -msgstr "爆炸多边形的厚度" - -msgid "Thickness of animated window pieces (in pixels)." -msgstr "窗口碎片动画的厚度(以点为单位)" - -msgid "Thickness of exploding window pieces (in pixels)." -msgstr "爆炸窗口动画的厚度(以点为单位)" - -msgid "Up" -msgstr "上" - -#, fuzzy -msgid "Up-down" -msgstr "上/下" - msgid "Use various animations as window effects" -msgstr "使用不同的窗口动画效果" +msgstr "使用各种窗口动画效果" msgid "Vacuum" msgstr "真空特效" #, fuzzy msgid "Vacuum Grid Y Resolution" -msgstr "真空特效Y网格分辨率" +msgstr "真空特效网格Y分辨率" msgid "Vacuum Open Start Width" msgstr "真空打开特效起始宽度" msgid "Vacuum Open/Close Moving End" -msgstr "" +msgstr "真空特效打开/关闭的移动终点" msgid "" "Vertex grid resolution for Magic Lamp (Y dimension only). This is the number " "of points used to define the curves. The higher the number, the smoother the " "curves. However there will be a loss of performance (CPU usage increases)." msgstr "" +"神灯特效的矢量网格分辨率(仅限Y轴)。这是定义曲线的点的数值。较高的数值,曲线" +"更平滑,但会导致性能损失(CPU使用率增加)" msgid "" "Vertex grid resolution for Vacuum (Y dimension only). This is the number of " @@ -711,15 +454,17 @@ msgid "Wave" msgstr "波动特效" -msgid "Wave Amplitude" +#, fuzzy +msgid "Wave Amplitude Multiplier" msgstr "波幅" msgid "Wave Width" msgstr "波宽" msgid "" -"Whether the window should fly to taskbar when minimized with Airplane effect." -msgstr "使用纸飞机特效最小化时,窗口是否飞向任务栏" +"Wave amplitude (size) is multiplied by this number. Negative values fold " +"outward." +msgstr "波幅的倍数。负值将向外折叠。" msgid "" "Whether the window should zoom to taskbar when minimized with Curved Fold " @@ -743,29 +488,14 @@ "Folds effect." msgstr "使用水平折叠特效最小化时,窗口是否缩向任务栏" -msgid "Window Grid Height" -msgstr "窗口网格高度" - -msgid "Window Grid Width" -msgstr "窗口网格宽度" - -msgid "Window folding direction." -msgstr "窗口折叠方向" - msgid "Window that should animate with this effect when focused." msgstr "当获得焦点时使用此特效动画的窗口" msgid "Window that should animate with this effect when shaded." msgstr "当失去焦点时使用此特效动画的窗口" -msgid "" -"Window thickness in pixels. Setting this to larger than 0 will disable " -"shadow, blur, and reflection during the animation." -msgstr "" -"以点为单位的窗口厚度。当取值大于0时将禁用动画过程中的投影、模糊以及反射。" - msgid "Zoom" -msgstr "缩放特效" +msgstr "缩放" msgid "Zoom Springiness" msgstr "缩放弹性" @@ -786,20 +516,19 @@ msgstr "颜色" msgid "Cube Atlantis" -msgstr "" +msgstr "亚特兰蒂斯之盒" msgid "Dolphin size" -msgstr "" +msgstr "海豚尺寸" msgid "Dolphin size." -msgstr "" +msgstr "海豚的大小。" -#, fuzzy msgid "Enable colors" -msgstr "启用光晕" +msgstr "启用颜色" msgid "Fish size" -msgstr "鱼的大小" +msgstr "鱼的尺寸" msgid "Number of fish" msgstr "鱼的数量" @@ -811,13 +540,13 @@ msgstr "在透明立方体中渲染一些鱼" msgid "Shark size" -msgstr "鲨鱼的体形" +msgstr "鲨鱼的尺寸" msgid "Whale size" -msgstr "鲸鱼的体形" +msgstr "鲸鱼的尺寸" msgid "Whale size." -msgstr "鲸鱼的体形。" +msgstr "鲸鱼的大小。" msgid "A simple benchmark plugin" msgstr "一个简单的基准测试插件" @@ -829,113 +558,55 @@ msgstr "终端输出" msgid "Console output update time" -msgstr "终端输出刷新时间" +msgstr "控制台输出的更新时间" msgid "Disable Compiz integrated FPS limiter" -msgstr "禁用 Compiz 内置 FPS 限制" +msgstr "禁用 Compiz 内置 FPS 限制器" msgid "Disable limiter" -msgstr "取消限制" +msgstr "禁用限制器" msgid "Display FPS on screen" -msgstr "在屏幕上显示 FPS" +msgstr "在屏幕上显示 FPS(每秒帧数)" msgid "Enable" msgstr "启用" msgid "Initiate" -msgstr "启动" +msgstr "起始" msgid "Main" msgstr "主要设置" msgid "Print FPS to console" -msgstr "在终端输出 FPS" +msgstr "输出 FPS 到控制台" msgid "Screen Output" msgstr "屏幕输出" msgid "Start benchmark" -msgstr "开始测试" +msgstr "开始基准测试" msgid "Update time" msgstr "更新时间" msgid "X Position of benchmark window" -msgstr "测试窗口的 X 坐标" +msgstr "基准测试窗口的 X 坐标" msgid "X position" msgstr "X 坐标" msgid "Y Position of benchmark window" -msgstr "测试窗口的 Y 坐标" +msgstr "基准测试窗口的 Y 坐标" msgid "Y position" msgstr "Y 坐标" -msgid "Brightness Decrease" -msgstr "降低亮度" - -msgid "Brightness Increase" -msgstr "增加亮度" - -msgid "Brightness Step" -msgstr "亮度步进" - -msgid "Brightness and Saturation" -msgstr "亮度和饱和度" - -msgid "Brightness and Saturation adjustments" -msgstr "亮度和饱和度调节" - -msgid "Brightness settings" -msgstr "亮度设置" - -msgid "Brightness values for windows" -msgstr "窗口的亮度值" - -#, fuzzy -msgid "Brightness window values" -msgstr "淡出窗口的亮度" - -#, fuzzy -msgid "Brightness windows" -msgstr "淡出窗口的亮度" - -msgid "General" -msgstr "一般" - -msgid "Saturation Decrease" -msgstr "降低饱和度" - -msgid "Saturation Increase" -msgstr "增加饱和度" - -msgid "Saturation Step" -msgstr "饱和度步进" - -msgid "Saturation settings" -msgstr "饱和度设置" +msgid "Bicubic filter" +msgstr "双立方体过滤" -msgid "Saturation values for windows" -msgstr "窗口的饱和度值" - -#, fuzzy -msgid "Saturation window values" -msgstr "淡出窗口的饱和度" - -#, fuzzy -msgid "Saturation windows" -msgstr "淡出窗口的饱和度" - -msgid "Window specific" -msgstr "特定窗口" - -msgid "Windows that should have a different brightness by default" -msgstr "默认使用不同亮度的窗口" - -msgid "Windows that should have a different saturation by default" -msgstr "默认使用不同饱和度的窗口" +msgid "Bicubic texture filtering" +msgstr "双立方体纹理过滤" msgid "Color filter" msgstr "颜色滤镜" @@ -944,42 +615,44 @@ msgstr "排除窗口" msgid "Filter colors for accessibility purposes" -msgstr "" +msgstr "用于可访问性目的的滤镜颜色" #, fuzzy msgid "Filter window decorations" -msgstr "装饰映影" +msgstr "滤镜窗口装饰" #, fuzzy msgid "Filtered windows" -msgstr "窗口排列" +msgstr "滤过的窗口" msgid "Filters files" -msgstr "" +msgstr "滤镜文件" msgid "" "List of plain text filter files that should be applied when filtering " "windows or screen." -msgstr "" +msgstr "当过滤窗口哦人屏幕时应用的纯文本滤镜文件列表" msgid "" "Select filter to use from filters list : either apply all filters or only " "one specific filter (triggering this action switches filters one by one and " "eventually comes back to the \"all filters\" mode)." msgstr "" +"在滤镜列表中选择滤镜:应用所有滤镜或仅仅一个特别的滤镜(触发这个动作逐个切换" +"滤镜并最终返回“全部滤镜”模式)" msgid "Switch filter" msgstr "切换滤镜" msgid "Toggle filtering for currently focused window." -msgstr "开关当前窗口滤镜" +msgstr "当前窗口滤镜开关" msgid "Toggle filtering for every window on the screen." msgstr "开关当前屏幕所有窗口滤镜" #, fuzzy msgid "Toggle screen filtering" -msgstr "开关窗口排列" +msgstr "开关窗口过滤" #, fuzzy msgid "Toggle window filtering" @@ -1002,16 +675,16 @@ msgstr "激活崩溃处理。" msgid "Compiz crash handler plugin" -msgstr "Compiz 崩溃处理插件" +msgstr "Compiz崩溃处理插件" msgid "Crash Dump Directory" -msgstr "" +msgstr "崩溃转储目录" msgid "Crash handler" msgstr "崩溃处理" msgid "Directory to dump the crash logs to." -msgstr "" +msgstr "转储崩溃日志的目录" msgid "Enable Crash Handler" msgstr "启用崩溃处理" @@ -1026,7 +699,10 @@ msgstr "窗口管理器命令行" msgid "Window manager command line. DO NOT ENTER COMPIZ HERE!!!" -msgstr "窗口管理器命令行。(切勿填入 COMPIZ !!)" +msgstr "窗口管理器命令行。切勿在此输入Compiz!!!" + +msgid "Above" +msgstr "之上" msgid "Adjust bottom face image to rotation" msgstr "" @@ -1035,7 +711,7 @@ msgstr "" msgid "Adjust top face image to rotation" -msgstr "" +msgstr "调整顶部图像以旋转" msgid "Adjust top image" msgstr "" @@ -1049,6 +725,18 @@ msgid "Appearance" msgstr "外观" +msgid "Aspect ratio" +msgstr "外观比例" + +msgid "Aspect ratio of the deformed cube" +msgstr "变形了的立方体的外观比例" + +msgid "Auto zoom" +msgstr "自动缩放" + +msgid "Auto zoom only on Mouse Rotate" +msgstr "仅仅在鼠标转面时自动缩放" + msgid "Behaviour" msgstr "行为" @@ -1077,20 +765,61 @@ msgid "Color of bottom face of the cube" msgstr "" -msgid "Color of top face of the cube" -msgstr "" +msgid "Color of the ground (far)." +msgstr "背景颜色(远端)。" + +msgid "Color of the ground (near)." +msgstr "背景颜色(近端)。" + +msgid "Color of top face of the cube" +msgstr "" + +#, fuzzy +msgid "Compiz cube reflection and deformation" +msgstr "Compiz 立方体映影" #, fuzzy msgid "Cube Bottom Color" msgstr "标签边框颜色" -msgid "Cube Caps" -msgstr "" +#, fuzzy +msgid "Cube Reflection and Deformation" +msgstr "装饰映影" #, fuzzy msgid "Cube Top Color" msgstr "标签边框颜色" +msgid "Cube caps" +msgstr "立方体盖子" + +#, fuzzy +msgid "Cylinder" +msgstr "清除" + +#, fuzzy +msgid "Deform caps" +msgstr "持续时间" + +msgid "Deform cube caps." +msgstr "将立方体盖子变形。" + +#, fuzzy +msgid "Deform only on mouse rotate" +msgstr "仅仅在鼠标转面时自动缩放" + +msgid "Deformation" +msgstr "变形" + +msgid "Deformation in unfold cube mode." +msgstr "在展开立方体模式下变形。" + +msgid "Deformation mode." +msgstr "变形模式。" + +msgid "Distance" +msgstr "距离" + msgid "Draw bottom face" msgstr "" @@ -1103,12 +832,37 @@ msgid "Draw top face of the cube" msgstr "" +msgid "Enabled" +msgstr "已启用" + +#, fuzzy +msgid "Give cube a reflective ground." +msgstr "Compiz 立方体映影" + msgid "Go back to previous image for bottom face of the cube" msgstr "" msgid "Go back to previous image for top face of the cube" msgstr "" +msgid "Ground color(far)" +msgstr "背景颜色(远端)" + +msgid "Ground color(near)" +msgstr "背景颜色(近端)" + +msgid "Initiates cube cylinder deformation only if rotation is mouse driven." +msgstr "" + +msgid "Intensity" +msgstr "密度" + +msgid "Jumpy" +msgstr "跳动" + +msgid "Jumpy reflection" +msgstr "跳动映影" + msgid "" "List of PNG and SVG files that should be rendered on bottom face of cube" msgstr "" @@ -1116,6 +870,18 @@ msgid "List of PNG and SVG files that should be rendered on top face of cube" msgstr "" +msgid "Maintain bottom aspect ratio" +msgstr "" + +msgid "Maintain bottom cap image aspect ratio." +msgstr "" + +msgid "Maintain top aspect ratio" +msgstr "" + +msgid "Maintain top cap image aspect ratio." +msgstr "" + msgid "Next bottom image" msgstr "" @@ -1129,8 +895,23 @@ msgid "Prev top image" msgstr "" -msgid "Render images on top and bottom of the cube" -msgstr "" +msgid "Reflection" +msgstr "倒影" + +msgid "Reflection ground size" +msgstr "倒影背景尺寸" + +msgid "Reflection ground size." +msgstr "倒影背景尺寸。" + +msgid "Reflection intensity" +msgstr "倒影密度" + +msgid "Reflection mode" +msgstr "倒影模式" + +msgid "Reflection mode." +msgstr "倒影模式。" msgid "Scale bottom image" msgstr "" @@ -1145,233 +926,182 @@ msgstr "" #, fuzzy +msgid "Sphere" +msgstr "速度" + +#, fuzzy msgid "Top image files" msgstr "Logo 图像文件。" -msgid "Above" -msgstr "之上" +msgid "Unfold cube deformation" +msgstr "" -msgid "Auto zoom" -msgstr "自动缩放" +msgid "Zoom out automatically only on mouse rotate." +msgstr "仅在鼠标转面时自动缩小。" -msgid "Auto zoom only on Mouse Rotate" -msgstr "仅仅在鼠标转面时自动缩放" +#, fuzzy +msgid "Zoom out automatically to make the cube fit to the screen." +msgstr "自动缩小立方体以适合屏幕。" -msgid "Color of the ground (far)." -msgstr "基底远景色" +msgid "Cube Caps" +msgstr "立方体盖子" -msgid "Color of the ground (near)." -msgstr "基底近景色" +msgid "Render images on top and bottom of the cube" +msgstr "" +#, fuzzy msgid "Compiz cube reflection" -msgstr "Compiz 立方体映影" +msgstr "立方体倒映" msgid "Cube Reflection" msgstr "立方体倒映" -msgid "Distance" -msgstr "距离" - -msgid "Ground color(far)" -msgstr "基底远景色" - -msgid "Ground color(near)" -msgstr "基底近景色" - -msgid "Intensity" -msgstr "密度" - -msgid "Jumpy" -msgstr "跳动" - -msgid "Jumpy reflection" -msgstr "跳动映影" - -msgid "Reflection ground size" -msgstr "映影基底大小" - -msgid "Reflection ground size." -msgstr "映影基底大小。" - -msgid "Reflection intensity" -msgstr "映影密度" - -msgid "Reflection mode" -msgstr "映影模式" - -msgid "Reflection mode." -msgstr "映影模式。" - -msgid "Zoom out automatically only on mouse rotate." -msgstr "仅在鼠标转面时自动缩小。" - -#, fuzzy -msgid "Zoom out automatically to make the cube fit to the screen." -msgstr "自动缩小立方体以适合屏幕。" - msgid "Animation used when switching to expo mode" -msgstr "" +msgstr "切换至展览模式时使用的动画" msgid "Aspect Ratio" -msgstr "" +msgstr "外观比例" msgid "Button binding for drag & drop of windows" -msgstr "" +msgstr "拖拽窗口的按键绑定" msgid "Button binding to exit expo" -msgstr "" +msgstr "退出展览的按键绑定" msgid "Button binding to switch to next viewport in expo" -msgstr "" +msgstr "展览中切换到下一个视口的按键绑定" -#, fuzzy msgid "Curve" -msgstr "之上" +msgstr "弯曲" -#, fuzzy msgid "Curve strength" -msgstr "动态模糊强度。" - -#, fuzzy -msgid "Deformation" -msgstr "持续时间" +msgstr "弯曲强度" msgid "Deformation of the expo wall" -msgstr "" +msgstr "展览墙壁的变形方式" msgid "Distance between viewports" -msgstr "" +msgstr "视口间距" msgid "Distance of the expo wall" -msgstr "" +msgstr "展览墙壁的间距" msgid "Double click time" -msgstr "" +msgstr "双击时长" msgid "Drag&drop" -msgstr "" +msgstr "拖拽" -#, fuzzy msgid "Duration of the zoomout animation" -msgstr "排列动画时长(微秒)" +msgstr "放大动画的持续时间" msgid "Engage wall expo mode button binding" -msgstr "" +msgstr "预定墙壁展览模式的按钮绑定" msgid "Engage wall expo mode edge binding" -msgstr "" +msgstr "预定墙壁展览模式的边缘绑定" msgid "Engage wall expo mode key binding" -msgstr "" +msgstr "预定墙壁展览模式的按键绑定" msgid "Exit expo" -msgstr "" +msgstr "退出展览" msgid "Expo" -msgstr "" +msgstr "展览" -#, fuzzy msgid "Expo Animation" -msgstr "动画速度" +msgstr "展览动画" msgid "Expo Plugin" -msgstr "" +msgstr "展览插件" msgid "Expo button" -msgstr "" +msgstr "展览按钮" msgid "Expo edge" -msgstr "" +msgstr "展览边缘" msgid "Expo key" -msgstr "" +msgstr "展览按键" msgid "Expo mode aspect ratio" -msgstr "" +msgstr "展览模式外观比例" -#, fuzzy msgid "Fade + Zoom" -msgstr "淡入淡出时间" +msgstr "淡入淡出+缩放" msgid "Generate mipmaps in expo mode" -msgstr "" +msgstr "在展览模式中生成mipmaps" msgid "Hide panels/docks in expo" -msgstr "" +msgstr "在展览模式中隐藏面板/dock" msgid "Hide panels/docks in expo." -msgstr "" +msgstr "在展览模式中隐藏面板/dock。" msgid "Immediate moves" -msgstr "" +msgstr "立即移动" msgid "Inactive viewport brightness." -msgstr "" +msgstr "未被激活的视口的亮度。" msgid "Inactive viewport saturation." -msgstr "" +msgstr "未被几乎的哦额视口的饱和度。" -#, fuzzy msgid "Mipmaps" -msgstr "创建 Mipmap" +msgstr "Mipmaps" msgid "Multi Output Mode" -msgstr "" +msgstr "多重输出模式" msgid "Next viewport" -msgstr "" +msgstr "下一个视口" msgid "One big wall" -msgstr "" +msgstr "单一大墙壁" msgid "One wall per output" -msgstr "" +msgstr "每个输出一个墙壁" msgid "Previous viewport" -msgstr "" - -msgid "Reflection" -msgstr "映影" +msgstr "前一个视口" -#, fuzzy msgid "Reflection Scale" -msgstr "映影图像" +msgstr "倒影比例" msgid "Scale factor of the expo wall reflection" -msgstr "" +msgstr "展览墙壁倒影的比例因子" msgid "" "Selects how the expo wall is displayed if multiple output devices are used." -msgstr "" +msgstr "选择在使用多重输出设备时展览墙壁的显示方式。" msgid "" "Selects if windows movements in expo mode should be immediate - this among " "other things disables wobbliness" -msgstr "" +msgstr "选择在展览模式中的窗口是否立即移动──这尤其会禁用震颤效果" msgid "Show a reflection of the viewports on the ground" -msgstr "" +msgstr "在地板上显示视口的一个倒影" msgid "Strength of the deformation in curve mode" -msgstr "" +msgstr "弯曲模式中的变形强度" -#, fuzzy msgid "Tilt" -msgstr "窗口排列" +msgstr "倾斜" msgid "Timeframe to execute a double click" -msgstr "" +msgstr "执行一次双击的时间帧" -#, fuzzy msgid "Viewport distance" -msgstr "自顶至底" +msgstr "视口间距" msgid "Vortex" -msgstr "" +msgstr "旋涡" -#, fuzzy msgid "Zoom time" -msgstr "缩放" +msgstr "缩放时间" #, fuzzy msgid "Activate Demanding Attention Window" @@ -1387,7 +1117,7 @@ msgstr "" msgid "Extra WM Actions" -msgstr "其它窗口管理操作" +msgstr "附加窗口管理操作" msgid "Provides less commonly used WM actions" msgstr "提供不常用的窗口管理操作" @@ -1417,270 +1147,288 @@ msgstr "开关窗口置顶" msgid "Always fit to window on focus track" -msgstr "" +msgstr "聚焦追踪时总是符合窗口" msgid "" "Always keep the zoomed area in sync with where the mouse is, and vice versa. " "Use this if you don't intend to draw a scaled pointer or hide the original " "pointer. The zoomed area will move as you move your mouse." msgstr "" +"总是保持缩放区域与鼠标所在同步,反之一样。如果你不打算绘制按比例缩放的指针," +"或者隐藏原始的指针,请使用此功能。缩放的区域将会随着你的鼠标而移动。" -#, fuzzy msgid "Animation" -msgstr "动画速度" +msgstr "动画" msgid "" "Attempt to keep the zoomed mouse visible by warping it when it is moved " "outside the zoom area." -msgstr "" +msgstr "尽力保持被缩放的鼠标始终可见,当其被移动到缩放区域之外时弯曲之。" msgid "Center the mouse" -msgstr "" +msgstr "鼠标居中" + +#, fuzzy +msgid "Dynamic mouse pointer scale" +msgstr "按比例缩放鼠标指针" msgid "Enable focus tracking" -msgstr "" +msgstr "启用聚焦追踪" msgid "Enable this to get a gradually larger mouse pointer as you zoom in" -msgstr "" +msgstr "启用此功能来随着放大获得渐大的鼠标指针" msgid "" "Enable this to target the focused window when jumping to a specific zoom " "level. Disable to target mouse." msgstr "" +"启用此功能来在跳转到某个指定缩放级别时定位于聚焦的窗口。如禁用则定位于鼠标。" -#, fuzzy msgid "Enhanced Zoom Desktop" -msgstr "淡出到桌面" +msgstr "加强版缩放桌面" msgid "Enhanced zoom functions for the visually impaired and other users" -msgstr "" +msgstr "专为弱视及其他用户而加强的缩放功能" msgid "Filter Linear" -msgstr "" +msgstr "线性过滤" msgid "Fit the window to the zoom level" -msgstr "" +msgstr "使窗口尺寸符合缩放级别" msgid "" "Fit the zoomed area to the window when the zoomed area moves as a result of " "focus tracking." -msgstr "" +msgstr "当缩放的区域由于聚焦追踪而移动时,使其符合窗口尺寸。" msgid "" "Fit the zoomed area to the window when the zoomed area moves as a result of " "focus tracking. Even when not initially zoomed in." -msgstr "" +msgstr "当缩放的区域由于聚焦追踪而移动时使其符合窗口尺寸,即使初始时未被放大。" msgid "Fit zoom level to window on focus change" -msgstr "" +msgstr "聚焦改变时使缩放级别符合窗口尺寸" msgid "Fit zoomed area to window" -msgstr "" +msgstr "使缩放区域符合窗口尺寸" -#, fuzzy msgid "Fitting" -msgstr "设置" +msgstr "符合功能" msgid "Focus Tracking" -msgstr "" +msgstr "聚焦追踪" msgid "Follow Focus Delay" -msgstr "" +msgstr "跟随聚焦延迟" msgid "Hide original mouse pointer" -msgstr "" +msgstr "隐藏原来的鼠标指针" msgid "Hides the original mouse pointer when zoomed in and scaling the mouse" -msgstr "" +msgstr "放大时隐藏原来的鼠标指针并按比例放大鼠标" -msgid "" -"How often to poll the mouse position, in miliseconds. Reduce this to reduce " -"choppy behavior." -msgstr "" +msgid "Minimum zoom factor" +msgstr "最小缩放因子" -#, fuzzy msgid "Mouse Behaviour" -msgstr "行为" - -msgid "Mouse Poll Interval" -msgstr "" +msgstr "鼠标行为" msgid "Mouse Restrain Margin" -msgstr "" +msgstr "鼠标限定边界" msgid "Mouse panning" -msgstr "" +msgstr "鼠标镜头摇动" msgid "Move the zoom area when focus changes." -msgstr "" +msgstr "当聚焦改变时移动缩放区域" msgid "" "Move the zoomed area this much whenever you pan the zoomed area with keys." -msgstr "" +msgstr "每当使用按键摇动对准缩放区域的镜头时,将该缩放区域移动这么多。" msgid "" "Only attempt to center newly focused windows if the mouse hasn't moved in " "this amount of seconds. Use this to avoid jumping when using sloppy focus." msgstr "" +"如果鼠标在此秒数内没有移动,则仅尝试将新聚焦的窗口居中。用此功能来避免使用马" +"虎聚焦时引起的跳转。" msgid "Pan (move) the zoom area down" -msgstr "" +msgstr "向下摇动(移动)对准缩放区域的镜头" msgid "Pan (move) the zoom area left" -msgstr "" +msgstr "向左摇动(移动)对准缩放区域的镜头" msgid "Pan (move) the zoom area right" -msgstr "" +msgstr "向右摇动(移动)对准缩放区域的镜头" msgid "Pan (move) the zoom area up" -msgstr "" +msgstr "向上摇动(移动)对准缩放区域的镜头" msgid "Pan Factor" -msgstr "" +msgstr "摇动镜头因子" msgid "Pan Zoom Down" -msgstr "" +msgstr "向下摇动镜头" -#, fuzzy msgid "Pan Zoom Left" -msgstr "圆滑左底角" +msgstr "向左摇动镜头" -#, fuzzy msgid "Pan Zoom Right" -msgstr "圆滑右底角" +msgstr "向右摇动镜头" msgid "Pan Zoom Up" -msgstr "" +msgstr "向上摇动镜头" msgid "Pan the zoom area when the mouse cursor moves outside the visible area." -msgstr "" +msgstr "当鼠标光标移动到可见区域之外时,摇动对准缩放区域的镜头。" msgid "Panning" -msgstr "" +msgstr "摇动镜头" msgid "Puts the mouse in the middle of the screen (Regardless of zoom level)" -msgstr "" +msgstr "将鼠标置于屏幕中央(忽略缩放级别)" msgid "Resize the window so it matches the current zoom level." -msgstr "" +msgstr "调整窗口尺寸以使其与当前缩放级别匹配。" msgid "Restrain the mouse to the zoom area" -msgstr "" +msgstr "限制鼠标于缩放区域内" msgid "Scale the mouse pointer" -msgstr "" +msgstr "按比例缩放鼠标指针" msgid "Specific Zoom" -msgstr "" +msgstr "指定缩放" msgid "Specific zoom factor 1" -msgstr "" +msgstr "指定缩放因子1" msgid "Specific zoom factor 2" -msgstr "" +msgstr "指定缩放因子2" msgid "Specific zoom factor 3" -msgstr "" +msgstr "指定缩放因子3" msgid "Speed" msgstr "速度" +#, fuzzy +msgid "Static mouse pointer scale" +msgstr "按比例缩放鼠标指针" + msgid "Sync Mouse" -msgstr "" +msgstr "同步鼠标" msgid "Target Focused Window on Specific level" -msgstr "" +msgstr "指定级别下定位聚焦的窗口" + +msgid "" +"The minimum allowed zoom factor. A value of 0.5 equals 2x zoom, a value of " +"0.25 equals 4x zoom." +msgstr "所允许的最小缩放因子。0.5等于2倍缩放,0.25等于4倍缩放。" msgid "The size of the margin to add when attempting to restrain the mouse." -msgstr "" +msgstr "当试图限制鼠标时所加的边界尺寸。" msgid "Timestep" -msgstr "步长" +msgstr "时间步长" msgid "Toggle zoom area lock" -msgstr "" +msgstr "触发缩放区域锁定" msgid "Toggles a lock on the zoom area so it doesn't change on various events" -msgstr "" +msgstr "触发对缩放区域的锁定以使其不会因各类事件而改变" msgid "Use linear filter when zoomed in" +msgstr "放大时使用线性过滤" + +msgid "" +"When not using a dynamic mouse pointer scale, this is the scale factor for " +"the mouse pointer." msgstr "" -msgid "Zoom Area Movement" +msgid "" +"When scaling the mouse pointer, this option makes the scale adjust according " +"to the current level of zoom." msgstr "" -#, fuzzy +msgid "Zoom Area Movement" +msgstr "缩放区域移动" + +msgid "Zoom Box" +msgstr "缩放盒" + msgid "Zoom In" -msgstr "缩放" +msgstr "放大" -#, fuzzy msgid "Zoom In/Out" -msgstr "缩放" +msgstr "放大/缩小" -#, fuzzy msgid "Zoom Out" -msgstr "缩放" +msgstr "缩小" msgid "Zoom Specific Level 1" -msgstr "" +msgstr "缩放指定级别1" msgid "Zoom Specific Level 2" -msgstr "" +msgstr "缩放指定级别2" msgid "Zoom Specific Level 3" -msgstr "" +msgstr "缩放指定级别3" -#, fuzzy msgid "Zoom Speed" -msgstr "飞雪速度" +msgstr "缩放速度" -#, fuzzy msgid "Zoom Timestep" -msgstr "步长" +msgstr "缩放时间步长" msgid "Zoom factor" -msgstr "" +msgstr "缩放因子" + +msgid "Zoom in on a boxed area" +msgstr "放大某一矩形区域" msgid "Zoom in/out by this factor. Higher value means quicker zooming." -msgstr "" +msgstr "根据此因子放大/缩小。更高的值代表更快的缩放。" msgid "Zoom level to go to when triggering hotkey 1" -msgstr "" +msgstr "触发热键1时的缩放级别" msgid "Zoom level to go to when triggering hotkey 2" -msgstr "" +msgstr "触发热键2时的缩放级别" msgid "Zoom level to go to when triggering hotkey 3" -msgstr "" +msgstr "触发热键3时的缩放级别" msgid "Zoom to the specific zoom level 1" -msgstr "" +msgstr "缩放至指定的缩放级别1" msgid "Zoom to the specific zoom level 2" -msgstr "" +msgstr "缩放至指定的缩放级别2" msgid "Zoom to the specific zoom level 3" -msgstr "" +msgstr "缩放至指定的缩放级别3" msgid "" "Zooms in/out so the focused window is zoomed to the maximum while still " "being fully visible." -msgstr "" +msgstr "放大/缩小以使聚焦的窗口被缩放至最大,同时仍然完全可见。" msgid "Easily access your desktop" -msgstr "快速回到桌面" +msgstr "方便地访问你的桌面" msgid "Fade Time" -msgstr "淡入淡出时间" +msgstr "淡出时间" msgid "Fade time (in ms)" -msgstr "淡入淡出时间(微妙)" +msgstr "淡出时间(微秒)" msgid "Fade to Desktop" msgstr "淡出到桌面" msgid "Windows that should be faded to desktop" -msgstr "需要淡出到桌面的窗口" +msgstr "应淡出到桌面的窗口" msgid "Alter window opacity based on color." msgstr "基于颜色改变窗口不透明度。" @@ -1694,50 +1442,84 @@ msgid "Toggle window fake ARGB." msgstr "开关窗口仿 ARGB。" +#, fuzzy +msgid "Add Particle" +msgstr "火焰颗粒周期" + +msgid "Adds a fire particle at position (x,y), where x and y are floats." +msgstr "" + msgid "Background brightness" msgstr "背景亮度" msgid "Background brightness during paint" -msgstr "火焰神笔绘画时的背景亮度" +msgstr "绘制火焰时的背景亮度" msgid "Clear" msgstr "清除" msgid "Clear (button)" -msgstr "" +msgstr "清除(按钮)" -#, fuzzy msgid "Clear (key)" -msgstr "清除" +msgstr "清除(按键)" + +msgid "Fire Particle Color" +msgstr "火焰粒子颜色" + +msgid "Fire Particle Life" +msgstr "火焰粒子存留周期" + +msgid "Fire Particle Size" +msgstr "火焰颗粒尺寸" + +msgid "Fire Particle Slowdown" +msgstr "火焰粒子减速" + +msgid "Fire particle color." +msgstr "火焰粒子的颜色。" + +msgid "Fire particle life." +msgstr "火焰粒子的存留时间。" + +msgid "Fire particle size." +msgstr "火焰粒子的大小。" + +msgid "Fire particle slowdown." +msgstr "火焰粒子减速。" + +msgid "Have random colors for the fire effect, also known as Mystical Fire." +msgstr "为火焰随机选取颜色,亦称之为神秘火焰。" -#, fuzzy msgid "Initiate (button)" -msgstr "启动" +msgstr "启动(按钮)" -#, fuzzy msgid "Initiate (key)" -msgstr "启动" +msgstr "启动(按键)" msgid "Initiate fire drawing" msgstr "启动火焰绘制" msgid "Maximum number of active particles" -msgstr "活动颗粒最大数量" +msgstr "有效粒子的最大数量" msgid "Number of particles" -msgstr "颗粒数量" +msgstr "粒子数量" msgid "Paint fire on the screen" msgstr "在屏幕上绘制火焰" msgid "Paint fire or other particles on the screen" -msgstr "在屏幕上绘制火焰或其它颗粒" +msgstr "在屏幕上绘制火焰或其它粒子" + +msgid "Randomly Colored Fire" +msgstr "随机颜色火焰" msgid "Cube Gears" -msgstr "" +msgstr "立方体齿轮" msgid "Render gears inside of the transparent cube" -msgstr "" +msgstr "在透明立方体内渲染齿轮" msgid "Animation Options" msgstr "动画选项" @@ -1823,6 +1605,9 @@ msgid "Font Size" msgstr "字体大小" +msgid "General" +msgstr "常规" + msgid "Glass" msgstr "毛玻璃" @@ -1910,7 +1695,7 @@ msgstr "忽略组合" msgid "Key bindings" -msgstr "按键组合" +msgstr "按键绑定" msgid "Line Color" msgstr "线条颜色" @@ -2086,7 +1871,7 @@ msgstr "组合窗口光晕大小" msgid "The size of the window thumbs in the task bar" -msgstr "任务栏中缩略图大小" +msgstr "在任务栏中的窗口缩略图大小" msgid "The size of the window title font in the tab bar" msgstr "标签栏中窗口标题字体大小" @@ -2151,97 +1936,82 @@ msgstr "弹性模型的距离 Y" msgid "Compression Quality" -msgstr "" +msgstr "压缩质量" msgid "JPEG" -msgstr "" +msgstr "JPEG" msgid "JPEG image format plugin" -msgstr "" +msgstr "JPEG图像格式插件" msgid "Quality of compression when saving JPEG images" -msgstr "" +msgstr "保存JPEG图像时的压缩质量" -#, fuzzy msgid "Background/Window brightness." -msgstr "背景亮度。" +msgstr "背景/窗口的亮度。" -#, fuzzy msgid "Background/Window saturation." -msgstr "背景饱和度。" +msgstr "背景/窗口的饱和度。" -#, fuzzy msgid "Fade In/Out Time" -msgstr "淡入淡出时长" +msgstr "淡入淡出时间" msgid "Fade In/Out Time." -msgstr "淡入淡出时长" +msgstr "淡入淡出的时间。" msgid "Login" -msgstr "" +msgstr "登录" -#, fuzzy msgid "Login Window Match" -msgstr "窗口匹配" +msgstr "登录窗口匹配" -#, fuzzy msgid "Login Window match" -msgstr "窗口匹配" +msgstr "登录窗口匹配" msgid "Login/Logout" -msgstr "" +msgstr "登录/注销" msgid "Login/Logout effect" -msgstr "" +msgstr "登录/注销特效" msgid "Logout" -msgstr "" +msgstr "注销" -#, fuzzy msgid "Logout Window Match" -msgstr "组合窗口匹配" +msgstr "注销窗口匹配" -#, fuzzy msgid "Logout Window match" -msgstr "窗口匹配" +msgstr "注销窗口匹配" -#, fuzzy msgid "Window opacity." -msgstr "窗口不透明度" +msgstr "窗口不透明度。" -#, fuzzy msgid "Border color" msgstr "标签边框颜色" -#, fuzzy msgid "Border width" msgstr "边框宽度" -#, fuzzy msgid "Border widtht." -msgstr "边框宽度" +msgstr "边框宽度。" msgid "Box height." -msgstr "" +msgstr "盒高度。" -#, fuzzy msgid "Box width." -msgstr "边框宽度" +msgstr "盒宽度。" -#, fuzzy msgid "Clip mask" -msgstr "创建 Mipmap" +msgstr "" msgid "Clip mask." msgstr "" -#, fuzzy msgid "Fisheye" -msgstr "鱼的大小" +msgstr "鱼眼效果" -#, fuzzy msgid "Height" -msgstr "右" +msgstr "高" msgid "Image overlay" msgstr "" @@ -2337,105 +2107,110 @@ msgstr "激活" msgid "Execute Motion Blur if the screen is transformed." -msgstr "如果屏幕显示变形,为之执行动态模糊。" +msgstr "如果屏幕变形则为之执行运动朦胧。" msgid "Motion Blur Strength" -msgstr "动态模糊强度" +msgstr "运动朦胧强度" msgid "Motion Blur mode" -msgstr "动态模糊模式" +msgstr "运动朦胧模式" msgid "Motion Blur on Transformed Screen" -msgstr "动态模糊变形的屏幕显示" +msgstr "形变屏幕上的运动朦胧" msgid "Motion Blur render mode." -msgstr "动态模糊渲染模式。" +msgstr "运动朦胧的渲染模式。" msgid "Motion Blur strength." -msgstr "动态模糊强度。" +msgstr "运动朦胧的强度。" msgid "Motion blur" -msgstr "动态模糊" +msgstr "运动朦胧" msgid "Motion blur effect" -msgstr "动态模糊效果" +msgstr "运动朦胧效果" msgid "Texture Copy" msgstr "纹理复制" msgid "Toggle Motion Blur" -msgstr "开关动态模糊" +msgstr "触发运动朦胧" msgid "Toggle motion Blur effect." -msgstr "开关动态模糊效果" +msgstr "触发运动朦胧效果。" msgid "Visibility/Performance" msgstr "可视性/性能" -#, fuzzy msgid "Action" -msgstr "动画速度" +msgstr "动作" msgid "Action that is to be invoked." -msgstr "" +msgstr "调用的动作。" msgid "Assign mousegestures to any existing action" -msgstr "" +msgstr "将鼠标手势分配给任一已有动作" msgid "Detect Diagonal Movements" -msgstr "" +msgstr "监测斜线移动" -#, fuzzy msgid "Gesture" -msgstr "纹理" +msgstr "手势" msgid "Gesture assignment" -msgstr "" +msgstr "手势分配" -#, fuzzy msgid "Gestures" -msgstr "纹理" +msgstr "手势" msgid "" "If this option is selected, diagonal movements are detected, which may lead " "to a decreased detection accuracy." -msgstr "" +msgstr "如果本选项被选中,则会监测斜线移动,这可能会导致监测精确度的下降。" msgid "Mouse gesture to assign an action to." -msgstr "" +msgstr "分配给动作的鼠标手势。" msgid "Mousegestures" -msgstr "" +msgstr "鼠标手势" msgid "Plugin" -msgstr "" +msgstr "插件" msgid "Plugin the action belongs to." -msgstr "" +msgstr "该动作所属的插件。" msgid "Start gesture" -msgstr "" +msgstr "开始手势" + +msgid "" +"How often to poll the mouse position, in miliseconds. Reduce this to reduce " +"choppy behavior." +msgstr "以毫秒为单位,多长时间轮询一次鼠标位置。减少此值可减少不连贯的行为。" msgid "Misc" -msgstr "" +msgstr "杂项" + +msgid "Mouse Poll Interval" +msgstr "鼠标轮询间隔" msgid "Mouse position polling" -msgstr "" +msgstr "鼠标位置轮询" msgid "Updates the mouse pointer position from the xserver" -msgstr "" +msgstr "从xserver更新鼠标指针位置" msgid "Begin Gesture" -msgstr "" +msgstr "开始手语" msgid "Begin Mouse Gesture" -msgstr "" +msgstr "开始鼠标手语" msgid "Mouse switch" -msgstr "" +msgstr "鼠标切换" msgid "Switch viewport in response to mouse gesture" -msgstr "" +msgstr "根据鼠标手语切换视口" msgid "Also negate window decorations, not only the window contents." msgstr "" @@ -2486,38 +2261,36 @@ msgstr "调试" msgid "Display errors and other messages using libnotify." -msgstr "" +msgstr "使用libnotify来显示错误和其他信息。" msgid "Error" -msgstr "" +msgstr "错误" msgid "Error Notifications" -msgstr "" +msgstr "错误通知" -#, fuzzy msgid "Fatal" -msgstr "金属" +msgstr "致命错误" -#, fuzzy msgid "Hide Timeout" -msgstr "淡入淡出时间" +msgstr "超时隐藏" msgid "Info" -msgstr "" +msgstr "信息" msgid "Maximum Log Level" -msgstr "" +msgstr "最高日志级别" msgid "The maximum log level to display" -msgstr "" +msgstr "显示的最高日志级别" msgid "" "Timeout (in seconds) before hiding the notification, set to -1 for system " "default and 0 for indefinite" -msgstr "" +msgstr "隐藏通知之前的时长(毫秒),-1为系统默认值,0为无穷" msgid "Warning" -msgstr "" +msgstr "警告" #, fuzzy msgid "Active Opacity" @@ -2615,19 +2388,17 @@ "usually when you start Compiz." msgstr "" -#, fuzzy msgid "Animation speed" msgstr "动画速度" -#, fuzzy msgid "Animation timestep" -msgstr "动画选项" +msgstr "动画时间步长" msgid "Avoid Offscreen" -msgstr "" +msgstr "避免出屏" msgid "Avoids putting window borders offscreen" -msgstr "" +msgstr "避免安放窗口边框出屏" msgid "Move window arbitrarily by passing x, y and type." msgstr "" @@ -2637,94 +2408,85 @@ #, fuzzy msgid "Move window to the bottom edge" -msgstr "将每个窗口移入组合" +msgstr "移动窗口到底边" -#, fuzzy msgid "Move window to the bottom left corner" -msgstr "圆滑左底角" +msgstr "移动窗口到底边左角" -#, fuzzy msgid "Move window to the bottom right corner" -msgstr "圆滑右底角" +msgstr "移动窗口到底边右角" -#, fuzzy msgid "Move window to the center" -msgstr "将每个窗口移入组合" +msgstr "移动窗口到中心" msgid "Move window to the last position" -msgstr "" +msgstr "移动窗口到上一次位置" -#, fuzzy msgid "Move window to the left edge" -msgstr "将每个窗口移入组合" +msgstr "移动窗口到左边缘" msgid "Move window to the pointer position" -msgstr "" +msgstr "移动窗口到指针位置" -#, fuzzy msgid "Move window to the right edge" -msgstr "将每个窗口移入组合" +msgstr "移动窗口到右边缘" -#, fuzzy msgid "Move window to the top edge" -msgstr "将每个窗口移入组合" +msgstr "移动窗口到顶边缘" -#, fuzzy msgid "Move window to the top left corner" -msgstr "圆滑左底角" +msgstr "移动窗口到顶部左角" -#, fuzzy msgid "Move window to the top right corner" -msgstr "圆滑右底角" +msgstr "移动窗口到顶部右角" msgid "Move window to the viewport on the bottom" -msgstr "" +msgstr "移动窗口到底部的视口" msgid "Move window to the viewport on the left" -msgstr "" +msgstr "移动窗口到左边的视口" msgid "Move window to the viewport on the right" -msgstr "" +msgstr "移动窗口到右边的视口" -#, fuzzy msgid "Move window to the viewport on the top" -msgstr "将每个窗口移入组合" +msgstr "移动窗口到顶部的视口" msgid "Move window to viewport 1" -msgstr "" +msgstr "移动窗口只视口1" msgid "Move window to viewport 10" -msgstr "" +msgstr "移动窗口只视口10" msgid "Move window to viewport 11" -msgstr "" +msgstr "移动窗口只视口11" msgid "Move window to viewport 12" -msgstr "" +msgstr "移动窗口只视口12" msgid "Move window to viewport 2" -msgstr "" +msgstr "移动窗口只视口2" msgid "Move window to viewport 3" -msgstr "" +msgstr "移动窗口只视口3" msgid "Move window to viewport 4" -msgstr "" +msgstr "移动窗口只视口4" msgid "Move window to viewport 5" -msgstr "" +msgstr "移动窗口只视口5" msgid "Move window to viewport 6" -msgstr "" +msgstr "移动窗口只视口6" msgid "Move window to viewport 7" -msgstr "" +msgstr "移动窗口只视口7" msgid "Move window to viewport 8" -msgstr "" +msgstr "移动窗口只视口8" msgid "Move window to viewport 9" -msgstr "" +msgstr "移动窗口只视口9" msgid "" "Number of pixels from the bottom edge where the window will come to rest" @@ -2758,7 +2520,7 @@ msgstr "" msgid "Put" -msgstr "" +msgstr "安放" #, fuzzy msgid "Put Bottom" @@ -2780,46 +2542,46 @@ msgstr "左" msgid "Put On Viewport" -msgstr "" +msgstr "安放于视口" msgid "Put On Viewport 1" -msgstr "" +msgstr "安放于视口1" msgid "Put On Viewport 10" -msgstr "" +msgstr "安放于视口10" msgid "Put On Viewport 11" -msgstr "" +msgstr "安放于视口11" msgid "Put On Viewport 12" -msgstr "" +msgstr "安放于视口12" msgid "Put On Viewport 2" -msgstr "" +msgstr "安放于视口2" msgid "Put On Viewport 3" -msgstr "" +msgstr "安放于视口3" msgid "Put On Viewport 4" -msgstr "" +msgstr "安放于视口4" msgid "Put On Viewport 5" -msgstr "" +msgstr "安放于视口5" msgid "Put On Viewport 6" -msgstr "" +msgstr "安放于视口6" msgid "Put On Viewport 7" -msgstr "" +msgstr "安放于视口7" msgid "Put On Viewport 8" -msgstr "" +msgstr "安放于视口8" msgid "Put On Viewport 9" -msgstr "" +msgstr "安放于视口9" msgid "Put Pointer" -msgstr "" +msgstr "安放指针" #, fuzzy msgid "Put Right" @@ -2881,93 +2643,84 @@ msgstr "窗口标题字体" msgid "Alpha Dependence Threshold" -msgstr "Alpha 独立性阈值" +msgstr "Alpha独立性阈值" msgid "Alpha dependence threshold." -msgstr "Alpha 独立性阈值。" +msgstr "Alpha独立性阈值。" msgid "Draw Reflection for decorations." -msgstr "为装饰绘制映影。" +msgstr "为装饰绘制倒影。" msgid "Draw Reflection for windows." -msgstr "为窗口绘制映影。" +msgstr "为窗口绘制倒影。" msgid "Draws reflections" -msgstr "绘制映影" +msgstr "绘制倒影" msgid "Move the reflection on window move." -msgstr "窗口移动时出现映影。" +msgstr "倒影跟随窗口移动而移动。" msgid "Moving reflection" -msgstr "移动映影" +msgstr "移动倒影" msgid "Reflection Image" -msgstr "映影图像" +msgstr "倒影图像" msgid "Reflection Image file" -msgstr "映影图像文件" +msgstr "倒影图像文件" msgid "Reflection Window Match" -msgstr "映影窗口匹配" +msgstr "倒影窗口匹配" msgid "Reflection for Decorations" -msgstr "装饰映影" +msgstr "装饰倒影" msgid "Reflection for Windows" -msgstr "窗口映影" +msgstr "窗口倒影" msgid "Window match" msgstr "窗口匹配" -#, fuzzy msgid "Color 1 of the gradient background." -msgstr "基底远景色" +msgstr "渐变背景颜色1。" -#, fuzzy msgid "Color 2 of the gradient background." -msgstr "基底远景色" +msgstr "渐变背景颜色2。" -#, fuzzy msgid "Color 3 of the gradient background." -msgstr "基底远景色" +msgstr "渐变背景颜色3。" -#, fuzzy msgid "Color of text on resize popup." -msgstr "基底远景色" +msgstr "弹出的改变大小窗口的文本颜色。" msgid "Display info on resize similar to metacity" -msgstr "" +msgstr "类似metacity般显示改变窗口大小的信息" -#, fuzzy msgid "Fade time (in ms) for popup window" -msgstr "淡入淡出时间(微妙)" +msgstr "弹出窗口的淡入淡出时间(微妙)" -#, fuzzy msgid "Gradient Color 1" -msgstr "渐变" +msgstr "渐变颜色1" -#, fuzzy msgid "Gradient Color 2" -msgstr "渐变" +msgstr "渐变颜色2" -#, fuzzy msgid "Gradient Color 3" -msgstr "渐变" +msgstr "渐变颜色3" msgid "Resize Info" -msgstr "" +msgstr "调整大小信息" msgid "" "Show resize info for all windows as opposed to just windows with a resize " "increment of greater than 1." -msgstr "" +msgstr "为所有的窗口显示改变大小信息,而不是仅仅为大小改变幅度超过1的窗口。" -#, fuzzy msgid "Show resize info for all windows." -msgstr "为窗口绘制映影。" +msgstr "为所有窗口显示改变大小信息。" msgid "Text color." -msgstr "" +msgstr "文本颜色。" #, fuzzy msgid "Above ring" @@ -2986,13 +2739,11 @@ "Amount of opacity (in percent) for windows in the ring which are not selected" msgstr "" -#, fuzzy msgid "Background Color" -msgstr "背景文件" +msgstr "背景颜色" -#, fuzzy msgid "Background color for the window title" -msgstr "标签栏中窗口标题颜色" +msgstr "窗口标题的背景颜色" #, fuzzy msgid "Below ring" @@ -3002,7 +2753,7 @@ msgstr "" msgid "Bold Font" -msgstr "" +msgstr "粗体字体" #, fuzzy msgid "Centered on screen" @@ -3018,12 +2769,11 @@ "windows are, the smaller are they." msgstr "" -#, fuzzy msgid "Darken Background" -msgstr "背景文件" +msgstr "暗化背景" msgid "Darken background when showing the ring" -msgstr "" +msgstr "当显示环时,暗化背景" #, fuzzy msgid "Emblem" @@ -3042,26 +2792,25 @@ msgstr "窗口不透明度" msgid "Maximum horizontal size of a thumbnail in the ring" -msgstr "" +msgstr "最大环上缩略图水平尺寸" msgid "Maximum vertical size of a thumbnail in the ring" -msgstr "" +msgstr "最大环上缩略图垂直尺寸" msgid "Minimum Brightness Factor" -msgstr "" +msgstr "最小亮度因子" msgid "Minimum Scale Factor" -msgstr "" +msgstr "最小缩放因子" -#, fuzzy msgid "Next Window" -msgstr "排列窗口" +msgstr "下一个窗口" msgid "Next Window (All Workspaces)" -msgstr "" +msgstr "下一个窗口(所有工作区)" msgid "Next Window (Group)" -msgstr "" +msgstr "下一个窗口(组)" msgid "Overlay Icon" msgstr "" @@ -3070,317 +2819,307 @@ msgid "Overlay an icon on windows in the ring" msgstr "关闭组合中所有窗口的键。" -#, fuzzy msgid "Previous Window" -msgstr "组合窗口" +msgstr "前窗口" msgid "Previous Window (All Workspaces)" -msgstr "" +msgstr "前窗口(所有工作区)" msgid "Previous Window (Group)" -msgstr "" +msgstr "前窗口(组)" -#, fuzzy msgid "Ring Height" -msgstr "右" +msgstr "环高" msgid "Ring Switcher" -msgstr "" +msgstr "环形切换器" -#, fuzzy msgid "Ring Width" -msgstr "窗口宽度" +msgstr "环宽" #, fuzzy msgid "Ring Windows" -msgstr "排列窗口" +msgstr "环窗口" -#, fuzzy msgid "Ring appearance" -msgstr "外观" +msgstr "环外观" msgid "Ring height (in percent of the screen height)" -msgstr "" +msgstr "环高(屏高百分比)" -#, fuzzy msgid "Ring speed" -msgstr "标签速度" +msgstr "环速度" -#, fuzzy msgid "Ring timestep" -msgstr "标签步长" +msgstr "环步长" msgid "Ring width (in percent of the screen width)" -msgstr "" +msgstr "环宽(屏宽的百分比)" msgid "Rotate Ring Clockwise on Next" -msgstr "" +msgstr "顺时针转环的下一个" msgid "Rotate ring clockwise for next window instead of counterclockwise" -msgstr "" +msgstr "顺时针转环以替代逆时针" msgid "Selects if the window title should be displayed in bold font or not." -msgstr "" +msgstr "选择是否应粗体显示窗口标题" msgid "Selects where to place the window title." -msgstr "" +msgstr "选择何处设置窗口标题" msgid "Show Minimized" -msgstr "" +msgstr "显示最小化" -#, fuzzy msgid "Show Window Title" -msgstr "窗口标题字体" +msgstr "显示窗口标题" msgid "" "Show switcher if not visible and select next window of the current " "application." -msgstr "" +msgstr "如果不可见,显示切换器并选择当前应用程序的下一个窗口。" msgid "Show switcher if not visible and select next window out of all windows." -msgstr "" +msgstr "如果不可见,显示切换器并选择来自所有窗口的下一个窗口。" msgid "Show switcher if not visible and select next window." -msgstr "" +msgstr "如果不可见,显示切换器并选择下一个窗口。" msgid "" "Show switcher if not visible and select previous window of the current " "application." -msgstr "" +msgstr "如果不可见,显示切换器并选择当前应用程序的前一个窗口" msgid "" "Show switcher if not visible and select previous window out of all windows." -msgstr "" +msgstr "如果不可见,显示切换器并选择来自所有窗口的前一个窗口。" msgid "Show switcher if not visible and select previous window." -msgstr "" +msgstr "如果不可见,显示切换器并选择前一个窗口。" msgid "Show window title of currently selected window." -msgstr "" +msgstr "显示当前选中的窗口的标题。" msgid "Show windows that are minimized, shaded or in show desktop mode." msgstr "" msgid "Text Placement" -msgstr "" +msgstr "文本设置" msgid "Thumbnail Height" -msgstr "" +msgstr "缩略图高" msgid "Thumbnail Width" -msgstr "" +msgstr "缩略图宽" -#, fuzzy msgid "Window title display" -msgstr "窗口标题字体" +msgstr "窗口标题显示" -#, fuzzy msgid "Windows that should be shown in ring" -msgstr "使用 3D 的窗口" +msgstr "应于环中显示的窗口" -#, fuzzy msgid "All windows" -msgstr "窗口排列" +msgstr "全部窗口" -#, fuzzy msgid "Background color of the window title" -msgstr "标签栏中窗口标题颜色" +msgstr "窗口标题的背景颜色" -#, fuzzy -msgid "Close Windows In Scale" -msgstr "纵向排列窗口" +msgid "Close Window" +msgstr "关闭窗口" + +msgid "Close window while in scale mode" +msgstr "在比例模式中时关闭窗口" -#, fuzzy msgid "Close windows while in scale mode" -msgstr "立方体转面时浮起的窗口" +msgstr "在比例模式中时关闭窗口" msgid "Color used for highlighting the hovered window" -msgstr "" +msgstr "高亮鼠标悬停窗口所使用的颜色" + +msgid "Constrain Pull To Screen" +msgstr "强制拖拽至屏幕" -#, fuzzy msgid "Draw Window Highlight" -msgstr "绘制窗口背面" +msgstr "绘制窗口高亮" + +msgid "Exit Scale On Pull" +msgstr "拖拽时退出比例模式" + +msgid "Exit scale mode after a window has been pulled." +msgstr "窗口被拖拽后退出比例模式。" -#, fuzzy msgid "Font color of the window title" -msgstr "标签栏中窗口标题颜色" +msgstr "窗口标题的字体颜色" msgid "Font size for window title display" -msgstr "" +msgstr "窗口标题显示的字体大小" -#, fuzzy msgid "Highlight Color" -msgstr "标签高亮颜色" +msgstr "高亮颜色" -#, fuzzy msgid "Highlighted window only" -msgstr "窗口排列" +msgstr "仅显示高亮的窗口" msgid "Highlights the hovered window with the given color" -msgstr "" +msgstr "以给定的颜色高亮显示被鼠标悬停的窗口" + +msgid "" +"Make sure windows are fully visible after pulling them to another viewport" +msgstr "确保窗口在拖拽至另一个视口时完全可见" -#, fuzzy msgid "No display" -msgstr "窗口标题字体" +msgstr "无显示" msgid "Normal" -msgstr "" +msgstr "普通" -#, fuzzy msgid "Organic - EXPERIMENTAL" -msgstr "窗口合并(实验性)" +msgstr "有组织式──实验性" + +msgid "Pull Window" +msgstr "拖拽窗口" + +msgid "Pull window to current viewport while in scale mode" +msgstr "在比例模式下拖拽窗口至当前视口" msgid "Scale Addons" -msgstr "" +msgstr "比例扩展" msgid "Selects the mode to layout the windows in scale mode" -msgstr "" +msgstr "选择在比例模式下的窗口布局模式" -#, fuzzy msgid "Size of the border around the window title" -msgstr "组合窗口光晕大小" +msgstr "窗口标题四周的边界大小" msgid "Some useful additions to the scale plugin" -msgstr "" +msgstr "一些有用的比例插件扩展" msgid "Title Border Size" -msgstr "" +msgstr "标题边界大小" msgid "Use bold font for window title display" -msgstr "" +msgstr "为窗口标题显示使用粗题字体" -#, fuzzy msgid "Window Highlight" -msgstr "窗口宽度" +msgstr "高亮窗口" -#, fuzzy msgid "Window Layout Mode" -msgstr "窗口部件大小" +msgstr "窗口布局模式" + +msgid "Window Pull" +msgstr "窗口拖拽" -#, fuzzy msgid "Window Title" -msgstr "窗口标题字体" +msgstr "窗口标题" -#, fuzzy msgid "Window Title Display" -msgstr "窗口标题字体" +msgstr "窗口标题显示" -#, fuzzy msgid "Window title display in scale mode" -msgstr "窗口标题字体" +msgstr "比例模式下的窗口标题显示" -#, fuzzy -msgid "Zoom Windows In Scale" -msgstr "窗口间隔" +msgid "Zoom Window" +msgstr "缩放窗口" -msgid "Zoom windows while in scale mode" -msgstr "" +msgid "Zoom window while in scale mode" +msgstr "处于比例模式时缩放窗口" msgid "Filter Case Insensitive" -msgstr "" +msgstr "过滤时不区分大小写" msgid "Filter Type Timeout" -msgstr "" +msgstr "过滤键入超时" -#, fuzzy msgid "Scale Window Title Filter" -msgstr "窗口标题字体" +msgstr "比例窗口标题过滤" msgid "Show Filter Text" -msgstr "" +msgstr "显示过滤文本" -#, fuzzy msgid "Show filter text." -msgstr "首次启动显示" +msgstr "显示过滤文本。" msgid "Time (in ms) after which the filter typing is automatically ended" -msgstr "" +msgstr "超过此时长(毫秒)后过滤键入自动结束" msgid "Use case insensitive string matching when filtering." -msgstr "" +msgstr "过滤时使用不区分大小写的字符串匹配。" msgid "Window title filter facility for the scale plugin" -msgstr "" +msgstr "为比例插件提供的窗口标题过滤工具" msgid "" "Embeds a Guile scheme interpreter and provides bindings for meaningful " "Compiz integration." -msgstr "" +msgstr "嵌入一个Guile scheme解释器并对有意义的Compiz整合提供绑定。" msgid "Scheme Interpreter" -msgstr "" +msgstr "Scheme解释器" msgid "Toggle Prompt Visible" -msgstr "" +msgstr "触发可见提示" msgid "Toggle prompt visible." -msgstr "" +msgstr "触发可见提示。" -#, fuzzy msgid "Directory" -msgstr "飞雪方向" +msgstr "目录" -#, fuzzy msgid "Initiate screencasting" -msgstr "启动火焰绘制" +msgstr "启动屏幕录制" msgid "Put screenshot images in this directory" -msgstr "" +msgstr "保存截屏图片到此目录" -#, fuzzy msgid "ScreenCast plugin" -msgstr "屏幕输出" +msgstr "屏幕录制插件" -#, fuzzy msgid "ScreenCasting" -msgstr "屏幕广度" +msgstr "屏幕录制" msgid "" "Also try to save and restore legacy apps that don't support the X session " "management protocol. This setting only should be used in KDE, as only KDE's " "session manager also saves those applications." msgstr "" +"亦尝试保存并恢复那些不支持X会话管理器协议的旧式应用程序。本设定仅应用于KDE," +"因为也只有KDE的会话管理器保存这些应用程序。" msgid "Save Legacy Apps" -msgstr "" +msgstr "保存旧式的应用程序" msgid "Session Management" -msgstr "" +msgstr "会话管理" msgid "Talk to session manager and save/load window state" -msgstr "" +msgstr "与会话管理器交流并保存/载入窗口状态" -#, fuzzy msgid "Animation duration" msgstr "动画时长" -#, fuzzy msgid "Duration of the animation in milliseconds." -msgstr "排列动画时长(微秒)" +msgstr "排列动画时长(微秒计)" msgid "Increase the scale factor making the window bigger." -msgstr "" +msgstr "增加比例因子使窗口更大。" -#, fuzzy msgid "Make the window bigger" -msgstr "绘制窗口背面" +msgstr "使窗口更大" -#, fuzzy msgid "Make the window smaller" -msgstr "绘制窗口背面" +msgstr "使窗口更小" msgid "Reduces the scale factor making the window smaller." -msgstr "" +msgstr "减少比例因子使窗口更小。" -#, fuzzy msgid "Reset the window to original size" -msgstr "设置窗口无法改变大小" +msgstr "重置窗口到原始尺寸" msgid "Resets the currently focused window to original size" -msgstr "" +msgstr "重置当前聚焦窗口到原始尺寸" msgid "Scale a window down to a portion of it's size." -msgstr "" +msgstr "缩小一个窗口到它现有尺寸的一部分" msgid "" "Scale a window down to a ration of the screen size. Respectively half, a " @@ -3424,11 +3163,10 @@ msgstr "光晕" msgid "Click duration" -msgstr "" +msgstr "点击持续时间" -#, fuzzy msgid "Cover" -msgstr "之上" +msgstr "" #, fuzzy msgid "Cover movement offset." @@ -3437,68 +3175,60 @@ msgid "Cover offset" msgstr "" -#, fuzzy msgid "Disabled" -msgstr "距离" +msgstr "已禁用" #, fuzzy msgid "Fade in/out speed" -msgstr "淡入淡出时长" +msgstr "淡入淡出速度" -#, fuzzy msgid "Fade speed" -msgstr "淡入淡出时间" +msgstr "消逝速度" msgid "Flip" -msgstr "" +msgstr "翻转" msgid "Flip angle" -msgstr "" +msgstr "翻转角度" -#, fuzzy msgid "Generate mipmaps" -msgstr "创建 Mipmap" +msgstr "生成 Mipmap" msgid "Hide all non Desktop windows during switching" -msgstr "" +msgstr "当切换时,隐藏所有非桌面窗口" -#, fuzzy msgid "Hide non Desktop windows" -msgstr "淡出到桌面" +msgstr "隐藏非桌面窗口" -#, fuzzy msgid "Initiate (All Workspaces)" -msgstr "初始化闪屏" +msgstr "初始化(所有工作区)" msgid "Initiate switcher (All Workspaces)." -msgstr "" +msgstr "初始化切换器(所有工作区)。" -#, fuzzy msgid "Initiate switcher." -msgstr "初始化闪屏" +msgstr "初始切换器。" -#, fuzzy msgid "Max window size" -msgstr "绘制窗口背面" +msgstr "最大窗口尺寸" msgid "Maximum click duration in miliseconds." -msgstr "" +msgstr "以毫秒计的最大点击持续时间。" msgid "Maximum window size (in percent of the screen width)" -msgstr "" +msgstr "最大化窗口尺寸(以窗口宽度的百分比)" -#, fuzzy msgid "Mouse movement speed" -msgstr "窗口移动速度" +msgstr "鼠标移动速度" msgid "Mouse speed" -msgstr "" +msgstr "鼠标速度" msgid "On activated output" -msgstr "" +msgstr "在激活的输出上" msgid "One big switcher" -msgstr "" +msgstr "一个大切换器" msgid "Overlay an icon on windows in the shift switcher" msgstr "" @@ -3512,60 +3242,67 @@ msgstr "" msgid "Shift Switcher" -msgstr "" +msgstr "轮转切换器" msgid "Shift Switcher Plugin" -msgstr "" +msgstr "轮转切换器插件" -#, fuzzy msgid "Shift Windows" -msgstr "排列窗口" +msgstr "轮转窗口" -#, fuzzy msgid "Shift animation speed" -msgstr "动画速度" +msgstr "轮转动画速度" -#, fuzzy msgid "Shift speed" -msgstr "速度" +msgstr "轮转速度" -#, fuzzy msgid "Shift timestep" -msgstr "标签步长" +msgstr "轮转时间步长" msgid "Switcher mode" -msgstr "" +msgstr "切换器模式" msgid "Switcher mode." -msgstr "" +msgstr "切换器模式。" msgid "Terminate" -msgstr "" +msgstr "终止" msgid "Terminate switcher." -msgstr "" +msgstr "终止切换器。" -#, fuzzy msgid "Windows that should be shown in the shift switcher" -msgstr "允许加入组合的窗口" +msgstr "应显示于轮转切换器中的窗口" msgid "Access your desktop easily" -msgstr "清空桌面的快捷方式" +msgstr "方便地访问你的桌面" msgid "Direction of window movement" msgstr "窗口移动方向" +msgid "Down" +msgstr "下" + +msgid "Left" +msgstr "左" + msgid "Left/Right" msgstr "左/右" msgid "Movement Direction" msgstr "移动方向" +msgid "Right" +msgstr "右" + msgid "Show desktop" -msgstr "回到桌面" +msgstr "显示桌面" msgid "To Corners" -msgstr "角" +msgstr "至角落" + +msgid "Up" +msgstr "上" msgid "Up/Down" msgstr "上/下" @@ -3574,23 +3311,23 @@ msgstr "窗口不透明度" msgid "Window Part Size" -msgstr "窗口部件大小" +msgstr "窗口部件尺寸" msgid "Window movement speed" msgstr "窗口移动速度" msgid "Window movement timestep" -msgstr "窗口移动步长" +msgstr "窗口移动时间步长" msgid "Window opacity when showdesktop'd" -msgstr "显示桌面时窗口不透明度" +msgstr "显示桌面时窗口的不透明度" msgid "Window part size when showdesktop'd" -msgstr "显示桌面时窗口部件大小" +msgstr "显示桌面时窗口部件的尺寸" msgid "" "Window types that should be moved out of sight when entering showdesktop mode" -msgstr "进入显示桌面模式后应该消失的窗口类型" +msgstr "进入显示桌面模式后应该被移出视野的窗口类型" msgid "Additive blending" msgstr "" @@ -3610,9 +3347,8 @@ msgid "Emiters" msgstr "" -#, fuzzy msgid "Have random colors for the particles" -msgstr "为火焰随机选取颜色,亦称神秘火焰。" +msgstr "为火焰粒子选取随机颜色" msgid "Increases the visibility of the mouse pointer" msgstr "" @@ -3673,17 +3409,14 @@ msgid "Ring radius" msgstr "边框投影" -#, fuzzy msgid "Rotation speed" -msgstr "动画速度" +msgstr "旋转速度" -#, fuzzy msgid "Rotation speed." -msgstr "动画速度" +msgstr "旋转速度。" -#, fuzzy msgid "Show mouse" -msgstr "标签栏显示延迟" +msgstr "显示鼠标" msgid "Toggle the mouse pointer trail." msgstr "" @@ -3720,39 +3453,37 @@ msgid "Enables windows edges resistance" msgstr "" -#, fuzzy msgid "Meta" -msgstr "金属" +msgstr "Meta" -#, fuzzy msgid "Screen edges" -msgstr "屏幕深度" +msgstr "屏幕边缘" msgid "Shift" -msgstr "" +msgstr "Shift" msgid "Snap Type" msgstr "" msgid "Snap to 'Screen Edges', 'Windows Edges' or 'Both'." -msgstr "" +msgstr "吸附到“屏幕边缘”,“窗口边缘” 或“两者都是”" -#, fuzzy msgid "Snapping Windows" -msgstr "取消窗口组合" +msgstr "吸附窗口" msgid "The distance until edge attraction takes place." -msgstr "" +msgstr "使边缘吸引生效的距离" +# 边缘排斥? +#, fuzzy msgid "The distance until edge resistance takes place." -msgstr "" +msgstr "使边缘排斥生效的距离" msgid "Use this bindings to avoid snapping." -msgstr "" +msgstr "按下这些按键来防止吸附" -#, fuzzy msgid "Window edges" -msgstr "窗口类型" +msgstr "窗口边缘" msgid "Bottom to Top" msgstr "从底至顶" @@ -3764,7 +3495,7 @@ "屏幕刷新延迟(微秒)。减小这个值可以让飞雪动画更加平滑,但会增加 CPU 占用。" msgid "Enable Blending" -msgstr "启用渲染" +msgstr "启用混合" msgid "Enable Textures" msgstr "启用纹理" @@ -3772,9 +3503,8 @@ msgid "Enables alpha blending of snowflakes." msgstr "启用雪花 alpha 混合" -#, fuzzy msgid "Enables textured snowflakes. If not selected, color gradients are used." -msgstr "启用雪花纹理。如果钩选,将会使用颜色渐变。" +msgstr "对雪花使用纹理。如果不选,将会使用颜色渐变。" msgid "Flakes rotate if checked." msgstr "如果钩选则雪花旋转。" @@ -3910,95 +3640,303 @@ msgid "Start Splash." msgstr "启动闪屏." -msgid "Render text to texture" +msgid "" +"Amount of opacity (in percent) for windows in the switcher which are not " +"selected" msgstr "" -#, fuzzy -msgid "Text" -msgstr "纹理" +msgid "Behavior" +msgstr "行为" -#, fuzzy -msgid "Enable Titles" -msgstr "启用纹理" +msgid "Darken background when showing the stack" +msgstr "当显示stack时,暗化背景" -#, fuzzy -msgid "Fade In/Out Duration" -msgstr "淡入淡出时长" +msgid "On Thumbnail" +msgstr "在缩略图上" -#, fuzzy -msgid "Fade In/Out Duration in seconds." -msgstr "淡入淡出时长" +msgid "Rotate inactive windows" +msgstr "旋转未激活的窗口" -#, fuzzy -msgid "Generate Mipmaps" -msgstr "创建 Mipmap" +msgid "Should not selected windows be rotated" +msgstr "不应选择被旋转的窗口" -msgid "Generate mipmaps when possible for higher quality scaling." -msgstr "" +msgid "Stack Window Switcher" +msgstr "窗口切换器" -msgid "Paint Thumbnails Always on Top." -msgstr "" +msgid "Tilt angle of the background." +msgstr "背景的倾斜角度" -msgid "Paint Window Like Background" -msgstr "" +msgid "Windows" +msgstr "窗口" -msgid "Paint Window Like Background instead of Glow." -msgstr "" +msgid "Windows that should be shown in the switcher" +msgstr "应显示于切换器中的窗口" -msgid "Set it if the Taskbar shows only Windows of Current Viewport." +msgid "Alignment for rows that are not fully filled" msgstr "" -msgid "Should be the window title Bold." +#, fuzzy +msgid "Amount of brightness in percent" +msgstr "火焰神笔绘画时的背景亮度" + +msgid "Amount of opacity in percent" msgstr "" #, fuzzy -msgid "Show Delay" -msgstr "标签栏显示延迟" +msgid "Amount of saturation in percent" +msgstr "页面不显示程序" -msgid "Show Window Title in Thumbnail." -msgstr "" +msgid "Auto Change Viewport" +msgstr "自动改变视口" -msgid "Size of Thumbnail Border." +msgid "Bring Selected To Front" +msgstr "置前所选" + +#, fuzzy +msgid "Centered" +msgstr "在屏幕上绘制火焰" + +msgid "Change to the viewport of the selected window while switching" msgstr "" -msgid "Taskbar" +#, fuzzy +msgid "Color of highlight rectangle" +msgstr "选取方框填充色" + +msgid "Color of highlight rectangle border" msgstr "" -msgid "Taskbar Shows Only Windows of Current Viewport" +msgid "Color of inlay in highlight rectangle border" msgstr "" -msgid "Thumbnail Background and Border Glow Color." +msgid "Generate mipmaps when possible for higher quality scaling" msgstr "" #, fuzzy -msgid "Thumbnail Border Glow Color" -msgstr "标签边框颜色" +msgid "Highlight Border Color" +msgstr "标签高亮颜色" #, fuzzy -msgid "Thumbnail Border Size" -msgstr "缩略图大小" +msgid "Highlight Border Inlay Color" +msgstr "标签高亮颜色" #, fuzzy -msgid "Thumbnail Window Size" -msgstr "缩略图大小" +msgid "Highlight Mode" +msgstr "标签高亮颜色" #, fuzzy -msgid "Thumbnail window size." -msgstr "窗口排列" - -msgid "Thumbnails Always on Top" -msgstr "" +msgid "Icon" +msgstr "进" -msgid "Time (in ms) before Thumbnail is shown." -msgstr "" +#, fuzzy +msgid "Minimized Window Highlight Rectangle" +msgstr "窗口宽度" #, fuzzy -msgid "Window Previews" -msgstr "窗口部件大小" +msgid "Mipmap" +msgstr "创建 Mipmap" #, fuzzy +msgid "Mode for highlighting the currently selected window" +msgstr "开关当前窗口滤镜" + +msgid "Next Panel" +msgstr "下一个面板" + +msgid "Next window" +msgstr "下一个窗口" + +msgid "Next window (All windows)" +msgstr "下一个窗口(所有窗口)" + +msgid "Next window (Group)" +msgstr "下一个窗口(组)" + +msgid "Next window (No popup)" +msgstr "下一个窗口(非组)" + +msgid "Original Window Position" +msgstr "原始窗口位置" + +msgid "Popup Window Delay" +msgstr "弹出窗口延迟" + +msgid "Popup switcher if not visible and select next window" +msgstr "如果非可见的话,弹出切换器并且选择下个窗口" + +msgid "" +"Popup switcher if not visible and select next window of the current " +"application." +msgstr "如果非可见的话,弹出切换器并且选择当前应用程序的下个窗口" + +msgid "Popup switcher if not visible and select next window out of all windows" +msgstr "如果非可见的话,弹出切换器并且选择从所有窗口中出现的下个窗口" + +msgid "Popup switcher if not visible and select previous window" +msgstr "如果非可见的话,弹出切换器并且选择前一个窗口" + +msgid "" +"Popup switcher if not visible and select previous window of the current " +"application." +msgstr "如果非可见的话,弹出切换器并且选择当前应用程序的前一个窗口" + +msgid "" +"Popup switcher if not visible and select previous window out of all windows" +msgstr "如果非可见的话,弹出切换器并且选择从所有窗口中出现的前一个窗口" + +msgid "Prev Panel" +msgstr "前面板" + +#, fuzzy +msgid "Prev window" +msgstr "前窗口" + +#, fuzzy +msgid "Prev window (All windows)" +msgstr "前窗口(全部窗口)" + +#, fuzzy +msgid "Prev window (Group)" +msgstr "前窗口(组)" + +#, fuzzy +msgid "Prev window (No popup)" +msgstr "前窗口(非弹出)" + +msgid "Row Alignment" +msgstr "横向安排" + +#, fuzzy +msgid "Select next panel type window." +msgstr "选取单个窗口" + +msgid "Select next window without showing the popup window." +msgstr "选择下一个窗口且不用显示弹出窗口" + +#, fuzzy +msgid "Select previous panel type window." +msgstr "选取单个窗口" + +msgid "Select previous window without showing the popup window." +msgstr "" + +#, fuzzy +msgid "Selected Window Highlight" +msgstr "窗口宽度" + +#, fuzzy +msgid "Show Rectangle" +msgstr "矩形光晕" + +msgid "Show icon next to thumbnail" +msgstr "显示图标于缩略图畔" + +msgid "Show minimized windows" +msgstr "显示最小化窗口" + +msgid "Static Application Switcher" +msgstr "静态应用程序切换器" + +msgid "Switcher speed" +msgstr "切换器速度" + +msgid "Switcher timestep" +msgstr "切换器时长" + +msgid "Switcher windows" +msgstr "切换器窗口" + +msgid "Taskbar Entry" +msgstr "任务条人口" + +msgid "Time (in s) the popup window should be delayed before appearing" +msgstr "计时弹出窗口出现前应被延迟的时间(以秒计算)" + +#, fuzzy +msgid "Where to draw highlight rectangle for minimized windows" +msgstr "往何处拖高亮的长方形以最小化窗口" + +msgid "Windows that should be shown in switcher" +msgstr "应显示于切换器中的窗口" + +msgid "Render text to texture" +msgstr "渲染文本到纹理" + +msgid "Text" +msgstr "文本" + +msgid "Enable Titles" +msgstr "启用标题" + +msgid "Fade In/Out Duration" +msgstr "淡入淡出时长" + +#, fuzzy +msgid "Fade In/Out Duration in seconds." +msgstr "淡入淡出时长" + +msgid "Generate Mipmaps" +msgstr "生成 Mipmap" + +msgid "Generate mipmaps when possible for higher quality scaling." +msgstr "当较高质量缩放可能时生成mipmap" + +msgid "Paint Thumbnails Always on Top." +msgstr "总是在顶部绘制缩略图" + +msgid "Paint Window Like Background" +msgstr "绘制窗口像背景" + +msgid "Paint Window Like Background instead of Glow." +msgstr "绘制窗口像背景以替代发光" + +msgid "Set it if the Taskbar shows only Windows of Current Viewport." +msgstr "如果任务条仅显示当前视口的窗口,设置它。" + +msgid "Should be the window title Bold." +msgstr "应为窗口标题粗体。" + +msgid "Show Delay" +msgstr "显示延迟" + +msgid "Show Window Title in Thumbnail." +msgstr "在缩略图中显示窗口标题" + +msgid "Size of Thumbnail Border." +msgstr "缩略图边框的尺寸" + +msgid "Taskbar" +msgstr "任务条" + +msgid "Taskbar Shows Only Windows of Current Viewport" +msgstr "" + +msgid "Thumbnail Background and Border Glow Color." +msgstr "缩略图背景及边框发光颜色" + +msgid "Thumbnail Border Glow Color" +msgstr "缩略图边框发光颜色" + +msgid "Thumbnail Border Size" +msgstr "缩略图边界尺寸" + +msgid "Thumbnail Window Size" +msgstr "缩略窗口尺寸" + +msgid "Thumbnail window size." +msgstr "缩略窗口尺寸。" + +msgid "Thumbnails Always on Top" +msgstr "" + +msgid "Time (in ms) before Thumbnail is shown." +msgstr "" + +msgid "Window Previews" +msgstr "窗口预览" + msgid "Window thumbnails at the taskbar" -msgstr "任务栏中缩略图大小" +msgstr "在任务栏中显示窗口缩略图" #, fuzzy msgid "Window title" @@ -4134,7 +4072,7 @@ msgid "" "Adjust the opacity, saturation and brightness of windows based on when they " "last had focus." -msgstr "根据窗口上次聚焦时间调整其不透明度、饱和度和亮度。" +msgstr "根据窗口上次聚焦的时间来调整其不透明度、饱和度和亮度。" msgid "Brightness Level of Focused Windows" msgstr "聚焦窗口的亮度级别" @@ -4142,43 +4080,40 @@ msgid "Brightness Level of Unfocused Windows" msgstr "未聚焦窗口的亮度级别" -#, fuzzy msgid "" "Brightness of the currently focused window. Windows will get brightness " "levels between the focused and minimum." -msgstr "当前活动窗口的亮度。窗口亮度等级将在聚焦窗口和最小值之间。" +msgstr "当前聚焦窗口的亮度。窗口亮度等级将在聚焦窗口和最小值之间。" -#, fuzzy msgid "" "Brightness of the least focused window. Windows will get brightness levels " "between the focused and minimum." -msgstr "活动度最低窗口的亮度。窗口亮度等级将在聚焦窗口和最小值之间。" +msgstr "聚焦度最低的窗口的亮度。窗口亮度等级将在聚焦窗口和最小值之间。" msgid "Number of Windows to Track" -msgstr "保持窗口活动轨迹记录的窗口数目" +msgstr "追踪的窗口数目" msgid "" "Number of windows Trailfocus will keep track of. Windows that had focus this " "amount of windows ago or more will be considered completly unfocused." msgstr "" -"焦点轨迹活动记录的窗口数。窗口数超过此值则不在记录中的窗口被认为是完全未活动" -"的窗口。" +"追踪焦点记录的窗口数。窗口被聚焦数大于或等于此值则被认为是完全未聚焦的窗口。" msgid "Opacity Level of Focused Windows" msgstr "聚焦窗口的不透明度级别" msgid "Opacity Level of Unfocused Windows" -msgstr "位聚焦窗口的不透明度级别" +msgstr "未聚焦窗口的不透明度级别" msgid "" "Opacity of the currently focused window. Windows will get opacity levels " "between the focused and minimum." -msgstr "当前活动窗口的不透明度。窗口不透明度等级将在聚焦窗口和最小值之间。" +msgstr "当前聚焦窗口的不透明度。窗口不透明度等级将在聚焦窗口和最小值之间。" msgid "" "Opacity of the least focused window. Windows will get opacity levels between " "the focused and minimum." -msgstr "活动度最低窗口的不透明度。窗口不透明度等级将在聚焦窗口和最小值之间。" +msgstr "聚焦度最低的窗口的不透明度。窗口不透明度等级将在聚焦窗口和最小值之间。" msgid "Saturation Level of Focused Windows" msgstr "聚焦窗口的饱和度级别" @@ -4186,238 +4121,230 @@ msgid "Saturation Level of Unfocused Windows" msgstr "未聚焦窗口的饱和度级别" -#, fuzzy msgid "" "Saturation of the currently focused window. Windows will get saturation " "levels between the focused and minimum." -msgstr "当前活动窗口的饱和度。窗口饱和度等级将在聚焦窗口和最小值之间。" +msgstr "当前聚焦窗口的饱和度。窗口饱和度等级将在聚焦窗口和最小值之间。" -#, fuzzy msgid "" "Saturation of the least focused window. Windows will get saturation levels " "between the focused and minimum." -msgstr "活动度最低窗口的饱和度。窗口饱和度等级将在聚焦窗口和最小值之间。" +msgstr "聚焦度最低的窗口的饱和度。窗口饱和度等级将在聚焦窗口和最小值之间。" msgid "" "This defines when Trailfocus will start fading windows. This lets you set up " "trailfocus to treat the N first Windows as fully focused." -msgstr "这项设置决定焦点轨迹在何时开始淡化窗口。你可以设置 N 为完全聚焦窗口。" +msgstr "" +"这项设置决定焦点追踪在何时开始淡化窗口。这使你可以设置焦点追踪来将前N个窗口做" +"为完全聚焦窗口对待。" msgid "Trailfocus" -msgstr "焦点轨迹" +msgstr "焦点追踪" msgid "Window to Start Fading" msgstr "开始淡出的窗口" msgid "Window types that should be handled by Trailfocus" -msgstr "使用焦点轨迹的窗口类型" +msgstr "由焦点追踪处理的窗口类型" msgid "Action name for initiate" -msgstr "" +msgstr "启动的动作名称" msgid "Action name for initiate/terminate" -msgstr "" +msgstr "启动/终止的动作名称" msgid "Begin Viewport Switch" -msgstr "" +msgstr "开始视口切换" msgid "Begin entering viewport number" -msgstr "" +msgstr "开始输入视口编号" msgid "Desktop-based Viewport Switching" -msgstr "" +msgstr "基于桌面的视口切换" msgid "Go to specific viewport" -msgstr "" +msgstr "转到指定视口" -#, fuzzy msgid "Initiate plugin action" -msgstr "启动火焰绘制" +msgstr "启动插件动作" msgid "Initiate viewport changes through several events" -msgstr "" +msgstr "通过一些事件启动视口改变" msgid "Initiate/Terminate the selected plugin action" -msgstr "" +msgstr "启动/终止所选择的插件动作" -#, fuzzy msgid "Move Down" -msgstr "下" +msgstr "向下移动" -#, fuzzy msgid "Move Left" -msgstr "左" +msgstr "向左移动" msgid "Move Next" -msgstr "" +msgstr "移动到下一个" msgid "Move Prev" -msgstr "" +msgstr "移动到前一个" -#, fuzzy msgid "Move Right" -msgstr "右" +msgstr "向右移动" msgid "Move Up" -msgstr "" +msgstr "向上移动" msgid "Move down" -msgstr "" +msgstr "向下移动" msgid "Move to the left" -msgstr "" +msgstr "移动到左边" msgid "Move to the next viewport" -msgstr "" +msgstr "移动到下一个视口" msgid "Move to the previous viewport" -msgstr "" +msgstr "移动到前一个视口" -#, fuzzy msgid "Move to the right" -msgstr "从左至右" +msgstr "移动到右边" msgid "Move up" -msgstr "" +msgstr "向上移动" msgid "Number-Based Viewport Switching" -msgstr "" +msgstr "基于编号的视口切换" msgid "Plugin for initiate action" -msgstr "" +msgstr "启动动作的插件" msgid "Plugin for initiate/action action" -msgstr "" +msgstr "启动动作及其他动作的插件" msgid "Switch to Viewport 1" -msgstr "" +msgstr "切换到视口1" msgid "Switch to Viewport 10" -msgstr "" +msgstr "切换到视口10" msgid "Switch to Viewport 11" -msgstr "" +msgstr "切换到视口11" msgid "Switch to Viewport 12" -msgstr "" +msgstr "切换到视口12" msgid "Switch to Viewport 2" -msgstr "" +msgstr "切换到视口2" msgid "Switch to Viewport 3" -msgstr "" +msgstr "切换到视口3" msgid "Switch to Viewport 4" -msgstr "" +msgstr "切换到视口4" msgid "Switch to Viewport 5" -msgstr "" +msgstr "切换到视口5" msgid "Switch to Viewport 6" -msgstr "" +msgstr "切换到视口6" msgid "Switch to Viewport 7" -msgstr "" +msgstr "切换到视口7" msgid "Switch to Viewport 8" -msgstr "" +msgstr "切换到视口8" msgid "Switch to Viewport 9" -msgstr "" +msgstr "切换到视口9" msgid "Switch to viewport 1" -msgstr "" +msgstr "切换到视口1" msgid "Switch to viewport 10" -msgstr "" +msgstr "切换到视口10" msgid "Switch to viewport 11" -msgstr "" +msgstr "切换到视口11" msgid "Switch to viewport 12" -msgstr "" +msgstr "切换到视口12" msgid "Switch to viewport 2" -msgstr "" +msgstr "切换到视口2" msgid "Switch to viewport 3" -msgstr "" +msgstr "切换到视口3" msgid "Switch to viewport 4" -msgstr "" +msgstr "切换到视口4" msgid "Switch to viewport 5" -msgstr "" +msgstr "切换到视口5" msgid "Switch to viewport 6" -msgstr "" +msgstr "切换到视口6" msgid "Switch to viewport 7" -msgstr "" +msgstr "切换到视口7" msgid "Switch to viewport 8" -msgstr "" +msgstr "切换到视口8" msgid "Switch to viewport 9" -msgstr "" +msgstr "切换到视口9" msgid "Viewport Switcher" -msgstr "" +msgstr "视口切换工具" msgid "Allow Wrap-Around" -msgstr "" +msgstr "允许环绕式处理" msgid "Allow wrap-around when moving the wall up/down/left/right" -msgstr "" +msgstr "当上/下/左/右移动墙壁时允许环绕式处理。" -#, fuzzy msgid "Arrow Colors" -msgstr "颜色" +msgstr "箭头颜色" -#, fuzzy msgid "Background Gradient" -msgstr "背景文件" +msgstr "背景渐变" -#, fuzzy msgid "Base Color" -msgstr "标签栏基颜色" +msgstr "底部颜色" msgid "Desktop Wall" -msgstr "" +msgstr "桌面墙壁" msgid "Desktop Wall Plugin" -msgstr "" +msgstr "桌面墙壁插件" -#, fuzzy msgid "Duration (in s) for wall sliding viewport switching animation" -msgstr "排列动画时长(微秒)" +msgstr "墙壁滑动/视口切换动画的时长(秒)" msgid "" "Duration (in s) the switch target preview should remain visible after " "switching ends." -msgstr "" +msgstr "切换结束后切换对象的预览应保持可见的持续时间(秒)。" +# dnd 拖拽 drag and draw msgid "Edge Flip DnD" -msgstr "" +msgstr "DnD边缘翻转" msgid "Edge Flip Move" -msgstr "" +msgstr "移动边缘翻转" msgid "Edge Flip Pointer" -msgstr "" +msgstr "指针边缘翻转" msgid "Edge Flipping" -msgstr "" +msgstr "边缘翻转" -#, fuzzy msgid "Edge Radius" -msgstr "边框投影" +msgstr "边缘半径" msgid "Edge flipping" -msgstr "" +msgstr "边缘翻转" +#, fuzzy msgid "First color for the background gradient of the switcher window." -msgstr "" +msgstr "切换窗口背景渐变的第一颜色。" msgid "First color for the thumb gradient of the switcher window." msgstr "" @@ -4426,119 +4353,110 @@ msgstr "" msgid "First color of the arrow of the switcher window." -msgstr "" +msgstr "切换器窗口箭头的第一颜色" -#, fuzzy msgid "Flip Down" -msgstr "上/下" +msgstr "向下翻转" -#, fuzzy msgid "Flip Left" -msgstr "左" +msgstr "向左翻转" -#, fuzzy msgid "Flip Right" -msgstr "右" +msgstr "向右翻转" msgid "Flip Up" -msgstr "" +msgstr "向上翻转" msgid "Flip down" -msgstr "" +msgstr "向下翻转" msgid "Flip left" -msgstr "" +msgstr "向左翻转" msgid "Flip right" -msgstr "" +msgstr "向右翻转" msgid "Flip up" -msgstr "" +msgstr "向上翻转" msgid "Flip viewport when dragging an object to a screen edge" -msgstr "" +msgstr "将对象拖至屏幕边缘时翻转视口" msgid "Flip viewport when moving a window to a screen edge" -msgstr "" +msgstr "将窗口移至屏幕边缘时翻转视口" msgid "Flip viewport when moving the pointer to a screen edge" -msgstr "" +msgstr "将指针移至屏幕边缘时翻转视口" #, fuzzy msgid "Highlight Gradient" msgstr "渐变" msgid "How should a multimonitor configuration be handled" -msgstr "" +msgstr "对多显示器配置的处理方式" -#, fuzzy msgid "Move Down With Window" -msgstr "移除组合窗口" +msgstr "带窗口下移" msgid "Move Left With Window" -msgstr "" +msgstr "带窗口左移" msgid "Move Right With Window" -msgstr "" +msgstr "带窗口右移" -#, fuzzy msgid "Move Up With Window" -msgstr "移除组合窗口" +msgstr "带窗口上移" msgid "Move along the wall down" -msgstr "" +msgstr "沿着墙壁下移" msgid "Move along the wall to the left" -msgstr "" +msgstr "沿着墙壁向左移动" msgid "Move along the wall to the next viewport" -msgstr "" +msgstr "沿着墙壁移到下一个视口" msgid "Move along the wall to the previous viewport" -msgstr "" +msgstr "沿着墙壁移到前一个视口" msgid "Move along the wall to the right" -msgstr "" +msgstr "沿着墙壁向右移动" msgid "Move along the wall up" -msgstr "" +msgstr "沿着墙壁上移" -#, fuzzy msgid "Move with window along the wall down" -msgstr "将每个窗口移入组合" +msgstr "带窗口沿墙壁下移" msgid "Move with window along the wall to the left" -msgstr "" +msgstr "带着窗口沿墙壁向左移动" msgid "Move with window along the wall to the right" -msgstr "" +msgstr "带着窗口沿墙壁向右移动" -#, fuzzy msgid "Move with window along the wall up" -msgstr "将每个窗口移入组合" +msgstr "带窗口沿墙壁上移" msgid "Move with window within wall" -msgstr "" +msgstr "带着窗口在墙壁内移动" msgid "Move within wall" -msgstr "" +msgstr "在墙壁内移动" msgid "Multimonitor behavior" -msgstr "" +msgstr "多显示器行为" -#, fuzzy msgid "Outline Color" -msgstr "线条颜色" +msgstr "轮廓颜色" msgid "Outline color of the switcher window." -msgstr "" +msgstr "切换窗口的轮廓颜色。" msgid "Preview Scale" -msgstr "" +msgstr "预览比例" -#, fuzzy msgid "Radius of the rounded edge" -msgstr "标题栏边缘辐射半径" +msgstr "圆形边缘的半径" msgid "Second color for the background gradient of the switcher window." msgstr "" @@ -4550,288 +4468,254 @@ msgstr "" msgid "Second color of the arrow of the switcher window." -msgstr "" +msgstr "切换器窗口箭头的第二颜色" -#, fuzzy msgid "Shadow Color" -msgstr "字体颜色" +msgstr "阴影颜色" msgid "Show Live Viewport Previews" -msgstr "" +msgstr "显示实时的视口预览" msgid "Show Viewport Switcher Preview" -msgstr "" +msgstr "显示视口切换预览" msgid "Show live viewport previews in switcher window" -msgstr "" +msgstr "在切换器窗口中显示即时视口的预览" msgid "Show switcher window while switching viewports" -msgstr "" +msgstr "在切换视口时显示切换器窗口" #, no-c-format msgid "Size of the preview in %" -msgstr "" +msgstr "预览大小(%)" msgid "Switch Target Preview Visibility Time" -msgstr "" +msgstr "切换目标预览显示时间" msgid "Switch all" -msgstr "" +msgstr "全部切换" msgid "Switch separately" -msgstr "" +msgstr "分别切换" msgid "Third color for the background gradient of the switcher window." -msgstr "" +msgstr "切换器窗口背景渐变中的第三种颜色。" -#, fuzzy msgid "Thumb Gradient" -msgstr "渐变" +msgstr "缩略图渐变" msgid "Viewport Switch Preview" -msgstr "" +msgstr "视口切换预览" msgid "Viewport Switching" -msgstr "" +msgstr "视口切换" -#, fuzzy msgid "Wall Sliding Duration" -msgstr "动画时长" +msgstr "墙壁滑动持续时间" msgid "Width of the border between the previews" -msgstr "" +msgstr "预览图间的边界宽度" -#, fuzzy msgid "Background fill type." -msgstr "背景文件" +msgstr "背景填充类型。" -#, fuzzy msgid "Backgrounds" -msgstr "背景文件" +msgstr "背景" msgid "Center Tiled" -msgstr "" +msgstr "居中平铺" -#, fuzzy -msgid "Centered" -msgstr "在屏幕上绘制火焰" - -#, fuzzy msgid "Color 1" -msgstr "颜色" +msgstr "颜色1" -#, fuzzy msgid "Color 2" -msgstr "颜色" +msgstr "颜色2" msgid "Draw the desktop wallpaper" -msgstr "" +msgstr "绘制桌面壁纸" -#, fuzzy msgid "Fill or first gradient color." -msgstr "火焰颗粒颜色。" +msgstr "填充颜色或首渐变颜色。" -#, fuzzy msgid "Fill type" -msgstr "填充框架" +msgstr "填充类型" -#, fuzzy msgid "Horizontal gradient" -msgstr "水平折叠" +msgstr "水平渐变" -#, fuzzy msgid "Image" msgstr "图像" -#, fuzzy msgid "Image file." -msgstr "Logo 图像文件。" +msgstr "图像文件。" -#, fuzzy msgid "Image position." -msgstr "X 坐标" +msgstr "图象位置。" -#, fuzzy msgid "Position" -msgstr "X 坐标" +msgstr "位置" msgid "Scale and Crop" -msgstr "" +msgstr "按比例剪裁" msgid "Scaled" -msgstr "" +msgstr "比例" -#, fuzzy msgid "Second gradient color." -msgstr "渐变" +msgstr "次渐变颜色。" msgid "Solid fill" -msgstr "" +msgstr "完全填充" -#, fuzzy msgid "Tiled" -msgstr "窗口排列" +msgstr "平铺" msgid "Vertical gradient" -msgstr "" +msgstr "垂直渐变" msgid "Wallpaper" -msgstr "" +msgstr "壁纸" -#, fuzzy msgid "Background Brightness" msgstr "背景亮度" -#, fuzzy msgid "Background Saturation" -msgstr "背景饱和度。" +msgstr "背景饱和度" -#, fuzzy msgid "Background in Widget Mode" -msgstr "背景图像文件。" +msgstr "控件模式中的背景" -#, fuzzy msgid "Brightness of non-widget windows in widget modes." -msgstr "淡出窗口的亮度" +msgstr "控件模式中非控件窗口的亮度。" msgid "End Widget Mode on Click" -msgstr "" +msgstr "点击结束控件模式" msgid "End widget mode when a non-widget window is clicked." -msgstr "" +msgstr "点击非控件窗口时结束控件模式。" msgid "Focus Widget Layer" -msgstr "" +msgstr "聚焦控件层" msgid "Focus a window in the widget layer when activating the layer" -msgstr "" +msgstr "激活控件层时聚焦于其中的窗口" -#, fuzzy msgid "Saturation of non-widget windows in widget modes." -msgstr "淡出窗口的饱和度" +msgstr "控件模式中非控件窗口的饱和度。" -#, fuzzy msgid "Show or hide widget windows" -msgstr "飞雪漫窗" +msgstr "显示或隐藏控件窗口" msgid "Show widget windows on a separate layer" -msgstr "" +msgstr "在一个独立的层上显示控件窗口" msgid "Time (in s) for fading into/out of the widget layer." -msgstr "" +msgstr "淡入/淡出控件层的时间(秒)。" -#, fuzzy msgid "Toggle Widget Display" -msgstr "开关窗口重导" +msgstr "触发控件显示" msgid "Widget Layer" -msgstr "" +msgstr "控件层" -#, fuzzy msgid "Widget Windows" -msgstr "排列窗口" +msgstr "控件窗口" -#, fuzzy msgid "Windows that always should be treated as widgets" -msgstr "使用 3D 的窗口" +msgstr "总是应该按照控件处理的窗口" msgid "Above others windows" -msgstr "" +msgstr "位于其他窗口之上" -#, fuzzy msgid "Below others windows" -msgstr "飞雪漫窗" +msgstr "位于其他窗口之下" msgid "Don't show application in pager" -msgstr "" +msgstr "不在页调度程序中显示应用程序" msgid "Don't show application in taskbar" -msgstr "" +msgstr "不在任务栏显示应用程序" -#, fuzzy msgid "Fixed Size Windows" -msgstr "排列窗口" +msgstr "固定尺寸窗口" -#, fuzzy msgid "Fullscreen" -msgstr "开关全屏" +msgstr "全屏" -#, fuzzy msgid "Fullscreen windows" -msgstr "窗口排列" +msgstr "全屏窗口" msgid "Height values" -msgstr "" +msgstr "高度值" msgid "Matches" -msgstr "" +msgstr "匹配" + +msgid "Maximized" +msgstr "最大化" + +msgid "Maximized windows" +msgstr "最大化的窗口" msgid "No ARGB visuals" -msgstr "" +msgstr "ARGB visual对其不可见" msgid "No focus" -msgstr "" +msgstr "无焦点" -#, fuzzy msgid "Non closable windows" -msgstr "窗口排列" +msgstr "非可关闭的窗口" -#, fuzzy msgid "Non maximizable windows" -msgstr "窗口排列" +msgstr "非可最大化的窗口" msgid "Non minimizable windows" -msgstr "不可最小化的窗口" +msgstr "非可最小化的窗口" -#, fuzzy msgid "Non movable windows" -msgstr "窗口排列" +msgstr "非可移动的窗口" -#, fuzzy msgid "Non resizable windows" -msgstr "窗口排列" +msgstr "非可调大小的窗口" msgid "Set window as non closable" -msgstr "" +msgstr "设置窗口为不可关闭" msgid "Set window as non maximizable" -msgstr "" +msgstr "设置窗口为不可最大化" msgid "Set window as non minimizable" -msgstr "设置窗口无法最小化" +msgstr "设置窗口为不可最小化" msgid "Set window as non movable" -msgstr "设置窗口无法移动" +msgstr "设置窗口为不可移动" msgid "Set window as non resizable" -msgstr "设置窗口无法改变大小" +msgstr "设置窗口为不可调大小" msgid "Set windows rules" msgstr "设置窗口规则" msgid "Size rules" -msgstr "" +msgstr "尺寸规则" -#, fuzzy msgid "Sized Windows" -msgstr "改变了大小的窗口" +msgstr "固定大小的窗口" msgid "Skip pager" -msgstr "" +msgstr "跳过页面切换器" msgid "Skip taskbar" -msgstr "" +msgstr "跳过任务栏" -#, fuzzy msgid "Sticky" -msgstr "开关置顶" +msgstr "所有桌面" -#, fuzzy msgid "Sticky windows" -msgstr "窗口排列" +msgstr "显示在所有桌面的窗口" msgid "Width values" -msgstr "" +msgstr "宽度值" msgid "Window Rules" msgstr "窗口规则" @@ -4846,78 +4730,340 @@ msgstr "不会获得焦点的窗口" msgid "\"On all desktops\" sticky match" -msgstr "" +msgstr "“总在所有桌面”与粘着效果匹配" msgid "AIGLX Fragment Parameter Fix" -msgstr "" +msgstr "AIGLX Fragment参数修正" + +msgid "Convert Urgency to Demands Attention" +msgstr "将紧急转换为需要注意" msgid "Firefox Menu Fix" -msgstr "" +msgstr "Firefox菜单修正" msgid "Fix broken glProgramEnvParameter4f implementation." -msgstr "" +msgstr "修正有问题的glProgramEnvParameter4f实现。" msgid "Fix for broken GLX_MESA_copy_sub_buffer on XGL in fglrx." -msgstr "" +msgstr "修正在fglrx的XGL上有问题的GLX_MESA_copy_sub_buffer。" msgid "Fix screen updates in XGL with fglrx." -msgstr "" +msgstr "用fglrx修正XGL中的屏幕更新。" msgid "Fix window type of Firefox and Thunderbird menus." -msgstr "" +msgstr "修正Firefox与Thunderbird菜单的窗口类型。" msgid "Fix window type of OpenOffice.org menus." -msgstr "" +msgstr "修正OpenOffice.org菜单的窗口类型。" msgid "Fix window type of notification daemon windows." -msgstr "" +msgstr "修正通知守护程序的窗口类型。" msgid "Fix window type of various Java windows." -msgstr "" +msgstr "修正各种Java窗口的类型。" msgid "Fix window type of various Qt windows." -msgstr "" +msgstr "修正各种Qt窗口的类型。" msgid "Java Window Fix" -msgstr "java窗口修正" +msgstr "Java窗口修正" msgid "Legacy Fullscreen Support" -msgstr "传统全屏支持" +msgstr "旧式全屏支持" msgid "Make \"on all desktops\" windows \"sticky\"" -msgstr "粘着“总在可见工作区”窗口" +msgstr "使“总在所有桌面”的窗口“粘着”" msgid "" "Make \"on all desktops\" windows sticky. Sticky windows are visible on all " "viewports." -msgstr "" +msgstr "使“总在所有桌面”的窗口有粘着效果。粘着的窗口在所有视口中可见。" + +msgid "Make \"urgent\" windows also \"demand attention\"." +msgstr "使“紧急”的窗口同时也是“需要注意”的。" msgid "Make Wine and legacy applications fullscreen properly." -msgstr "" +msgstr "使Wine和旧式程序正确地全屏。" msgid "Metacity-like workarounds." -msgstr "" +msgstr "类metacity的工作区。" msgid "Notification Daemon Fix" -msgstr "" +msgstr "通知守护进程修正" msgid "OpenOffice.org Menu Fix" -msgstr "" +msgstr "OpenOffice.org菜单修正" -#, fuzzy msgid "Qt Window Fix" -msgstr "窗口宽度" +msgstr "Qt窗口修正" -#, fuzzy msgid "Window stickyness" -msgstr "开关窗口置顶" +msgstr "窗口粘著效果" -#, fuzzy msgid "Windows on all desktops that should be made sticky" -msgstr "需要淡出到桌面的窗口" +msgstr "总在所有桌面上的窗口应该有粘著效果" msgid "Workarounds" -msgstr "" +msgstr "工作区" + +#~ msgid "Airplane" +#~ msgstr "纸飞机" + +#~ msgid "Airplane Flying Path Length" +#~ msgstr "纸飞机飞行路径长度" + +#~ msgid "Animation Time Step For Intense Effects" +#~ msgstr "剧烈效果的动画时间步长" + +#~ msgid "Automatic" +#~ msgstr "自动" + +#~ msgid "Beam" +#~ msgstr "光线特效" + +#~ msgid "Beam Color" +#~ msgstr "光线颜色" + +#~ msgid "Beam Life" +#~ msgstr "光线持续时间" + +#~ msgid "Beam Slowdown" +#~ msgstr "光线减速" + +#~ msgid "Beam Spacing" +#~ msgstr "光线间距" + +#~ msgid "Beam Width" +#~ msgstr "光线宽度" + +#~ msgid "Beam color." +#~ msgstr "光线颜色" + +#~ msgid "Beam life." +#~ msgstr "光线持续时间" + +#~ msgid "Beam slowdown." +#~ msgstr "光线减速" + +#~ msgid "Beam width." +#~ msgstr "光线宽度" + +#~ msgid "Burn" +#~ msgstr "燃烧特效" + +#~ msgid "Domino" +#~ msgstr "多米诺骨牌效果" + +#~ msgid "Domino Piece Falling Direction" +#~ msgstr "多米诺骨牌倾倒方向" + +#~ msgid "Explode" +#~ msgstr "爆炸特效" + +#~ msgid "Falling direction for Domino pieces." +#~ msgstr "多米诺骨牌的倾倒方向" + +#~ msgid "Fire" +#~ msgstr "火焰特效" + +#~ msgid "Fire Smoke" +#~ msgstr "火焰烟尘" + +#~ msgid "Fire constant speed" +#~ msgstr "火焰衡速" + +#~ msgid "Fire direction" +#~ msgstr "火焰方向" + +#~ msgid "Fire direction." +#~ msgstr "火焰的方向。" + +#~ msgid "Fire smoke." +#~ msgstr "火焰的烟尘。" + +#~ msgid "Fly to TaskBar on Minimize" +#~ msgstr "最小化时飞向任务栏" + +#~ msgid "Fold" +#~ msgstr "折叠特效" + +#~ msgid "Fold Direction" +#~ msgstr "折叠方向" + +#~ msgid "Hexagonal" +#~ msgstr "六边形" + +#~ msgid "In" +#~ msgstr "进" + +# 这翻译有点汗 +#~ msgid "In-out" +#~ msgstr "进出" + +# 野战? 我面壁去 +#~ msgid "Leaf Spread" +#~ msgstr "叶展" + +#, fuzzy +#~ msgid "Left-right" +#~ msgstr "左/右" + +#~ msgid "Length of airplane's flying path." +#~ msgstr "纸飞机飞行路径的长度" + +#~ msgid "Make fire effect duration be dependent on window height." +#~ msgstr "使火焰特效持续时间与窗口高度相关" + +#~ msgid "Movement direction(s) for window pieces." +#~ msgstr "窗口碎片的运动方向" + +#~ msgid "Number Of Fire Particles" +#~ msgstr "火焰粒子数量" + +#~ msgid "Number of fire particles." +#~ msgstr "火焰粒子的数量。" + +#~ msgid "Out" +#~ msgstr "出" + +#~ msgid "Rectangular" +#~ msgstr "矩形" + +#~ msgid "Rotation Angle" +#~ msgstr "转动角度" + +#~ msgid "Rotation angle of animated window pieces (in degrees)." +#~ msgstr "窗口碎片的转动角度(以角度为单位)" + +#, fuzzy +#~ msgid "Skewer Direction" +#~ msgstr "飞雪方向" + +#~ msgid "Spacing between beams." +#~ msgstr "光线之间的距离。" + +#, fuzzy +#~ msgid "Tessellation Type" +#~ msgstr "排列动画类型" + +#~ msgid "Thickness" +#~ msgstr "厚度" + +#~ msgid "Thickness of Animated Polygons" +#~ msgstr "动画多边形的厚度" + +#~ msgid "Thickness of Exploding Polygons" +#~ msgstr "爆炸多边形的厚度" + +#~ msgid "Thickness of animated window pieces (in pixels)." +#~ msgstr "窗口碎片动画的厚度(以点为单位)" + +#~ msgid "Thickness of exploding window pieces (in pixels)." +#~ msgstr "爆炸窗口动画的厚度(以点为单位)" + +#, fuzzy +#~ msgid "Up-down" +#~ msgstr "上/下" + +#~ msgid "" +#~ "Whether the window should fly to taskbar when minimized with Airplane " +#~ "effect." +#~ msgstr "使用纸飞机特效最小化时,窗口是否飞向任务栏" + +#~ msgid "Window Grid Height" +#~ msgstr "窗口网格高度" + +#~ msgid "Window Grid Width" +#~ msgstr "窗口网格宽度" + +#~ msgid "Window folding direction." +#~ msgstr "窗口折叠方向" + +#~ msgid "" +#~ "Window thickness in pixels. Setting this to larger than 0 will disable " +#~ "shadow, blur, and reflection during the animation." +#~ msgstr "" +#~ "以点为单位的窗口厚度。当取值大于0时将禁用动画过程中的投影、模糊以及反射。" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the Horizontal Folds " +#~ "relative to the window width. Negative values fold outward." +#~ msgstr "相对于窗口宽度的水平折叠振幅(折叠时波浪的大小)。负值代表向外折叠。" + +#~ msgid "" +#~ "Amplitude (size of the waves in the fold) of the curved fold relative to " +#~ "window width. Negative values fold outward." +#~ msgstr "" +#~ "相对于窗口宽度的弯曲折叠振幅(折叠时波浪的大小)。负值代表向外折叠。" + +#~ msgid "" +#~ "The wave amplitude (size of the waves) relative to the window height." +#~ msgstr "波幅(波的大小)与窗口高度相关。" + +#~ msgid "Brightness Decrease" +#~ msgstr "降低亮度" + +#~ msgid "Brightness Increase" +#~ msgstr "增加亮度" + +#~ msgid "Brightness Step" +#~ msgstr "亮度步进" + +#~ msgid "Brightness and Saturation" +#~ msgstr "亮度和饱和度" + +#~ msgid "Brightness and Saturation adjustments" +#~ msgstr "亮度和饱和度调节" + +#~ msgid "Brightness settings" +#~ msgstr "亮度设置" + +#~ msgid "Brightness values for windows" +#~ msgstr "窗口的亮度值" + +#, fuzzy +#~ msgid "Brightness window values" +#~ msgstr "淡出窗口的亮度" + +#, fuzzy +#~ msgid "Brightness windows" +#~ msgstr "淡出窗口的亮度" + +#~ msgid "Saturation Decrease" +#~ msgstr "降低饱和度" + +#~ msgid "Saturation Increase" +#~ msgstr "增加饱和度" + +#~ msgid "Saturation Step" +#~ msgstr "饱和度步进" + +#~ msgid "Saturation settings" +#~ msgstr "饱和度设置" + +#~ msgid "Saturation values for windows" +#~ msgstr "窗口的饱和度值" + +#, fuzzy +#~ msgid "Saturation window values" +#~ msgstr "淡出窗口的饱和度" + +#, fuzzy +#~ msgid "Saturation windows" +#~ msgstr "淡出窗口的饱和度" + +#~ msgid "Window specific" +#~ msgstr "特定窗口" + +#~ msgid "Windows that should have a different brightness by default" +#~ msgstr "默认使用不同亮度的窗口" + +#~ msgid "Windows that should have a different saturation by default" +#~ msgstr "默认使用不同饱和度的窗口" + +#, fuzzy +#~ msgid "Close Windows In Scale" +#~ msgstr "纵向排列窗口" #~ msgid "Animation Speed" #~ msgstr "动画速度" @@ -4940,10 +5086,6 @@ #~ msgid "Misc. options" #~ msgstr "杂项设置" -#, fuzzy -#~ msgid "Show minimized windows" -#~ msgstr "飞雪漫窗" - #~ msgid "Disable Caps for Inside Cube" #~ msgstr "立方体禁用顶面底面" @@ -4959,9 +5101,6 @@ #~ "reduce jagged edges." #~ msgstr "创建 mipmap 将改善整体纹理显示,并降低边缘锯齿化几率" -#~ msgid "Window width" -#~ msgstr "窗口宽度" - #~ msgid "Spring model on move" #~ msgstr "移动类型的弹性模型" diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/atlantis/CMakeLists.txt /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/atlantis/CMakeLists.txt --- compiz-fusion-plugins-unsupported-0.7.6/src/atlantis/CMakeLists.txt 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/atlantis/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -include (CompizFusion) - -compiz_fusion_plugin (atlantis PLUGINDEPS cube) diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/atlantis/Makefile.am /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/atlantis/Makefile.am --- compiz-fusion-plugins-unsupported-0.7.6/src/atlantis/Makefile.am 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/atlantis/Makefile.am 2008-09-18 17:17:58.000000000 +0100 @@ -3,9 +3,9 @@ libatlantis_la_LDFLAGS = $(PFLAGS) libatlantis_la_LIBADD = @COMPIZ_LIBS@ -libatlantis_la_SOURCES = atlantis_options.c \ - atlantis_options.h \ - atlantis.c \ +nodist_libatlantis_la_SOURCES = atlantis_options.c \ + atlantis_options.h +dist_libatlantis_la_SOURCES = atlantis.c \ atlantis-internal.h \ dolphin.c \ shark.c \ @@ -13,6 +13,8 @@ whale.c \ water.c +BUILT_SOURCES = $(nodist_libatlantis_la_SOURCES) + INCLUDES = \ @COMPIZ_CFLAGS@ \ -DDATADIR='"$(compdatadir)"' \ @@ -28,8 +30,8 @@ CLEANFILES = *_options.c *_options.h -%_options.h: ../../metadata/%.xml +atlantis_options.h: ../../metadata/atlantis.xml.in $(BCOP_BIN) --header $@ $< -%_options.c: ../../metadata/%.xml %_options.h +atlantis_options.c: ../../metadata/atlantis.xml.in atlantis_options.h $(BCOP_BIN) --source $@ $< diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/atlantis/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/atlantis/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/src/atlantis/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/atlantis/Makefile.in 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,572 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src/atlantis +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(moduledir)" +moduleLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(module_LTLIBRARIES) +libatlantis_la_DEPENDENCIES = +dist_libatlantis_la_OBJECTS = atlantis.lo dolphin.lo shark.lo swim.lo \ + whale.lo water.lo +nodist_libatlantis_la_OBJECTS = atlantis_options.lo +libatlantis_la_OBJECTS = $(dist_libatlantis_la_OBJECTS) \ + $(nodist_libatlantis_la_OBJECTS) +libatlantis_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libatlantis_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(dist_libatlantis_la_SOURCES) \ + $(nodist_libatlantis_la_SOURCES) +DIST_SOURCES = $(dist_libatlantis_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +PFLAGS = -module -avoid-version -no-undefined +libatlantis_la_LDFLAGS = $(PFLAGS) +libatlantis_la_LIBADD = @COMPIZ_LIBS@ +nodist_libatlantis_la_SOURCES = atlantis_options.c \ + atlantis_options.h + +dist_libatlantis_la_SOURCES = atlantis.c \ + atlantis-internal.h \ + dolphin.c \ + shark.c \ + swim.c \ + whale.c \ + water.c + +BUILT_SOURCES = $(nodist_libatlantis_la_SOURCES) +INCLUDES = \ + @COMPIZ_CFLAGS@ \ + -DDATADIR='"$(compdatadir)"' \ + -DLIBDIR='"$(libdir)"' \ + -DLOCALEDIR="\"@datadir@/locale\"" \ + -DIMAGEDIR='"$(imagedir)"' \ + -I$(top_srcdir)/include + +moduledir = $(plugindir) +module_LTLIBRARIES = libatlantis.la +CLEANFILES = *_options.c *_options.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/atlantis/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/atlantis/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + if test -f $$p; then \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(moduledir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(moduledir)/$$f"; \ + else :; fi; \ + done + +uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$p'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$p"; \ + done + +clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libatlantis.la: $(libatlantis_la_OBJECTS) $(libatlantis_la_DEPENDENCIES) + $(libatlantis_la_LINK) -rpath $(moduledir) $(libatlantis_la_OBJECTS) $(libatlantis_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atlantis.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atlantis_options.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dolphin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shark.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/swim.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/water.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/whale.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(moduledir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-moduleLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-moduleLTLIBRARIES + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-moduleLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-moduleLTLIBRARIES ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-moduleLTLIBRARIES install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-moduleLTLIBRARIES + + +atlantis_options.h: ../../metadata/atlantis.xml.in + $(BCOP_BIN) --header $@ $< + +atlantis_options.c: ../../metadata/atlantis.xml.in atlantis_options.h + $(BCOP_BIN) --source $@ $< +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/fakeargb/CMakeLists.txt /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/fakeargb/CMakeLists.txt --- compiz-fusion-plugins-unsupported-0.7.6/src/fakeargb/CMakeLists.txt 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/fakeargb/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -include (CompizFusion) - -compiz_fusion_plugin (fakeargb) diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/fakeargb/Makefile.am /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/fakeargb/Makefile.am --- compiz-fusion-plugins-unsupported-0.7.6/src/fakeargb/Makefile.am 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/fakeargb/Makefile.am 2008-09-18 17:13:37.000000000 +0100 @@ -3,7 +3,10 @@ libfakeargb_la_LDFLAGS = $(PFLAGS) libfakeargb_la_LIBADD = @COMPIZ_LIBS@ -libfakeargb_la_SOURCES = fakeargb_options.c fakeargb_options.h fakeargb.c +nodist_libfakeargb_la_SOURCES = fakeargb_options.c fakeargb_options.h +dist_libfakeargb_la_SOURCES = fakeargb.c + +BUILT_SOURCES = $(nodist_libfakeargb_la_SOURCES) INCLUDES = \ @COMPIZ_CFLAGS@ \ @@ -20,8 +23,8 @@ CLEANFILES = *_options.c *_options.h -%_options.h: ../../metadata/%.xml +fakeargb_options.h: ../../metadata/fakeargb.xml.in $(BCOP_BIN) --header $@ $< -%_options.c: ../../metadata/%.xml %_options.h +fakeargb_options.c: ../../metadata/fakeargb.xml.in fakeargb_options.h $(BCOP_BIN) --source $@ $< diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/fakeargb/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/fakeargb/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/src/fakeargb/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/fakeargb/Makefile.in 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,557 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src/fakeargb +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(moduledir)" +moduleLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(module_LTLIBRARIES) +libfakeargb_la_DEPENDENCIES = +dist_libfakeargb_la_OBJECTS = fakeargb.lo +nodist_libfakeargb_la_OBJECTS = fakeargb_options.lo +libfakeargb_la_OBJECTS = $(dist_libfakeargb_la_OBJECTS) \ + $(nodist_libfakeargb_la_OBJECTS) +libfakeargb_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libfakeargb_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(dist_libfakeargb_la_SOURCES) \ + $(nodist_libfakeargb_la_SOURCES) +DIST_SOURCES = $(dist_libfakeargb_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +PFLAGS = -module -avoid-version -no-undefined +libfakeargb_la_LDFLAGS = $(PFLAGS) +libfakeargb_la_LIBADD = @COMPIZ_LIBS@ +nodist_libfakeargb_la_SOURCES = fakeargb_options.c fakeargb_options.h +dist_libfakeargb_la_SOURCES = fakeargb.c +BUILT_SOURCES = $(nodist_libfakeargb_la_SOURCES) +INCLUDES = \ + @COMPIZ_CFLAGS@ \ + -DDATADIR='"$(compdatadir)"' \ + -DLIBDIR='"$(libdir)"' \ + -DLOCALEDIR="\"@datadir@/locale\"" \ + -DIMAGEDIR='"$(imagedir)"' \ + -I$(top_srcdir)/include + +moduledir = $(plugindir) +module_LTLIBRARIES = libfakeargb.la +CLEANFILES = *_options.c *_options.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/fakeargb/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/fakeargb/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + if test -f $$p; then \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(moduledir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(moduledir)/$$f"; \ + else :; fi; \ + done + +uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$p'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$p"; \ + done + +clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libfakeargb.la: $(libfakeargb_la_OBJECTS) $(libfakeargb_la_DEPENDENCIES) + $(libfakeargb_la_LINK) -rpath $(moduledir) $(libfakeargb_la_OBJECTS) $(libfakeargb_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fakeargb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fakeargb_options.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(moduledir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-moduleLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-moduleLTLIBRARIES + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-moduleLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-moduleLTLIBRARIES ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-moduleLTLIBRARIES install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-moduleLTLIBRARIES + + +fakeargb_options.h: ../../metadata/fakeargb.xml.in + $(BCOP_BIN) --header $@ $< + +fakeargb_options.c: ../../metadata/fakeargb.xml.in fakeargb_options.h + $(BCOP_BIN) --source $@ $< +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/src/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/Makefile.in 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,543 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +SUBDIRS = atlantis fakeargb mswitch snow tile +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-exec-am: + +install-html: install-html-recursive + +install-info: install-info-recursive + +install-man: + +install-pdf: install-pdf-recursive + +install-ps: install-ps-recursive + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ + install-strip + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am check check-am clean clean-generic clean-libtool \ + ctags ctags-recursive distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am + +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/mswitch/CMakeLists.txt /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/mswitch/CMakeLists.txt --- compiz-fusion-plugins-unsupported-0.7.6/src/mswitch/CMakeLists.txt 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/mswitch/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -include (CompizFusion) - -compiz_fusion_plugin (mswitch) diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/mswitch/Makefile.am /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/mswitch/Makefile.am --- compiz-fusion-plugins-unsupported-0.7.6/src/mswitch/Makefile.am 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/mswitch/Makefile.am 2008-09-18 17:13:37.000000000 +0100 @@ -3,7 +3,10 @@ libmswitch_la_LDFLAGS = $(PFLAGS) libmswitch_la_LIBADD = @COMPIZ_LIBS@ -libmswitch_la_SOURCES = mswitch_options.c mswitch_options.h mswitch.c +nodist_libmswitch_la_SOURCES = mswitch_options.c mswitch_options.h +dist_libmswitch_la_SOURCES = mswitch.c + +BUILT_SOURCES = $(nodist_libmswitch_la_SOURCES) INCLUDES = \ @COMPIZ_CFLAGS@ \ @@ -19,8 +22,8 @@ CLEANFILES = *_options.c *_options.h -%_options.h: ../../metadata/%.xml +mswitch_options.h: ../../metadata/mswitch.xml.in $(BCOP_BIN) --header $@ $< -%_options.c: ../../metadata/%.xml %_options.h +mswitch_options.c: ../../metadata/mswitch.xml.in mswitch_options.h $(BCOP_BIN) --source $@ $< diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/mswitch/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/mswitch/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/src/mswitch/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/mswitch/Makefile.in 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,557 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src/mswitch +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(moduledir)" +moduleLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(module_LTLIBRARIES) +libmswitch_la_DEPENDENCIES = +dist_libmswitch_la_OBJECTS = mswitch.lo +nodist_libmswitch_la_OBJECTS = mswitch_options.lo +libmswitch_la_OBJECTS = $(dist_libmswitch_la_OBJECTS) \ + $(nodist_libmswitch_la_OBJECTS) +libmswitch_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libmswitch_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(dist_libmswitch_la_SOURCES) \ + $(nodist_libmswitch_la_SOURCES) +DIST_SOURCES = $(dist_libmswitch_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +PFLAGS = -module -avoid-version -no-undefined +libmswitch_la_LDFLAGS = $(PFLAGS) +libmswitch_la_LIBADD = @COMPIZ_LIBS@ +nodist_libmswitch_la_SOURCES = mswitch_options.c mswitch_options.h +dist_libmswitch_la_SOURCES = mswitch.c +BUILT_SOURCES = $(nodist_libmswitch_la_SOURCES) +INCLUDES = \ + @COMPIZ_CFLAGS@ \ + -DDATADIR='"$(compdatadir)"' \ + -DLIBDIR='"$(libdir)"' \ + -DLOCALEDIR="\"@datadir@/locale\"" \ + -DIMAGEDIR='"$(imagedir)"' \ + -I$(top_srcdir)/include + +moduledir = $(plugindir) +module_LTLIBRARIES = libmswitch.la +CLEANFILES = *_options.c *_options.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/mswitch/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/mswitch/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + if test -f $$p; then \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(moduledir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(moduledir)/$$f"; \ + else :; fi; \ + done + +uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$p'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$p"; \ + done + +clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libmswitch.la: $(libmswitch_la_OBJECTS) $(libmswitch_la_DEPENDENCIES) + $(libmswitch_la_LINK) -rpath $(moduledir) $(libmswitch_la_OBJECTS) $(libmswitch_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mswitch.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mswitch_options.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(moduledir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-moduleLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-moduleLTLIBRARIES + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-moduleLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-moduleLTLIBRARIES ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-moduleLTLIBRARIES install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-moduleLTLIBRARIES + + +mswitch_options.h: ../../metadata/mswitch.xml.in + $(BCOP_BIN) --header $@ $< + +mswitch_options.c: ../../metadata/mswitch.xml.in mswitch_options.h + $(BCOP_BIN) --source $@ $< +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/snow/CMakeLists.txt /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/snow/CMakeLists.txt --- compiz-fusion-plugins-unsupported-0.7.6/src/snow/CMakeLists.txt 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/snow/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -include (CompizFusion) - -compiz_fusion_plugin (snow) diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/snow/Makefile.am /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/snow/Makefile.am --- compiz-fusion-plugins-unsupported-0.7.6/src/snow/Makefile.am 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/snow/Makefile.am 2008-09-18 17:13:37.000000000 +0100 @@ -3,7 +3,10 @@ libsnow_la_LDFLAGS = $(PFLAGS) libsnow_la_LIBADD = @COMPIZ_LIBS@ -libsnow_la_SOURCES = snow_options.c snow_options.h snow.c +nodist_libsnow_la_SOURCES = snow_options.c snow_options.h +dist_libsnow_la_SOURCES = snow.c + +BUILT_SOURCES = $(nodist_libsnow_la_SOURCES) INCLUDES = \ @COMPIZ_CFLAGS@ \ @@ -20,8 +23,8 @@ CLEANFILES = *_options.c *_options.h -%_options.h: ../../metadata/%.xml +snow_options.h: ../../metadata/snow.xml.in $(BCOP_BIN) --header $@ $< -%_options.c: ../../metadata/%.xml %_options.h +snow_options.c: ../../metadata/snow.xml.in snow_options.h $(BCOP_BIN) --source $@ $< diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/snow/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/snow/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/src/snow/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/snow/Makefile.in 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,556 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src/snow +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(moduledir)" +moduleLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(module_LTLIBRARIES) +libsnow_la_DEPENDENCIES = +dist_libsnow_la_OBJECTS = snow.lo +nodist_libsnow_la_OBJECTS = snow_options.lo +libsnow_la_OBJECTS = $(dist_libsnow_la_OBJECTS) \ + $(nodist_libsnow_la_OBJECTS) +libsnow_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libsnow_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(dist_libsnow_la_SOURCES) $(nodist_libsnow_la_SOURCES) +DIST_SOURCES = $(dist_libsnow_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +PFLAGS = -module -avoid-version -no-undefined +libsnow_la_LDFLAGS = $(PFLAGS) +libsnow_la_LIBADD = @COMPIZ_LIBS@ +nodist_libsnow_la_SOURCES = snow_options.c snow_options.h +dist_libsnow_la_SOURCES = snow.c +BUILT_SOURCES = $(nodist_libsnow_la_SOURCES) +INCLUDES = \ + @COMPIZ_CFLAGS@ \ + -DDATADIR='"$(compdatadir)"' \ + -DLIBDIR='"$(libdir)"' \ + -DLOCALEDIR="\"@datadir@/locale\"" \ + -DIMAGEDIR='"$(imagedir)"' \ + -I$(top_srcdir)/include + +moduledir = $(plugindir) +module_LTLIBRARIES = libsnow.la +CLEANFILES = *_options.c *_options.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/snow/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/snow/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + if test -f $$p; then \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(moduledir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(moduledir)/$$f"; \ + else :; fi; \ + done + +uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$p'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$p"; \ + done + +clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libsnow.la: $(libsnow_la_OBJECTS) $(libsnow_la_DEPENDENCIES) + $(libsnow_la_LINK) -rpath $(moduledir) $(libsnow_la_OBJECTS) $(libsnow_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/snow.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/snow_options.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(moduledir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-moduleLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-moduleLTLIBRARIES + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-moduleLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-moduleLTLIBRARIES ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-moduleLTLIBRARIES install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-moduleLTLIBRARIES + + +snow_options.h: ../../metadata/snow.xml.in + $(BCOP_BIN) --header $@ $< + +snow_options.c: ../../metadata/snow.xml.in snow_options.h + $(BCOP_BIN) --source $@ $< +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/snow/snow.c /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/snow/snow.c --- compiz-fusion-plugins-unsupported-0.7.6/src/snow/snow.c 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/snow/snow.c 2008-09-17 14:29:33.000000000 +0100 @@ -455,11 +455,11 @@ &ss->snowTex[count].height); if (!ss->snowTex[count].loaded) { - compLogMessage (s->display, "snow", CompLogLevelWarn, + compLogMessage ("snow", CompLogLevelWarn, "Texture not found : %s", sd->snowTexFiles[i].s); continue; } - compLogMessage (s->display, "snow", CompLogLevelInfo, + compLogMessage ("snow", CompLogLevelInfo, "Loaded Texture %s", sd->snowTexFiles[i].s); mat = &ss->snowTex[count].tex.matrix; @@ -539,6 +539,9 @@ WRAP (ss, s, drawWindow, snowDrawWindow); ss->timeoutHandle = compAddTimeout (snowGetSnowUpdateDelay (s->display), + (float) + snowGetSnowUpdateDelay (s->display) * + 1.2, stepSnowPositions, s); return TRUE; @@ -606,6 +609,7 @@ compRemoveTimeout (ss->timeoutHandle); ss->timeoutHandle = compAddTimeout (snowGetSnowUpdateDelay (d), + (float) snowGetSnowUpdateDelay (d) * 1.2, stepSnowPositions, s); } } diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/tile/CMakeLists.txt /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/tile/CMakeLists.txt --- compiz-fusion-plugins-unsupported-0.7.6/src/tile/CMakeLists.txt 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/tile/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -include (CompizFusion) - -compiz_fusion_plugin (tile) diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/tile/Makefile.am /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/tile/Makefile.am --- compiz-fusion-plugins-unsupported-0.7.6/src/tile/Makefile.am 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/tile/Makefile.am 2008-09-18 17:13:37.000000000 +0100 @@ -3,7 +3,10 @@ libtile_la_LDFLAGS = $(PFLAGS) libtile_la_LIBADD = @COMPIZ_LIBS@ -libtile_la_SOURCES = tile_options.c tile_options.h tile.c +nodist_libtile_la_SOURCES = tile_options.c tile_options.h +dist_libtile_la_SOURCES = tile.c + +BUILT_SOURCES = $(nodist_libtile_la_SOURCES) INCLUDES = \ @COMPIZ_CFLAGS@ \ @@ -20,8 +23,8 @@ CLEANFILES = *_options.c *_options.h -%_options.h: ../../metadata/%.xml +tile_options.h: ../../metadata/tile.xml.in $(BCOP_BIN) --header $@ $< -%_options.c: ../../metadata/%.xml %_options.h +tile_options.c: ../../metadata/tile.xml.in tile_options.h $(BCOP_BIN) --source $@ $< diff -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/src/tile/Makefile.in /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/src/tile/Makefile.in --- compiz-fusion-plugins-unsupported-0.7.6/src/tile/Makefile.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/src/tile/Makefile.in 2008-09-18 17:22:34.000000000 +0100 @@ -0,0 +1,556 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 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. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src/tile +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(moduledir)" +moduleLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(module_LTLIBRARIES) +libtile_la_DEPENDENCIES = +dist_libtile_la_OBJECTS = tile.lo +nodist_libtile_la_OBJECTS = tile_options.lo +libtile_la_OBJECTS = $(dist_libtile_la_OBJECTS) \ + $(nodist_libtile_la_OBJECTS) +libtile_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libtile_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(dist_libtile_la_SOURCES) $(nodist_libtile_la_SOURCES) +DIST_SOURCES = $(dist_libtile_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BCOP_BIN = @BCOP_BIN@ +BCOP_CFLAGS = @BCOP_CFLAGS@ +BCOP_LIBS = @BCOP_LIBS@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COMPIZ_CFLAGS = @COMPIZ_CFLAGS@ +COMPIZ_LIBS = @COMPIZ_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ +GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GL_CFLAGS = @GL_CFLAGS@ +GL_LIBS = @GL_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SCHEMAS_CFLAGS = @SCHEMAS_CFLAGS@ +SCHEMAS_LIBS = @SCHEMAS_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +compdatadir = @compdatadir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +imagedir = @imagedir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +metadatadir = @metadatadir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +plugindir = @plugindir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +xsltdir = @xsltdir@ +PFLAGS = -module -avoid-version -no-undefined +libtile_la_LDFLAGS = $(PFLAGS) +libtile_la_LIBADD = @COMPIZ_LIBS@ +nodist_libtile_la_SOURCES = tile_options.c tile_options.h +dist_libtile_la_SOURCES = tile.c +BUILT_SOURCES = $(nodist_libtile_la_SOURCES) +INCLUDES = \ + @COMPIZ_CFLAGS@ \ + -DDATADIR='"$(compdatadir)"' \ + -DLIBDIR='"$(libdir)"' \ + -DLOCALEDIR="\"@datadir@/locale\"" \ + -DIMAGEDIR='"$(imagedir)"' \ + -I$(top_srcdir)/include + +moduledir = $(plugindir) +module_LTLIBRARIES = libtile.la +CLEANFILES = *_options.c *_options.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/tile/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/tile/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + if test -f $$p; then \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(moduledir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(moduledir)/$$f"; \ + else :; fi; \ + done + +uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$p'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$p"; \ + done + +clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libtile.la: $(libtile_la_OBJECTS) $(libtile_la_DEPENDENCIES) + $(libtile_la_LINK) -rpath $(moduledir) $(libtile_la_OBJECTS) $(libtile_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tile.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tile_options.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(moduledir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-moduleLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-moduleLTLIBRARIES + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-moduleLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-moduleLTLIBRARIES ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-moduleLTLIBRARIES install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-moduleLTLIBRARIES + + +tile_options.h: ../../metadata/tile.xml.in + $(BCOP_BIN) --header $@ $< + +tile_options.c: ../../metadata/tile.xml.in tile_options.h + $(BCOP_BIN) --source $@ $< +# 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 -Nru /tmp/SfuhumocQy/compiz-fusion-plugins-unsupported-0.7.6/VERSION /tmp/hIXQXrL5ye/compiz-fusion-plugins-unsupported-0.7.8/VERSION --- compiz-fusion-plugins-unsupported-0.7.6/VERSION 2008-06-02 23:58:21.000000000 +0100 +++ compiz-fusion-plugins-unsupported-0.7.8/VERSION 2008-09-18 17:22:16.000000000 +0100 @@ -1 +1 @@ -VERSION=0.7.6 +VERSION=0.7.8