diff -Nru gnome-settings-daemon-3.4.0/aclocal.m4 gnome-settings-daemon-3.4.1/aclocal.m4 --- gnome-settings-daemon-3.4.0/aclocal.m4 2012-03-26 16:16:48.000000000 +0000 +++ gnome-settings-daemon-3.4.1/aclocal.m4 2012-04-16 12:37:14.000000000 +0000 @@ -1,8 +1,7 @@ -# generated automatically by aclocal 1.11.3 -*- Autoconf -*- +# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, -# Inc. +# 2005, 2006, 2007, 2008, 2009 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. @@ -20,747 +19,1060 @@ 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'.])]) -# 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. +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # -# 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. +# 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.11' +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.11.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 AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.11.1])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # -# Macro to add for using GNU gettext. -# Ulrich Drepper , 1995, 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. + +# 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/../..'. # -# Modified to never use included libintl. -# Owen Taylor , 12/15/1998 +# 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. # -# Major rework to remove unused code -# Owen Taylor , 12/11/2002 +# $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 # -# Added better handling of ALL_LINGUAS from GNU gettext version -# written by Bruno Haible, Owen Taylor 5/30/3002 +# 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. # -# Modified to require ngettext -# Matthias Clasen 08/06/2004 +# 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. # -# 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) +# 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. -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 +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` +]) -# 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]) +# AM_CONDITIONAL -*- Autoconf -*- -# 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 -]) +# Copyright (C) 1997, 2000, 2001, 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. -# GLIB_WITH_NLS -#----------------- -glib_DEFUN([GLIB_WITH_NLS], - dnl NLS is obligatory - [USE_NLS=yes - AC_SUBST(USE_NLS) +# serial 9 - gt_cv_have_gettext=no +# 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 +m4_define([_AM_COND_VALUE_$1], [$2])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])]) - CATOBJEXT=NONE - XGETTEXT=: - INTLLIBS= +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 +# 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. - AC_CHECK_HEADER(libintl.h, - [gt_cv_func_dgettext_libintl="no" - libintl_extra_libs="" +# serial 10 - # - # 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 +# 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... - # - # 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 +# _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 - # - # 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" +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=]) - 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 +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 - 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" + 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 + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + 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 + + # 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. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + 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 - - 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]) - ;; - *-*-openbsd*) - CATOBJEXT=.mo - DATADIRNAME=share - ;; - *) - CATOBJEXT=.mo - DATADIRNAME=lib - ;; - esac]) - LIBS="$glib_save_LIBS" - INSTOBJEXT=.mo - else - gt_cv_have_gettext=no - fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj 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 $am__obj 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, 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 5 + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + 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, 2009 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 16 + +# 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.62])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) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +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 +]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) + +dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + + +# 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, 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. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +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])]) - if test "$gt_cv_have_gettext" = "yes" ; then - AC_DEFINE(ENABLE_NLS, 1, - [always defined to indicate that i18n is enabled]) - fi +# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +# From Jim Meyering - 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 +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 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. - # We need to process the po/ directory. - POSUB=po +# serial 5 - AC_OUTPUT_COMMANDS( - [case "$CONFIG_FILES" in *po/Makefile.in*) - sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile - esac]) +# AM_MAINTAINER_MODE([DEFAULT-MODE]) +# ---------------------------------- +# Control maintainer-specific portions of Makefiles. +# Default is to disable them, unless `enable' is passed literally. +# For symmetry, `disable' may be passed as well. Anyway, the user +# can override the default with the --enable/--disable switch. +AC_DEFUN([AM_MAINTAINER_MODE], +[m4_case(m4_default([$1], [disable]), + [enable], [m4_define([am_maintainer_other], [disable])], + [disable], [m4_define([am_maintainer_other], [enable])], + [m4_define([am_maintainer_other], [enable]) + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) +AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) + dnl maintainer-mode's default is 'disable' unless 'enable' is passed + AC_ARG_ENABLE([maintainer-mode], +[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful + (and sometimes confusing) to the casual installer], + [USE_MAINTAINER_MODE=$enableval], + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST([MAINT])dnl +] +) - 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.ac. - for lang in $ALL_LINGUAS; do - GMOFILES="$GMOFILES $lang.gmo" - POFILES="$POFILES $lang.po" - done +AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) - 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) - ]) +# Check to see how 'make' treats includes. -*- Autoconf -*- -# 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 +# Copyright (C) 2001, 2002, 2003, 2005, 2009 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. - 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 +# serial 4 - 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 +# 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 this is the am__doit target +.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 +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) - 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) +# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 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. - 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 - ]) +# serial 6 + +# AM_PROG_CC_C_O +# -------------- +# Like AC_PROG_CC_C_O, but changed for automake. +AC_DEFUN([AM_PROG_CC_C_O], +[AC_REQUIRE([AC_PROG_CC_C_O])dnl +AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([compile])dnl +# FIXME: we rely on the cache variable name because +# there is no other way. +set dummy $CC +am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +dnl Make sure AC_PROG_CC is never called again, or it will override our +dnl setting of CC. +m4_define([AC_PROG_CC], + [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 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 6 + +# 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_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"` + +# 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 +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " else - localedir=`eval echo "${datadir}/locale"` + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) 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_ac,[],[ -AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) -AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) -])dnl +# 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. -# 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]) +# 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 -*- -dnl GLIB_GSETTINGS -dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether -dnl the schema should be compiled -dnl +# Copyright (C) 2001, 2002, 2003, 2005, 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. -AC_DEFUN([GLIB_GSETTINGS], -[ - m4_pattern_allow([AM_V_GEN]) - AC_ARG_ENABLE(schemas-compile, - AS_HELP_STRING([--disable-schemas-compile], - [Disable regeneration of gschemas.compiled on install]), - [case ${enableval} in - yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; - no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; - *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-compile]) ;; - esac]) - AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE]) - PKG_PROG_PKG_CONFIG([0.16]) - AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas]) - if test x$cross_compiling != xyes; then - GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable glib_compile_schemas gio-2.0` - else - AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas) - fi - AC_SUBST(GLIB_COMPILE_SCHEMAS) - if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then - ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2]) - else - ifelse([$1],,[:],[$1]) - fi +# serial 4 - GSETTINGS_RULES=' -.PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) -mostlyclean-am: clean-gsettings-schemas +# _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)]) -gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) +# _AM_SET_OPTIONS(OPTIONS) +# ---------------------------------- +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) -%.gschema.valid: %.gschema.xml $(gsettings__enum_file) - $(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$${d}$< && touch [$]@ +# _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])]) -all-am: $(gsettings_SCHEMAS:.xml=.valid) -uninstall-am: uninstall-gsettings-schemas -install-data-am: install-gsettings-schemas +# 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. -.SECONDARY: $(gsettings_SCHEMAS) +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) -install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) - @$(NORMAL_INSTALL) - if test -n "$^"; then \ - test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ - $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ - test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ - fi +# Check to make sure that the build environment is sane. -*- Autoconf -*- -uninstall-gsettings-schemas: - @$(NORMAL_UNINSTALL) - @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files - test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 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. -clean-gsettings-schemas: - rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) +# serial 5 -ifdef gsettings_ENUM_NAMESPACE -$(gsettings__enum_file): $(gsettings_ENUM_FILES) - $(AM_V_GEN) glib-mkenums --comments '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@ -endif +# 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 +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' ' - _GSETTINGS_SUBST(GSETTINGS_RULES) -]) - -dnl _GSETTINGS_SUBST(VARIABLE) -dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST -AC_DEFUN([_GSETTINGS_SUBST], -[ -AC_SUBST([$1]) -m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) -] -) - +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac -dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) -# serial 42 IT_PROG_INTLTOOL -AC_DEFUN([IT_PROG_INTLTOOL], [ -AC_PREREQ([2.50])dnl -AC_REQUIRE([AM_NLS])dnl +# 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 -case "$am__api_version" in - 1.[01234]) - AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) - ;; - *) - ;; -esac + # 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 -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; }'` -if test -n "$1"; then - AC_MSG_CHECKING([for intltool >= $1]) - 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.]) + 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)]) -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 +# Copyright (C) 2009 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. -if test -z "$AM_DEFAULT_VERBOSITY"; then - AM_DEFAULT_VERBOSITY=1 -fi -AC_SUBST([AM_DEFAULT_VERBOSITY]) +# serial 1 -INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' -INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' -INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;' -AC_SUBST(INTLTOOL_V_MERGE) -AC_SUBST(INTLTOOL__v_MERGE_) -AC_SUBST(INTLTOOL__v_MERGE_0) - -INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' -intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' -intltool__v_merge_options_0='-q' -AC_SUBST(INTLTOOL_V_MERGE_OPTIONS) -AC_SUBST(intltool__v_merge_options_) -AC_SUBST(intltool__v_merge_options_0) - - INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< [$]@' - INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' -if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then - INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< [$]@' -else - INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.[$][$]RANDOM && mkdir [$][$]_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u [$][$]_it_tmp_dir $< [$]@ && rmdir [$][$]_it_tmp_dir' -fi - INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# (`yes' being less verbose, `no' or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], +[ --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0')]) +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) -_IT_SUBST(INTLTOOL_DESKTOP_RULE) -_IT_SUBST(INTLTOOL_DIRECTORY_RULE) -_IT_SUBST(INTLTOOL_KEYS_RULE) -_IT_SUBST(INTLTOOL_PROP_RULE) -_IT_SUBST(INTLTOOL_OAF_RULE) -_IT_SUBST(INTLTOOL_PONG_RULE) -_IT_SUBST(INTLTOOL_SERVER_RULE) -_IT_SUBST(INTLTOOL_SHEET_RULE) -_IT_SUBST(INTLTOOL_SOUNDLIST_RULE) -_IT_SUBST(INTLTOOL_UI_RULE) -_IT_SUBST(INTLTOOL_XAM_RULE) -_IT_SUBST(INTLTOOL_KBD_RULE) -_IT_SUBST(INTLTOOL_XML_RULE) -_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) -_IT_SUBST(INTLTOOL_CAVES_RULE) -_IT_SUBST(INTLTOOL_SCHEMAS_RULE) -_IT_SUBST(INTLTOOL_THEME_RULE) -_IT_SUBST(INTLTOOL_SERVICE_RULE) -_IT_SUBST(INTLTOOL_POLICY_RULE) +# 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. -# 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) -AC_PATH_PROG(GMSGFMT, gmsgfmt, $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]) +# 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])]) -AC_PATH_PROG(INTLTOOL_PERL, perl) -if test -z "$INTLTOOL_PERL"; then - AC_MSG_ERROR([perl not found]) -fi -AC_MSG_CHECKING([for perl >= 5.8.1]) -$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 -if test $? -ne 0; then - AC_MSG_ERROR([perl 5.8.1 is required for intltool]) -else - IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` - AC_MSG_RESULT([$IT_PERL_VERSION]) -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 +# Copyright (C) 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. -# Substitute ALL_LINGUAS so we can use it in po/Makefile -AC_SUBST(ALL_LINGUAS) +# serial 2 -# 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) +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) -IT_PO_SUBDIR([po]) +# AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_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. -# IT_PO_SUBDIR(DIRNAME) -# --------------------- -# All po subdirs have to be declared with this macro; the subdir "po" is -# declared by IT_PROG_INTLTOOL. +# serial 2 + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. # -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 executed at the very end -dnl of config.status. -AC_CONFIG_COMMANDS_PRE([ - AC_CONFIG_COMMANDS([$1/stamp-it], [ - if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then - AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) - fi - 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" - ] - [sed '/^POTFILES =/,/[^\\]$/ { - /^POTFILES =/!d - r $1/POTFILES - } - ' "$1/Makefile.in" >"$1/Makefile"] - rm -f "$1/Makefile.tmp" - mv "$1/stamp-it.tmp" "$1/stamp-it" - ]) -])dnl -]) +# 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 -# _IT_SUBST(VARIABLE) -# ------------------- -# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST -# -AC_DEFUN([_IT_SUBST], -[ -AC_SUBST([$1]) -m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) -] -) + # 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 -# 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], ...) + # 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 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, +# Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives @@ -769,8 +1081,8 @@ m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, +# Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. @@ -904,8 +1216,6 @@ AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl -_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl -dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl @@ -1391,7 +1701,7 @@ m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. -Copyright (C) 2011 Free Software Foundation, Inc. +Copyright (C) 2010 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." @@ -1555,7 +1865,6 @@ m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], - [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], @@ -1577,29 +1886,6 @@ ])# _LT_LANG -m4_ifndef([AC_PROG_GO], [ -# NOTE: This macro has been submitted for inclusion into # -# GNU Autoconf as AC_PROG_GO. When it is available in # -# a released version of Autoconf we should remove this # -# macro and use it instead. # -m4_defun([AC_PROG_GO], -[AC_LANG_PUSH(Go)dnl -AC_ARG_VAR([GOC], [Go compiler command])dnl -AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl -_AC_ARG_VAR_LDFLAGS()dnl -AC_CHECK_TOOL(GOC, gccgo) -if test -z "$GOC"; then - if test -n "$ac_tool_prefix"; then - AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) - fi -fi -if test -z "$GOC"; then - AC_CHECK_PROG(GOC, gccgo, gccgo, false) -fi -])#m4_defun -])#m4_ifndef - - # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], @@ -1630,10 +1916,6 @@ m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) -AC_PROVIDE_IFELSE([AC_PROG_GO], - [LT_LANG(GO)], - [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) - AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) @@ -1736,13 +2018,7 @@ $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? - # If there is a non-empty error log, and "single_module" - # appears in it, assume the flag caused a linker warning - if test -s conftest.err && $GREP single_module conftest.err; then - cat conftest.err >&AS_MESSAGE_LOG_FD - # Otherwise, if the output was created with a 0 exit code from - # the compiler, it worked. - elif test -f libconftest.dylib && test $_lt_result -eq 0; then + 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 @@ -1750,7 +2026,6 @@ 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 @@ -1762,7 +2037,6 @@ [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) - AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF @@ -1780,9 +2054,7 @@ echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? - if test -s conftest.err && $GREP force_load conftest.err; then - cat conftest.err >&AS_MESSAGE_LOG_FD - elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -1827,8 +2099,8 @@ ]) -# _LT_DARWIN_LINKER_FEATURES([TAG]) -# --------------------------------- +# _LT_DARWIN_LINKER_FEATURES +# -------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ @@ -1839,8 +2111,6 @@ _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], - [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi @@ -2124,27 +2394,14 @@ CFLAGS="$SAVE_CFLAGS" fi ;; -*-*solaris*) +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*) - case $host in - i?86-*-solaris*) - LD="${LD-ld} -m elf_x86_64" - ;; - sparc*-*-solaris*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - # GNU ld 2.21 introduced _sol2 emulations. Use them if available. - if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD="${LD-ld}_sol2" - fi - ;; + 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" @@ -2221,13 +2478,13 @@ if test -n "$RANLIB"; then case $host_os in openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" + old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi case $host_os in @@ -2407,11 +2664,6 @@ lt_cv_sys_max_cmd_len=196608 ;; - os2*) - # The test takes a long time on OS/2. - lt_cv_sys_max_cmd_len=8192 - ;; - 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 @@ -2451,7 +2703,7 @@ # 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"`env echo "$teststring$teststring" 2>/dev/null` \ + while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do @@ -2997,7 +3249,7 @@ case $host_os in aix3*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH @@ -3006,7 +3258,7 @@ ;; aix[[4-9]]*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes @@ -3071,7 +3323,7 @@ ;; bsdi[[45]]*) - version_type=linux # correct to gnu/linux during the next big refactor + 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' @@ -3210,7 +3462,7 @@ ;; dgux*) - version_type=linux # correct to gnu/linux during the next big refactor + 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' @@ -3218,6 +3470,10 @@ 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. @@ -3225,7 +3481,7 @@ objformat=`/usr/bin/objformat` else case $host_os in - freebsd[[23]].*) objformat=aout ;; + freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi @@ -3243,7 +3499,7 @@ esac shlibpath_var=LD_LIBRARY_PATH case $host_os in - freebsd2.*) + freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) @@ -3263,18 +3519,17 @@ ;; gnu*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 ;; haiku*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" @@ -3335,7 +3590,7 @@ ;; interix[[3-9]]*) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -3351,7 +3606,7 @@ nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux else version_type=irix fi ;; @@ -3388,9 +3643,9 @@ dynamic_linker=no ;; -# This must be glibc/ELF. +# This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -3457,7 +3712,7 @@ ;; newsos6) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -3526,7 +3781,7 @@ ;; solaris*) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -3551,7 +3806,7 @@ ;; sysv4 | sysv4.3*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -3575,7 +3830,7 @@ sysv4*MP*) if test -d /usr/nec ;then - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -3606,7 +3861,7 @@ tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -3616,7 +3871,7 @@ ;; uts4*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -4038,7 +4293,7 @@ lt_cv_deplibs_check_method=pass_all ;; -# This must be glibc/ELF. +# This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; @@ -4458,7 +4713,6 @@ # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ -" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ @@ -5043,9 +5297,7 @@ case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' - if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" - fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Xcompiler -fPIC' ;; esac else @@ -5137,33 +5389,18 @@ ;; *) case `$CC -V 2>&1 | sed 5q` in - *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + *Sun\ F* | *Sun*Fortran*) # 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)='' ;; - *Sun\ F* | *Sun*Fortran*) - _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 ' - ;; *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,' ;; - *Intel*\ [[CF]]*Compiler*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - *Portland\ Group*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; esac ;; esac @@ -5323,9 +5560,7 @@ ;; cygwin* | mingw* | cegcc*) case $cc_basename in - cl*) - _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' - ;; + cl*) ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] @@ -5350,6 +5585,7 @@ _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 @@ -5600,7 +5836,8 @@ xlf* | bgf* | bgxlf* | mpixlf*) # 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)='${wl}-rpath ${wl}$libdir' + _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 $linker_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~ @@ -5895,7 +6132,6 @@ # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _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' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' @@ -5942,6 +6178,10 @@ _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 @@ -5954,7 +6194,7 @@ ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2.*) + 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 @@ -5993,6 +6233,7 @@ 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 @@ -6434,6 +6675,9 @@ _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], @@ -6587,6 +6831,7 @@ _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 @@ -6956,7 +7201,7 @@ esac ;; - freebsd2.*) + freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no @@ -7717,18 +7962,12 @@ } }; _LT_EOF -], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF -package foo -func foo() { -} -_LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; -*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary @@ -7925,6 +8164,7 @@ _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 @@ -8057,6 +8297,7 @@ _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 @@ -8239,73 +8480,6 @@ ])# _LT_LANG_GCJ_CONFIG -# _LT_LANG_GO_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for the GNU Go compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_GO_CONFIG], -[AC_REQUIRE([LT_PROG_GO])dnl -AC_LANG_SAVE - -# Source file extension for Go test sources. -ac_ext=go - -# Object file extension for compiled Go test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="package main; func main() { }" - -# Code to be used in simple link tests -lt_simple_link_test_code='package main; func main() { }' - -# 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_CFLAGS=$CFLAGS -lt_save_GCC=$GCC -GCC=yes -CC=${GOC-"gccgo"} -CFLAGS=$GOFLAGS -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" -_LT_CC_BASENAME([$compiler]) - -# Go 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 -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_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 -CFLAGS=$lt_save_CFLAGS -])# _LT_LANG_GO_CONFIG - - # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler @@ -8375,13 +8549,6 @@ dnl AC_DEFUN([LT_AC_PROG_GCJ], []) -# LT_PROG_GO -# ---------- -AC_DEFUN([LT_PROG_GO], -[AC_CHECK_TOOL(GOC, gccgo,) -]) - - # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], @@ -8874,1768 +9041,1368 @@ 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. + +# _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_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[@:>@])], +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_fast_install=yes ;; - no) enable_fast_install=no ;; + yes) enable_shared=yes ;; + no) enable_shared=no ;; *) - enable_fast_install=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_fast_install=yes + enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], - [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) -_LT_DECL([fast_install], [enable_fast_install], [0], - [Whether or not to optimize for fast installation])dnl -])# _LT_ENABLE_FAST_INSTALL + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED -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])]) +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([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.]) +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) -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.]) +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([AC_ENABLE_FAST_INSTALL], []) -dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) -# _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@<:@=PKGS@:>@], - [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [lt_p=${PACKAGE-default} - case $withval in - yes|no) pic_mode=$withval ;; + +# _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 ;; *) - pic_mode=default + 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 lt_pkg in $withval; do + for pkg in $enableval; do IFS="$lt_save_ifs" - if test "X$lt_pkg" = "X$lt_p"; then - pic_mode=yes + if test "X$pkg" = "X$p"; then + enable_static=yes fi done - IFS="$lt_save_ifs" - ;; - esac], - [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, 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 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. -# Needed until we can rely on m4_combine added in Autoconf 2.62. -m4_define([lt_combine], -[m4_if(m4_eval([$# > 3]), [1], - [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl -[[m4_foreach([_Lt_prefix], [$2], - [m4_foreach([_Lt_suffix], - ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, - [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) - - -# 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. - -# @configure_input@ + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) -# serial 3337 ltversion.m4 -# This file is part of GNU Libtool + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC -m4_define([LT_PACKAGE_VERSION], [2.4.2]) -m4_define([LT_PACKAGE_REVISION], [1.3337]) +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) -AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4.2' -macro_revision='1.3337' -_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) -_LT_DECL(, macro_revision, 0) +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) -# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- -# -# Copyright (C) 2004, 2005, 2007, 2009 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 5 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_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])]) -m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) -m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) -m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) -m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) -m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) -m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) -m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) - -# nls.m4 serial 5 (gettext-0.18) -dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation, -dnl Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can can be used in projects which are not available under -dnl the GNU General Public License or the GNU Library General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Library General Public License, and the rest of the GNU -dnl gettext package package is covered by the GNU General Public License. -dnl They are *not* in the public domain. +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2003. +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) -AC_PREREQ([2.50]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) -AC_DEFUN([AM_NLS], -[ - AC_MSG_CHECKING([whether NLS is requested]) - dnl Default is enabled NLS - AC_ARG_ENABLE([nls], - [ --disable-nls do not use Native Language Support], - USE_NLS=$enableval, USE_NLS=yes) - AC_MSG_RESULT([$USE_NLS]) - AC_SUBST([USE_NLS]) -]) -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# 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]) +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- -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]) -AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) -AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) - -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="" +# 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 -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. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have 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_default([$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -m4_define([_PKG_CONFIG], -[if test -n "$$1"; then - pkg_cv_[]$1="$$1" - elif test -n "$PKG_CONFIG"; then - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - else - pkg_failed=untried -fi[]dnl -])# _PKG_CONFIG +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL -# _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 +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.]) +]) -# 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 +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.]) +]) -pkg_failed=no -AC_MSG_CHECKING([for $1]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) -_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.]) +# _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]) -if test $pkg_failed = yes; then - AC_MSG_RESULT([no]) - _PKG_SHORT_ERRORS_SUPPORTED - if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) - m4_default([$4], [AC_MSG_ERROR( -[Package requirements ($2) were not met: +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC -$$1_PKG_ERRORS +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. +# 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.]) +]) -_PKG_TEXT]) - ]) -elif test $pkg_failed = untried; then - AC_MSG_RESULT([no]) - m4_default([$4], [AC_MSG_FAILURE( -[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. +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) -_PKG_TEXT -To get pkg-config, see .]) - ]) -else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS - AC_MSG_RESULT([yes]) - $3 -fi[]dnl -])# PKG_CHECK_MODULES +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])]) -# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software -# Foundation, Inc. +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # -# 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. +# 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 1 +# serial 6 ltsugar.m4 -# 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.11' -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.11.3], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl -]) +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) -# _AM_AUTOCONF_VERSION(VERSION) + +# lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- -# 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], []) +# 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($@)))])]) -# AM_SET_CURRENT_AUTOMAKE_VERSION -# ------------------------------- -# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.11.3])dnl -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) -# AM_AUX_DIR_EXPAND -*- Autoconf -*- +# 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) + -# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# 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 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 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])]) -# serial 1 -# 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` -]) +# 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. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# 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])]) + -# AM_CONDITIONAL -*- Autoconf -*- +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) -# Copyright (C) 1997, 2000, 2001, 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 9 +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) -# 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 -m4_define([_AM_COND_VALUE_$1], [$2])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, 2009, -# 2010, 2011 Free Software Foundation, Inc. +# 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 -*- # -# 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. +# 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. -# serial 12 +# @configure_input@ -# 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... +# serial 3293 ltversion.m4 +# This file is part of GNU Libtool +m4_define([LT_PACKAGE_VERSION], [2.4]) +m4_define([LT_PACKAGE_REVISION], [1.3293]) -# _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. +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4' +macro_revision='1.3293' +_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-*- # -# 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 +# Copyright (C) 2004, 2005, 2007, 2009 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. -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=]) +# serial 5 lt~obsolete.m4 -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'. - rm -rf conftest.dir - 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 +# 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. - 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 - am__universal=false - m4_case([$1], [CC], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac], - [CXX], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac]) +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) - 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 +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_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])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) - # 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. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - 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 - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj 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 $am__obj 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 +# nls.m4 serial 5 (gettext-0.18) +dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation, +dnl Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. - 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]) -]) +dnl Authors: +dnl Ulrich Drepper , 1995-2000. +dnl Bruno Haible , 2000-2003. +AC_PREREQ([2.50]) -# 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 +AC_DEFUN([AM_NLS], +[ + AC_MSG_CHECKING([whether NLS is requested]) + dnl Default is enabled NLS + AC_ARG_ENABLE([nls], + [ --disable-nls do not use Native Language Support], + USE_NLS=$enableval, USE_NLS=yes) + AC_MSG_RESULT([$USE_NLS]) + AC_SUBST([USE_NLS]) ]) +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) +# +# 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. -# 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='\' - am__nodep='_no' -fi -AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -AC_SUBST([AMDEPBACKSLASH])dnl -_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl -AC_SUBST([am__nodep])dnl -_AM_SUBST_NOTMAKE([am__nodep])dnl -]) +# 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]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) -# Generate code to set up dependency tracking. -*- Autoconf -*- +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 -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 -# Free Software Foundation, Inc. +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # -# 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_OUTPUT_DEPENDENCY_COMMANDS -# ------------------------------ -AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[{ - # Autoconf 2.62 quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - 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 +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have 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_default([$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG -# AM_OUTPUT_DEPENDENCY_COMMANDS +# _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- -# 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"]) -]) +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 -# Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) # -# 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 16 +# +# 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 -# 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. +pkg_failed=no +AC_MSG_CHECKING([for $1]) -# 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.62])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 +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) -# 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]) +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.]) -# 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 +if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + m4_default([$4], [AC_MSG_ERROR( +[Package requirements ($2) were not met: -# 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) -AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl -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 -]) -_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl -dnl The `parallel-tests' driver may need to know about EXEEXT, so add the -dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro -dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. -AC_CONFIG_COMMANDS_PRE(dnl -[m4_provide_if([_AM_COMPILER_EXEEXT], - [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl -]) +$$1_PKG_ERRORS -dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not -dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further -dnl mangled by Autoconf and run in a shell conditional statement. -m4_define([_AC_COMPILER_EXEEXT], -m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. +_PKG_TEXT]) + ]) +elif test $pkg_failed = untried; then + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( +[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. -# 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. +_PKG_TEXT -# 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]) +To get pkg-config, see .]) + ]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + $3 +fi[]dnl +])# PKG_CHECK_MODULES -# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, -# Inc. +# Copyright (C) 1995-2002 Free Software Foundation, Inc. +# Copyright (C) 2001-2003,2004 Red Hat, 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 1 - -# AM_PROG_INSTALL_SH -# ------------------ -# Define $install_sh. -AC_DEFUN([AM_PROG_INSTALL_SH], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi -AC_SUBST(install_sh)]) - -# Copyright (C) 2003, 2005 Free Software Foundation, 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 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 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 -# serial 2 +# 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]) -# 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=. +# 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 - am__leading_dot=_ + AC_MSG_RESULT(no) fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) +AC_SUBST($1)dnl +]) -# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- -# From Jim Meyering +# GLIB_WITH_NLS +#----------------- +glib_DEFUN([GLIB_WITH_NLS], + dnl NLS is obligatory + [USE_NLS=yes + AC_SUBST(USE_NLS) -# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, -# 2011 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. + gt_cv_have_gettext=no -# serial 5 + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= -# AM_MAINTAINER_MODE([DEFAULT-MODE]) -# ---------------------------------- -# Control maintainer-specific portions of Makefiles. -# Default is to disable them, unless `enable' is passed literally. -# For symmetry, `disable' may be passed as well. Anyway, the user -# can override the default with the --enable/--disable switch. -AC_DEFUN([AM_MAINTAINER_MODE], -[m4_case(m4_default([$1], [disable]), - [enable], [m4_define([am_maintainer_other], [disable])], - [disable], [m4_define([am_maintainer_other], [enable])], - [m4_define([am_maintainer_other], [enable]) - m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) -AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) - dnl maintainer-mode's default is 'disable' unless 'enable' is passed - AC_ARG_ENABLE([maintainer-mode], -[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful - (and sometimes confusing) to the casual installer], - [USE_MAINTAINER_MODE=$enableval], - [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) - AC_MSG_RESULT([$USE_MAINTAINER_MODE]) - AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) - MAINT=$MAINTAINER_MODE_TRUE - AC_SUBST([MAINT])dnl -] -) + AC_CHECK_HEADER(libintl.h, + [gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" -AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + # + # 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 -# Check to see how 'make' treats includes. -*- Autoconf -*- + # + # 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)])]) -# Copyright (C) 2001, 2002, 2003, 2005, 2009 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. + 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 -# serial 4 + # + # 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" -# 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 this is the am__doit target -.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 -# Ignore all kinds of additional output from `make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) + 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]) + ;; + *-*-openbsd*) + CATOBJEXT=.mo + DATADIRNAME=share + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac]) + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + ]) -# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 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. + if test "$gt_cv_have_gettext" = "yes" ; then + AC_DEFINE(ENABLE_NLS, 1, + [always defined to indicate that i18n is enabled]) + fi -# serial 6 + 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 -# AM_PROG_CC_C_O -# -------------- -# Like AC_PROG_CC_C_O, but changed for automake. -AC_DEFUN([AM_PROG_CC_C_O], -[AC_REQUIRE([AC_PROG_CC_C_O])dnl -AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -AC_REQUIRE_AUX_FILE([compile])dnl -# FIXME: we rely on the cache variable name because -# there is no other way. -set dummy $CC -am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` -eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o -if test "$am_t" != yes; then - # Losing compiler, so override with the script. - # FIXME: It is wrong to rewrite CC. - # But if we don't then we get into trouble of one sort or another. - # A longer-term fix would be to have automake use am__CC in this case, - # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" - CC="$am_aux_dir/compile $CC" -fi -dnl Make sure AC_PROG_CC is never called again, or it will override our -dnl setting of CC. -m4_define([AC_PROG_CC], - [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) -]) + # We need to process the po/ directory. + POSUB=po -# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + AC_OUTPUT_COMMANDS( + [case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac]) -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 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. + 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.ac. + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done -# serial 6 + 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_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_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 -# 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 -if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac -fi -# 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 -]) + 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 -# Copyright (C) 2003, 2004, 2005, 2006, 2011 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. + 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) -# serial 1 + 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_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 +# 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]) ]) -# Helper functions for option handling. -*- Autoconf -*- +dnl +dnl Now the definitions that aclocal will find +dnl +ifdef(glib_configure_ac,[],[ +AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +])dnl -# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 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. +# 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]) -# serial 5 -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) +dnl GLIB_GSETTINGS +dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether +dnl the schema should be compiled +dnl -# _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)]) +AC_DEFUN([GLIB_GSETTINGS], +[ + m4_pattern_allow([AM_V_GEN]) + AC_ARG_ENABLE(schemas-compile, + AS_HELP_STRING([--disable-schemas-compile], + [Disable regeneration of gschemas.compiled on install]), + [case ${enableval} in + yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; + no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; + *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-compile]) ;; + esac]) + AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE]) + PKG_PROG_PKG_CONFIG([0.16]) + AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas]) + if test x$cross_compiling != xyes; then + GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable glib_compile_schemas gio-2.0` + else + AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas) + fi + AC_SUBST(GLIB_COMPILE_SCHEMAS) + if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then + ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2]) + else + ifelse([$1],,[:],[$1]) + fi -# _AM_SET_OPTIONS(OPTIONS) -# ------------------------ -# OPTIONS is a space-separated list of Automake options. -AC_DEFUN([_AM_SET_OPTIONS], -[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + GSETTINGS_RULES=' +.PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas -# _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])]) +mostlyclean-am: clean-gsettings-schemas -# Copyright (C) 2001, 2003, 2005, 2011 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. +gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) -# serial 1 +%.gschema.valid: %.gschema.xml $(gsettings__enum_file) + $(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$${d}$< && touch [$]@ -# AM_RUN_LOG(COMMAND) -# ------------------- -# Run COMMAND, save the exit status in ac_status, and log it. -# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) -AC_DEFUN([AM_RUN_LOG], -[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD - ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - (exit $ac_status); }]) +all-am: $(gsettings_SCHEMAS:.xml=.valid) +uninstall-am: uninstall-gsettings-schemas +install-data-am: install-gsettings-schemas -# Check to make sure that the build environment is sane. -*- Autoconf -*- +.SECONDARY: $(gsettings_SCHEMAS) -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 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. +install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) + @$(NORMAL_INSTALL) + if test -n "$^"; then \ + test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ + $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ + test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ + fi -# serial 5 +uninstall-gsettings-schemas: + @$(NORMAL_UNINSTALL) + @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files + test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) -# 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 -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' +clean-gsettings-schemas: + rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) + +ifdef gsettings_ENUM_NAMESPACE +$(gsettings__enum_file): $(gsettings_ENUM_FILES) + $(AM_V_GEN) glib-mkenums --comments '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@ +endif ' -case `pwd` in - *[[\\\"\#\$\&\'\`$am_lf]]*) - AC_MSG_ERROR([unsafe absolute working directory name]);; -esac -case $srcdir in - *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) - AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; -esac + _GSETTINGS_SUBST(GSETTINGS_RULES) +]) -# 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 +dnl _GSETTINGS_SUBST(VARIABLE) +dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST +AC_DEFUN([_GSETTINGS_SUBST], +[ +AC_SUBST([$1]) +m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) +] +) - # 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)]) +dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) +# serial 40 IT_PROG_INTLTOOL +AC_DEFUN([IT_PROG_INTLTOOL], [ +AC_PREREQ([2.50])dnl +AC_REQUIRE([AM_NLS])dnl -# Copyright (C) 2009, 2011 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. +case "$am__api_version" in + 1.[01234]) + AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) + ;; + *) + ;; +esac -# serial 2 +if test -n "$1"; then + AC_MSG_CHECKING([for intltool >= $1]) -# AM_SILENT_RULES([DEFAULT]) -# -------------------------- -# Enable less verbose build rules; with the default set to DEFAULT -# (`yes' being less verbose, `no' or empty being verbose). -AC_DEFUN([AM_SILENT_RULES], -[AC_ARG_ENABLE([silent-rules], -[ --enable-silent-rules less verbose build output (undo: `make V=1') - --disable-silent-rules verbose build output (undo: `make V=0')]) -case $enable_silent_rules in -yes) AM_DEFAULT_VERBOSITY=0;; -no) AM_DEFAULT_VERBOSITY=1;; -*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; -esac -dnl -dnl A few `make' implementations (e.g., NonStop OS and NextStep) -dnl do not support nested variable expansions. -dnl See automake bug#9928 and bug#10237. -am_make=${MAKE-make} -AC_CACHE_CHECK([whether $am_make supports nested variables], - [am_cv_make_support_nested_variables], - [if AS_ECHO([['TRUE=$(BAR$(V)) -BAR0=false -BAR1=true -V=1 -am__doit: - @$(TRUE) -.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then - am_cv_make_support_nested_variables=yes -else - am_cv_make_support_nested_variables=no -fi]) -if test $am_cv_make_support_nested_variables = yes; then - dnl Using `$V' instead of `$(V)' breaks IRIX make. - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY + 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 -AC_SUBST([AM_V])dnl -AM_SUBST_NOTMAKE([AM_V])dnl -AC_SUBST([AM_DEFAULT_V])dnl -AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl -AC_SUBST([AM_DEFAULT_VERBOSITY])dnl -AM_BACKSLASH='\' -AC_SUBST([AM_BACKSLASH])dnl -_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl -]) -# Copyright (C) 2001, 2003, 2005, 2011 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. + 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 $< [$]@' -# serial 1 +_IT_SUBST(INTLTOOL_DESKTOP_RULE) +_IT_SUBST(INTLTOOL_DIRECTORY_RULE) +_IT_SUBST(INTLTOOL_KEYS_RULE) +_IT_SUBST(INTLTOOL_PROP_RULE) +_IT_SUBST(INTLTOOL_OAF_RULE) +_IT_SUBST(INTLTOOL_PONG_RULE) +_IT_SUBST(INTLTOOL_SERVER_RULE) +_IT_SUBST(INTLTOOL_SHEET_RULE) +_IT_SUBST(INTLTOOL_SOUNDLIST_RULE) +_IT_SUBST(INTLTOOL_UI_RULE) +_IT_SUBST(INTLTOOL_XAM_RULE) +_IT_SUBST(INTLTOOL_KBD_RULE) +_IT_SUBST(INTLTOOL_XML_RULE) +_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) +_IT_SUBST(INTLTOOL_CAVES_RULE) +_IT_SUBST(INTLTOOL_SCHEMAS_RULE) +_IT_SUBST(INTLTOOL_THEME_RULE) +_IT_SUBST(INTLTOOL_SERVICE_RULE) +_IT_SUBST(INTLTOOL_POLICY_RULE) -# 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], :) +# 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) +AC_PATH_PROG(GMSGFMT, gmsgfmt, $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 -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -AC_SUBST([INSTALL_STRIP_PROGRAM])]) - -# Copyright (C) 2006, 2008, 2010 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 +AC_PATH_PROG(INTLTOOL_PERL, perl) +if test -z "$INTLTOOL_PERL"; then + AC_MSG_ERROR([perl not found]) +fi +AC_MSG_CHECKING([for perl >= 5.8.1]) +$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 +if test $? -ne 0; then + AC_MSG_ERROR([perl 5.8.1 is required for intltool]) +else + IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" + AC_MSG_RESULT([$IT_PERL_VERSION]) +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 -# _AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. -# This macro is traced by Automake. -AC_DEFUN([_AM_SUBST_NOTMAKE]) +# Substitute ALL_LINGUAS so we can use it in po/Makefile +AC_SUBST(ALL_LINGUAS) -# AM_SUBST_NOTMAKE(VARIABLE) -# -------------------------- -# Public sister of _AM_SUBST_NOTMAKE. -AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) +# 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) -# Check how to create a tarball. -*- Autoconf -*- +IT_PO_SUBDIR([po]) -# Copyright (C) 2004, 2005, 2012 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 +# IT_PO_SUBDIR(DIRNAME) +# --------------------- +# All po subdirs have to be declared with this macro; the subdir "po" is +# declared by IT_PROG_INTLTOOL. # -# 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. Yes, it's still used -# in the wild :-( We should find a proper way to deprecate it ... -AC_SUBST([AMTAR], ['$${TAR-tar}']) -m4_if([$1], [v7], - [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} 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 +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 executed at the very end +dnl of config.status. +AC_CONFIG_COMMANDS_PRE([ + AC_CONFIG_COMMANDS([$1/stamp-it], [ + if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then + AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) + fi + 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" + ] + [sed '/^POTFILES =/,/[^\\]$/ { + /^POTFILES =/!d + r $1/POTFILES + } + ' "$1/Makefile.in" >"$1/Makefile"] + rm -f "$1/Makefile.tmp" + mv "$1/stamp-it.tmp" "$1/stamp-it" + ]) +])dnl +]) - # 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 +# _IT_SUBST(VARIABLE) +# ------------------- +# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST +# +AC_DEFUN([_IT_SUBST], +[ +AC_SUBST([$1]) +m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) +] +) - # 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 +# 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], ...) -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 m4_include([acinclude.m4]) diff -Nru gnome-settings-daemon-3.4.0/compile gnome-settings-daemon-3.4.1/compile --- gnome-settings-daemon-3.4.0/compile 2012-03-26 15:23:52.000000000 +0000 +++ gnome-settings-daemon-3.4.1/compile 2012-02-27 14:57:28.000000000 +0000 @@ -1,10 +1,10 @@ #! /bin/sh -# Wrapper for compilers which do not understand '-c -o'. +# Wrapper for compilers which do not understand `-c -o'. -scriptversion=2012-01-04.17; # UTC +scriptversion=2009-10-06.20; # UTC -# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free -# Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 Free Software +# Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -29,186 +29,21 @@ # bugs to or send patches to # . -nl=' -' - -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent tools from complaining about whitespace usage. -IFS=" "" $nl" - -file_conv= - -# func_file_conv build_file lazy -# Convert a $build file to $host form and store it in $file -# Currently only supports Windows hosts. If the determined conversion -# type is listed in (the comma separated) LAZY, no conversion will -# take place. -func_file_conv () -{ - file=$1 - case $file in - / | /[!/]*) # absolute file, and not a UNC file - if test -z "$file_conv"; then - # lazily determine how to convert abs files - case `uname -s` in - MINGW*) - file_conv=mingw - ;; - CYGWIN*) - file_conv=cygwin - ;; - *) - file_conv=wine - ;; - esac - fi - case $file_conv/,$2, in - *,$file_conv,*) - ;; - mingw/*) - file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` - ;; - cygwin/*) - file=`cygpath -m "$file" || echo "$file"` - ;; - wine/*) - file=`winepath -w "$file" || echo "$file"` - ;; - esac - ;; - esac -} - -# func_cl_wrapper cl arg... -# Adjust compile command to suit cl -func_cl_wrapper () -{ - # Assume a capable shell - lib_path= - shared=: - linker_opts= - for arg - do - if test -n "$eat"; then - eat= - else - case $1 in - -o) - # configure might choose to run compile as 'compile cc -o foo foo.c'. - eat=1 - case $2 in - *.o | *.[oO][bB][jJ]) - func_file_conv "$2" - set x "$@" -Fo"$file" - shift - ;; - *) - func_file_conv "$2" - set x "$@" -Fe"$file" - shift - ;; - esac - ;; - -I*) - func_file_conv "${1#-I}" mingw - set x "$@" -I"$file" - shift - ;; - -l*) - lib=${1#-l} - found=no - save_IFS=$IFS - IFS=';' - for dir in $lib_path $LIB - do - IFS=$save_IFS - if $shared && test -f "$dir/$lib.dll.lib"; then - found=yes - set x "$@" "$dir/$lib.dll.lib" - break - fi - if test -f "$dir/$lib.lib"; then - found=yes - set x "$@" "$dir/$lib.lib" - break - fi - done - IFS=$save_IFS - - test "$found" != yes && set x "$@" "$lib.lib" - shift - ;; - -L*) - func_file_conv "${1#-L}" - if test -z "$lib_path"; then - lib_path=$file - else - lib_path="$lib_path;$file" - fi - linker_opts="$linker_opts -LIBPATH:$file" - ;; - -static) - shared=false - ;; - -Wl,*) - arg=${1#-Wl,} - save_ifs="$IFS"; IFS=',' - for flag in $arg; do - IFS="$save_ifs" - linker_opts="$linker_opts $flag" - done - IFS="$save_ifs" - ;; - -Xlinker) - eat=1 - linker_opts="$linker_opts $2" - ;; - -*) - set x "$@" "$1" - shift - ;; - *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) - func_file_conv "$1" - set x "$@" -Tp"$file" - shift - ;; - *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) - func_file_conv "$1" mingw - set x "$@" "$file" - shift - ;; - *) - set x "$@" "$1" - shift - ;; - esac - fi - shift - done - if test -n "$linker_opts"; then - linker_opts="-link$linker_opts" - fi - exec "$@" $linker_opts - exit 1 -} - -eat= - case $1 in '') - echo "$0: No command. Try '$0 --help' for more information." 1>&2 + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] -Wrapper for compilers which do not understand '-c -o'. -Remove '-o dest.o' from ARGS, run PROGRAM with the remaining +Wrapper for compilers which do not understand `-c -o'. +Remove `-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the -right script to run: please start by reading the file 'INSTALL'. +right script to run: please start by reading the file `INSTALL'. Report bugs to . EOF @@ -218,13 +53,11 @@ echo "compile $scriptversion" exit $? ;; - cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) - func_cl_wrapper "$@" # Doesn't return... - ;; esac ofile= cfile= +eat= for arg do @@ -233,8 +66,8 @@ else case $1 in -o) - # configure might choose to run compile as 'compile cc -o foo foo.c'. - # So we strip '-o arg' only if arg is an object. + # configure might choose to run compile as `compile cc -o foo foo.c'. + # So we strip `-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) @@ -261,10 +94,10 @@ done if test -z "$ofile" || test -z "$cfile"; then - # If no '-o' option was seen then we might have been invoked from a + # If no `-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no - # '.c' file was seen then we are probably linking. That is also + # `.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi @@ -273,7 +106,7 @@ cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. -# Note: use '[/\\:.-]' here to ensure that we don't use the same name +# Note: use `[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d diff -Nru gnome-settings-daemon-3.4.0/config.guess gnome-settings-daemon-3.4.1/config.guess --- gnome-settings-daemon-3.4.0/config.guess 2012-03-26 15:23:52.000000000 +0000 +++ gnome-settings-daemon-3.4.1/config.guess 2012-02-27 14:57:29.000000000 +0000 @@ -1,10 +1,10 @@ #! /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, 2009, 2010, -# 2011, 2012 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. -timestamp='2012-01-01' +timestamp='2009-11-20' # 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 @@ -56,9 +56,8 @@ 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, 2009, 2010, 2011, 2012 -Free Software Foundation, Inc. +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." @@ -145,7 +144,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # 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 @@ -181,7 +180,7 @@ fi ;; *) - os=netbsd + os=netbsd ;; esac # The OS release @@ -224,7 +223,7 @@ UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on @@ -270,10 +269,7 @@ # 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'` - # Reset EXIT trap before exiting to avoid spurious non-zero exit code. - exitcode=$? - trap '' 0 - exit $exitcode ;; + 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 @@ -299,7 +295,7 @@ echo s390-ibm-zvmoe exit ;; *:OS400:*:*) - echo powerpc-ibm-os400 + echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} @@ -398,23 +394,23 @@ # 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} + echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit ;; + exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} - exit ;; + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} - exit ;; + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} - exit ;; + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; @@ -484,8 +480,8 @@ echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` + # 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 ] || \ @@ -498,7 +494,7 @@ else echo i586-dg-dgux${UNAME_RELEASE} fi - exit ;; + exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; @@ -555,7 +551,7 @@ echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[4567]) + *: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 @@ -598,52 +594,52 @@ 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" ;; + 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 + 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); + sed 's/^ //' << EOF >$dummy.c - 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); - } + #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 @@ -734,22 +730,22 @@ exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd - exit ;; + exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi - exit ;; + exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd - exit ;; + exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd - exit ;; + exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd - exit ;; + exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; @@ -773,14 +769,14 @@ 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 ;; + 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}" + 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} @@ -792,12 +788,13 @@ echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) - UNAME_PROCESSOR=`/usr/bin/uname -p` - case ${UNAME_PROCESSOR} in + 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_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) @@ -806,18 +803,15 @@ *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; - i*:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys - exit ;; i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; @@ -872,7 +866,7 @@ EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; - esac + esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} @@ -884,29 +878,20 @@ then echo ${UNAME_MACHINE}-unknown-linux-gnu else - if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_PCS_VFP - then - echo ${UNAME_MACHINE}-unknown-linux-gnueabi - else - echo ${UNAME_MACHINE}-unknown-linux-gnueabihf - fi + echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo frv-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu @@ -948,7 +933,7 @@ test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo or32-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu @@ -974,7 +959,7 @@ echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu @@ -982,17 +967,14 @@ sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1001,11 +983,11 @@ 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, + # 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. + # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) @@ -1037,7 +1019,7 @@ fi exit ;; i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. + # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; @@ -1065,13 +1047,13 @@ 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 i586. + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp - exit ;; + exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; @@ -1106,8 +1088,8 @@ /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; } ;; + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ @@ -1150,10 +1132,10 @@ echo ns32k-sni-sysv fi exit ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says - echo i586-unisys-sysv4 - 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 @@ -1179,11 +1161,11 @@ exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv${UNAME_RELEASE} else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv${UNAME_RELEASE} fi - exit ;; + exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; @@ -1248,9 +1230,6 @@ *:QNX:*:4*) echo i386-pc-qnx exit ;; - NEO-?:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk${UNAME_RELEASE} - exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; @@ -1296,13 +1275,13 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + 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` + UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; @@ -1342,11 +1321,11 @@ #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 - "4" + "4" #else - "" + "" #endif - ); exit (0); + ); exit (0); #endif #endif diff -Nru gnome-settings-daemon-3.4.0/config.sub gnome-settings-daemon-3.4.1/config.sub --- gnome-settings-daemon-3.4.0/config.sub 2012-03-26 15:23:52.000000000 +0000 +++ gnome-settings-daemon-3.4.1/config.sub 2012-02-27 14:57:29.000000000 +0000 @@ -1,10 +1,10 @@ #! /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, 2009, 2010, -# 2011, 2012 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. -timestamp='2012-01-01' +timestamp='2009-11-20' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -75,9 +75,8 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 -Free Software Foundation, Inc. +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." @@ -124,9 +123,8 @@ # 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-android* | linux-dietlibc | linux-newlib* | \ - linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | \ + nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ + uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os @@ -158,8 +156,8 @@ os= basic_machine=$1 ;; - -bluegene*) - os=-cnk + -bluegene*) + os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= @@ -175,10 +173,10 @@ os=-chorusos basic_machine=$1 ;; - -chorusrdb) - os=-chorusrdb + -chorusrdb) + os=-chorusrdb basic_machine=$1 - ;; + ;; -hiux*) os=-hiuxwe2 ;; @@ -251,17 +249,13 @@ | 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 \ - | be32 | be64 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ - | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ - | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ @@ -287,39 +281,29 @@ | moxie \ | mt \ | msp430 \ - | nds32 | nds32le | nds32be \ | nios | nios2 \ | ns16k | ns32k \ - | open8 \ | or32 \ | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle \ + | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | rl78 | rx \ + | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | 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 \ - | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | spu | strongarm \ + | tahoe | thumb | tic4x | tic80 | tron \ | ubicom32 \ - | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | v850 | v850e \ | we32k \ - | x86 | xc16x | xstormy16 | xtensa \ + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; - c54x) - basic_machine=tic54x-unknown - ;; - c55x) - basic_machine=tic55x-unknown - ;; - c6x) - basic_machine=tic6x-unknown - ;; m6811 | m68hc11 | m6812 | m68hc12 | picochip) + # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; @@ -329,18 +313,6 @@ basic_machine=mt-unknown ;; - strongarm | thumb | xscale) - basic_machine=arm-unknown - ;; - - xscaleeb) - basic_machine=armeb-unknown - ;; - - xscaleel) - basic_machine=armel-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. @@ -360,19 +332,16 @@ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ - | be32-* | be64-* \ | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | 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-* \ - | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ - | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ @@ -398,29 +367,25 @@ | mmix-* \ | mt-* \ | msp430-* \ - | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ - | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ - | rl78-* | romp-* | rs6000-* | rx-* \ + | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | 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-* | sv1-* | sx?-* \ - | tahoe-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ - | tile*-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ | tron-* \ | ubicom32-* \ - | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ - | vax-* \ + | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xc16x-* | xps100-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) @@ -445,7 +410,7 @@ basic_machine=a29k-amd os=-udi ;; - abacus) + abacus) basic_machine=abacus-unknown ;; adobe68k) @@ -515,20 +480,11 @@ basic_machine=powerpc-ibm os=-cnk ;; - c54x-*) - basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c55x-*) - basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c6x-*) - basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; c90) basic_machine=c90-cray os=-unicos ;; - cegcc) + cegcc) basic_machine=arm-unknown os=-cegcc ;; @@ -560,7 +516,7 @@ basic_machine=craynv-cray os=-unicosmp ;; - cr16 | cr16-*) + cr16) basic_machine=cr16-unknown os=-elf ;; @@ -718,6 +674,7 @@ 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 @@ -775,7 +732,7 @@ basic_machine=ns32k-utek os=-sysv ;; - microblaze) + microblaze) basic_machine=microblaze-xilinx ;; mingw32) @@ -814,18 +771,10 @@ ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; - msys) - basic_machine=i386-pc - os=-msys - ;; mvs) basic_machine=i370-ibm os=-mvs ;; - nacl) - basic_machine=le32-unknown - os=-nacl - ;; ncr3000) basic_machine=i486-ncr os=-sysv4 @@ -890,12 +839,6 @@ np1) basic_machine=np1-gould ;; - neo-tandem) - basic_machine=neo-tandem - ;; - nse-tandem) - basic_machine=nse-tandem - ;; nsr-tandem) basic_machine=nsr-tandem ;; @@ -978,10 +921,9 @@ ;; power) basic_machine=power-ibm ;; - ppc | ppcbe) basic_machine=powerpc-unknown + ppc) basic_machine=powerpc-unknown ;; - ppc-* | ppcbe-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown @@ -1075,9 +1017,6 @@ basic_machine=i860-stratus os=-sysv4 ;; - strongarm-* | thumb-*) - basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; sun2) basic_machine=m68000-sun ;; @@ -1134,8 +1073,20 @@ 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=$basic_machine-unknown + basic_machine=tile-unknown os=-linux-gnu ;; tx39) @@ -1205,9 +1156,6 @@ xps | xps100) basic_machine=xps100-honeywell ;; - xscale-* | xscalee[bl]-*) - basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` - ;; ymp) basic_machine=ymp-cray os=-unicos @@ -1305,11 +1253,11 @@ if [ x"$os" != x"" ] then case $os in - # First match some system type aliases - # that might get confused with valid system types. + # First match some system type aliases + # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. - -auroraux) - os=-auroraux + -auroraux) + os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` @@ -1345,9 +1293,8 @@ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ - | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -linux-android* \ - | -linux-newlib* | -linux-uclibc* \ + | -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* \ @@ -1394,7 +1341,7 @@ -opened*) os=-openedition ;; - -os400*) + -os400*) os=-os400 ;; -wince*) @@ -1443,7 +1390,7 @@ -sinix*) os=-sysv4 ;; - -tpf*) + -tpf*) os=-tpf ;; -triton*) @@ -1488,8 +1435,6 @@ -dicos*) os=-dicos ;; - -nacl*) - ;; -none) ;; *) @@ -1512,10 +1457,10 @@ # system, and we'll never get to this point. case $basic_machine in - score-*) + score-*) os=-elf ;; - spu-*) + spu-*) os=-elf ;; *-acorn) @@ -1527,17 +1472,8 @@ arm*-semi) os=-aout ;; - c4x-* | tic4x-*) - os=-coff - ;; - tic54x-*) - os=-coff - ;; - tic55x-*) - os=-coff - ;; - tic6x-*) - os=-coff + c4x-* | tic4x-*) + os=-coff ;; # This must come before the *-dec entry. pdp10-*) @@ -1557,11 +1493,14 @@ ;; m68000-sun) os=-sunos3 + # This also exists in the configure program, but was not the + # default. + # os=-sunos4 ;; m68*-cisco) os=-aout ;; - mep-*) + mep-*) os=-elf ;; mips*-cisco) @@ -1588,7 +1527,7 @@ *-ibm) os=-aix ;; - *-knuth) + *-knuth) os=-mmixware ;; *-wec) diff -Nru gnome-settings-daemon-3.4.0/configure gnome-settings-daemon-3.4.1/configure --- gnome-settings-daemon-3.4.0/configure 2012-03-26 16:16:51.000000000 +0000 +++ gnome-settings-daemon-3.4.1/configure 2012-04-16 12:37:16.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for gnome-settings-daemon 3.4.0. +# Generated by GNU Autoconf 2.68 for gnome-settings-daemon 3.4.1. # # Report bugs to . # @@ -571,8 +571,8 @@ # Identity of this package. PACKAGE_NAME='gnome-settings-daemon' PACKAGE_TARNAME='gnome-settings-daemon' -PACKAGE_VERSION='3.4.0' -PACKAGE_STRING='gnome-settings-daemon 3.4.0' +PACKAGE_VERSION='3.4.1' +PACKAGE_STRING='gnome-settings-daemon 3.4.1' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-settings-daemon' PACKAGE_URL='' @@ -727,12 +727,6 @@ INTLTOOL_KEYS_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_DESKTOP_RULE -intltool__v_merge_options_0 -intltool__v_merge_options_ -INTLTOOL_V_MERGE_OPTIONS -INTLTOOL__v_MERGE_0 -INTLTOOL__v_MERGE_ -INTLTOOL_V_MERGE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE @@ -777,7 +771,6 @@ am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE -am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE @@ -794,8 +787,6 @@ GSD_API_VERSION AM_BACKSLASH AM_DEFAULT_VERBOSITY -AM_DEFAULT_V -AM_V MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE @@ -1489,7 +1480,7 @@ # 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 gnome-settings-daemon 3.4.0 to adapt to many kinds of systems. +\`configure' configures gnome-settings-daemon 3.4.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1560,7 +1551,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gnome-settings-daemon 3.4.0:";; + short | recursive ) echo "Configuration of gnome-settings-daemon 3.4.1:";; esac cat <<\_ACEOF @@ -1598,7 +1589,7 @@ Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + --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-sysroot=DIR Search for dependent libraries within DIR @@ -1766,7 +1757,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gnome-settings-daemon configure 3.4.0 +gnome-settings-daemon configure 3.4.1 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2256,7 +2247,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gnome-settings-daemon $as_me 3.4.0, which was +It was created by gnome-settings-daemon $as_me 3.4.1, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -3074,7 +3065,7 @@ # Define the identity of the package. PACKAGE='gnome-settings-daemon' - VERSION='3.4.0' + VERSION='3.4.1' cat >>confdefs.h <<_ACEOF @@ -3104,9 +3095,9 @@ # We need awk for the "check" target. The system "awk" is bad on # some platforms. -# Always define AMTAR for backward compatibility. Yes, it's still used -# in the wild :-( We should find a proper way to deprecate it ... -AMTAR='$${TAR-tar}' +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5 @@ -3196,8 +3187,8 @@ -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 -$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to disable maintainer-specific portions of Makefiles" >&5 +$as_echo_n "checking whether to disable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval @@ -3229,33 +3220,6 @@ no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac -am_make=${MAKE-make} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -if ${am_cv_make_support_nested_variables+:} false; then : - $as_echo_n "(cached) " >&6 -else - if $as_echo 'TRUE=$(BAR$(V)) -BAR0=false -BAR1=true -V=1 -am__doit: - @$(TRUE) -.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then - am_cv_make_support_nested_variables=yes -else - am_cv_make_support_nested_variables=no -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -$as_echo "$am_cv_make_support_nested_variables" >&6; } -if test $am_cv_make_support_nested_variables = yes; then - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi AM_BACKSLASH='\' @@ -3317,7 +3281,6 @@ if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' - am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= @@ -4131,7 +4094,6 @@ # 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'. - rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. @@ -4191,7 +4153,7 @@ break fi ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) + msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. @@ -4897,7 +4859,6 @@ # 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'. - rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. @@ -4957,7 +4918,7 @@ break fi ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) + msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. @@ -5146,8 +5107,8 @@ -macro_version='2.4.2' -macro_revision='1.3337' +macro_version='2.4' +macro_revision='1.3293' @@ -5862,11 +5823,6 @@ lt_cv_sys_max_cmd_len=196608 ;; - os2*) - # The test takes a long time on OS/2. - lt_cv_sys_max_cmd_len=8192 - ;; - 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 @@ -5906,7 +5862,7 @@ # 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"`env echo "$teststring$teststring" 2>/dev/null` \ + while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do @@ -6335,7 +6291,7 @@ lt_cv_deplibs_check_method=pass_all ;; -# This must be glibc/ELF. +# This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; @@ -6975,13 +6931,13 @@ if test -n "$RANLIB"; then case $host_os in openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" + old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi case $host_os in @@ -7128,7 +7084,6 @@ # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ -" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ @@ -7517,7 +7472,7 @@ CFLAGS="$SAVE_CFLAGS" fi ;; -*-*solaris*) +sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 @@ -7528,20 +7483,7 @@ case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in - yes*) - case $host in - i?86-*-solaris*) - LD="${LD-ld} -m elf_x86_64" - ;; - sparc*-*-solaris*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - # GNU ld 2.21 introduced _sol2 emulations. Use them if available. - if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD="${LD-ld}_sol2" - fi - ;; + 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" @@ -8181,13 +8123,7 @@ $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? - # If there is a non-empty error log, and "single_module" - # appears in it, assume the flag caused a linker warning - if test -s conftest.err && $GREP single_module conftest.err; then - cat conftest.err >&5 - # Otherwise, if the output was created with a 0 exit code from - # the compiler, it worked. - elif test -f libconftest.dylib && test $_lt_result -eq 0; then + 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 @@ -8198,7 +8134,6 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : @@ -8231,7 +8166,6 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : @@ -8253,9 +8187,7 @@ echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? - if test -s conftest.err && $GREP force_load conftest.err; then - cat conftest.err >&5 - elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then lt_cv_ld_force_load=yes else cat conftest.err >&5 @@ -8421,22 +8353,7 @@ # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : - withval=$with_pic; lt_p=${PACKAGE-default} - case $withval in - yes|no) pic_mode=$withval ;; - *) - pic_mode=default - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for lt_pkg in $withval; do - IFS="$lt_save_ifs" - if test "X$lt_pkg" = "X$lt_p"; then - pic_mode=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac + withval=$with_pic; pic_mode="$withval" else pic_mode=default fi @@ -8514,10 +8431,6 @@ - - - - test -z "$LN_S" && LN_S="ln -s" @@ -8973,9 +8886,7 @@ case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' - if test -n "$lt_prog_compiler_pic"; then - lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" - fi + lt_prog_compiler_pic='-Xcompiler -fPIC' ;; esac else @@ -9066,33 +8977,18 @@ ;; *) case `$CC -V 2>&1 | sed 5q` in - *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + *Sun\ F* | *Sun*Fortran*) # 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='' ;; - *Sun\ F* | *Sun*Fortran*) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='-Qoption ld ' - ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; - *Intel*\ [CF]*Compiler*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fPIC' - lt_prog_compiler_static='-static' - ;; - *Portland\ Group*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fpic' - lt_prog_compiler_static='-Bstatic' - ;; esac ;; esac @@ -9454,6 +9350,7 @@ 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 @@ -9703,7 +9600,8 @@ xlf* | bgf* | bgxlf* | mpixlf*) # 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='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec= + hardcode_libdir_flag_spec_ld='-rpath $libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ @@ -10082,7 +9980,6 @@ # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes - exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' @@ -10128,7 +10025,6 @@ hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - else whole_archive_flag_spec='' fi @@ -10157,6 +10053,10 @@ 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 @@ -10169,7 +10069,7 @@ ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2.*) + freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes @@ -10208,6 +10108,7 @@ 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 @@ -10831,6 +10732,11 @@ + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } @@ -10920,7 +10826,7 @@ case $host_os in aix3*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH @@ -10929,7 +10835,7 @@ ;; aix[4-9]*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes @@ -10994,7 +10900,7 @@ ;; bsdi[45]*) - version_type=linux # correct to gnu/linux during the next big refactor + 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' @@ -11133,7 +11039,7 @@ ;; dgux*) - version_type=linux # correct to gnu/linux during the next big refactor + 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' @@ -11141,6 +11047,10 @@ 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. @@ -11148,7 +11058,7 @@ objformat=`/usr/bin/objformat` else case $host_os in - freebsd[23].*) objformat=aout ;; + freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi @@ -11166,7 +11076,7 @@ esac shlibpath_var=LD_LIBRARY_PATH case $host_os in - freebsd2.*) + freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) @@ -11186,18 +11096,17 @@ ;; gnu*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 ;; haiku*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" @@ -11258,7 +11167,7 @@ ;; interix[3-9]*) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -11274,7 +11183,7 @@ nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux else version_type=irix fi ;; @@ -11311,9 +11220,9 @@ dynamic_linker=no ;; -# This must be glibc/ELF. +# This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -11399,7 +11308,7 @@ ;; newsos6) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -11468,7 +11377,7 @@ ;; solaris*) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -11493,7 +11402,7 @@ ;; sysv4 | sysv4.3*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -11517,7 +11426,7 @@ sysv4*MP*) if test -d /usr/nec ;then - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -11548,7 +11457,7 @@ tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -11558,7 +11467,7 @@ ;; uts4*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -12483,6 +12392,7 @@ hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= +hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported @@ -13066,7 +12976,6 @@ hardcode_shlibpath_var_CXX=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - else whole_archive_flag_spec_CXX='' fi @@ -13111,7 +13020,7 @@ esac ;; - freebsd2.*) + freebsd[12]*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no @@ -13787,7 +13696,6 @@ case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; -*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 @@ -14577,9 +14485,7 @@ ;; cygwin* | mingw* | cegcc*) case $cc_basename in - cl*) - exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' - ;; + cl*) ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' @@ -14732,6 +14638,8 @@ + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } @@ -14757,7 +14665,7 @@ case $host_os in aix3*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH @@ -14766,7 +14674,7 @@ ;; aix[4-9]*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes @@ -14831,7 +14739,7 @@ ;; bsdi[45]*) - version_type=linux # correct to gnu/linux during the next big refactor + 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' @@ -14968,7 +14876,7 @@ ;; dgux*) - version_type=linux # correct to gnu/linux during the next big refactor + 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' @@ -14976,6 +14884,10 @@ 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. @@ -14983,7 +14895,7 @@ objformat=`/usr/bin/objformat` else case $host_os in - freebsd[23].*) objformat=aout ;; + freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi @@ -15001,7 +14913,7 @@ esac shlibpath_var=LD_LIBRARY_PATH case $host_os in - freebsd2.*) + freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) @@ -15021,18 +14933,17 @@ ;; gnu*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 ;; haiku*) - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" @@ -15093,7 +15004,7 @@ ;; interix[3-9]*) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -15109,7 +15020,7 @@ nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux # correct to gnu/linux during the next big refactor + version_type=linux else version_type=irix fi ;; @@ -15146,9 +15057,9 @@ dynamic_linker=no ;; -# This must be glibc/ELF. +# This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -15234,7 +15145,7 @@ ;; newsos6) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -15303,7 +15214,7 @@ ;; solaris*) - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -15328,7 +15239,7 @@ ;; sysv4 | sysv4.3*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -15352,7 +15263,7 @@ sysv4*MP*) if test -d /usr/nec ;then - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -15383,7 +15294,7 @@ tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux # correct to gnu/linux during the next big refactor + 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}' @@ -15393,7 +15304,7 @@ ;; uts4*) - version_type=linux # correct to gnu/linux during the next big refactor + 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 @@ -15532,8 +15443,6 @@ - - ac_config_commands="$ac_config_commands libtool" @@ -15685,12 +15594,14 @@ ;; esac -INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.37.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; }'` if test -n "0.37.1"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.37.1" >&5 $as_echo_n "checking for intltool >= 0.37.1... " >&6; } + + INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.37.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; }'` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || @@ -15821,48 +15732,25 @@ as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5 fi -if test -z "$AM_DEFAULT_VERBOSITY"; then - AM_DEFAULT_VERBOSITY=1 -fi - - -INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' -INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' -INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;' - - - - -INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' -intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' -intltool__v_merge_options_0='-q' - - - - - INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@' - INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' -if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then - INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@' -else - INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.$$RANDOM && mkdir $$_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u $$_it_tmp_dir $< $@ && rmdir $$_it_tmp_dir' -fi - INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + 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 $< $@' @@ -16181,7 +16069,7 @@ if test $? -ne 0; then as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5 else - IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` + IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 $as_echo "$IT_PERL_VERSION" >&6; } fi @@ -16963,7 +16851,7 @@ GLIB_REQUIRED_VERSION=2.31.0 -GTK_REQUIRED_VERSION=3.3.4 +GTK_REQUIRED_VERSION=3.3.18 GCONF_REQUIRED_VERSION=2.6.1 GIO_REQUIRED_VERSION=2.26.0 GNOME_DESKTOP_REQUIRED_VERSION=3.3.92 @@ -20613,7 +20501,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gnome-settings-daemon $as_me 3.4.0, which was +This file was extended by gnome-settings-daemon $as_me 3.4.1, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20679,7 +20567,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gnome-settings-daemon config.status 3.4.0 +gnome-settings-daemon config.status 3.4.1 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" @@ -20816,7 +20704,6 @@ enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' -PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' @@ -20899,6 +20786,7 @@ allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' @@ -20970,6 +20858,7 @@ allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_ld_CXX='`$ECHO "$hardcode_libdir_flag_spec_ld_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' @@ -21008,7 +20897,6 @@ # Quote evaled strings. for var in SHELL \ ECHO \ -PATH_SEPARATOR \ SED \ GREP \ EGREP \ @@ -21059,6 +20947,7 @@ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ +hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ @@ -21092,6 +20981,7 @@ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ +hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ @@ -21943,8 +21833,8 @@ # 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, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, +# Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. @@ -21998,9 +21888,6 @@ # An echo program that protects backslashes. ECHO=$lt_ECHO -# The PATH separator for the build system. -PATH_SEPARATOR=$lt_PATH_SEPARATOR - # The host system. host_alias=$host_alias host=$host @@ -22302,6 +22189,10 @@ # 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 @@ -22644,6 +22535,10 @@ # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX +# 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_CXX + # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX diff -Nru gnome-settings-daemon-3.4.0/configure.ac gnome-settings-daemon-3.4.1/configure.ac --- gnome-settings-daemon-3.4.0/configure.ac 2012-03-26 16:11:43.000000000 +0000 +++ gnome-settings-daemon-3.4.1/configure.ac 2012-04-16 12:34:35.000000000 +0000 @@ -1,7 +1,7 @@ AC_PREREQ([2.60]) AC_INIT([gnome-settings-daemon], - [3.4.0], + [3.4.1], [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-settings-daemon]) AC_CONFIG_SRCDIR([gnome-settings-daemon/gnome-settings-manager.c]) @@ -44,7 +44,7 @@ dnl --------------------------------------------------------------------------- GLIB_REQUIRED_VERSION=2.31.0 -GTK_REQUIRED_VERSION=3.3.4 +GTK_REQUIRED_VERSION=3.3.18 GCONF_REQUIRED_VERSION=2.6.1 GIO_REQUIRED_VERSION=2.26.0 GNOME_DESKTOP_REQUIRED_VERSION=3.3.92 diff -Nru gnome-settings-daemon-3.4.0/data/Makefile.in gnome-settings-daemon-3.4.1/data/Makefile.in --- gnome-settings-daemon-3.4.0/data/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/data/Makefile.in 2012-04-16 12:37:16.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -78,11 +78,11 @@ org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in \ org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ SOURCES = DIST_SOURCES = @@ -107,12 +107,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(apidir)" \ "$(DESTDIR)$(convertdir)" "$(DESTDIR)$(desktopdir)" \ @@ -200,10 +194,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -311,8 +301,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -489,7 +477,9 @@ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ - dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) + test -z "$$files" || { \ + echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(man1dir)" && rm -f $$files; } install-apiDATA: $(api_DATA) @$(NORMAL_INSTALL) test -z "$(apidir)" || $(MKDIR_P) "$(DESTDIR)$(apidir)" @@ -507,7 +497,9 @@ @$(NORMAL_UNINSTALL) @list='$(api_DATA)'; test -n "$(apidir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(apidir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(apidir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(apidir)" && rm -f $$files install-convertDATA: $(convert_DATA) @$(NORMAL_INSTALL) test -z "$(convertdir)" || $(MKDIR_P) "$(DESTDIR)$(convertdir)" @@ -525,7 +517,9 @@ @$(NORMAL_UNINSTALL) @list='$(convert_DATA)'; test -n "$(convertdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(convertdir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(convertdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(convertdir)" && rm -f $$files install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)" @@ -543,7 +537,9 @@ @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(desktopdir)" && rm -f $$files install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" @@ -561,7 +557,9 @@ @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files install-serviceDATA: $(service_DATA) @$(NORMAL_INSTALL) test -z "$(servicedir)" || $(MKDIR_P) "$(DESTDIR)$(servicedir)" @@ -579,7 +577,9 @@ @$(NORMAL_UNINSTALL) @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(servicedir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(servicedir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(servicedir)" && rm -f $$files tags: TAGS TAGS: @@ -647,15 +647,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/debian/changelog gnome-settings-daemon-3.4.1/debian/changelog --- gnome-settings-daemon-3.4.0/debian/changelog 2012-04-12 10:43:56.000000000 +0000 +++ gnome-settings-daemon-3.4.1/debian/changelog 2012-04-16 13:55:40.000000000 +0000 @@ -1,3 +1,19 @@ +gnome-settings-daemon (3.4.1-0ubuntu1) precise-proposed; urgency=low + + * New upstream release: + - Fix applying settings to touchpads + - Fix possible crashes when exiting + - Don't put touchscreens in relative mode, just touch tablets + (such as the Bamboo Touch) + - Use PrinterAddOption method to set media size + - Updated translations + * Drop patches which are upstream now: + - disconnect_from_up_client.patch + - git_device_setting.patch + - wacom-keep-touchscreen-absolute.patch + + -- Martin Pitt Mon, 16 Apr 2012 15:55:26 +0200 + gnome-settings-daemon (3.4.0-0ubuntu7) precise; urgency=low * Fix LP: #917598 - Battery critical notification using fallback alert diff -Nru gnome-settings-daemon-3.4.0/debian/patches/disconnect_from_up_client.patch gnome-settings-daemon-3.4.1/debian/patches/disconnect_from_up_client.patch --- gnome-settings-daemon-3.4.0/debian/patches/disconnect_from_up_client.patch 2012-04-12 10:43:56.000000000 +0000 +++ gnome-settings-daemon-3.4.1/debian/patches/disconnect_from_up_client.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -Index: gnome-settings-daemon-3.4.0/plugins/power/gsd-power-manager.c -=================================================================== ---- gnome-settings-daemon-3.4.0.orig/plugins/power/gsd-power-manager.c 2012-04-09 12:46:13.782227888 -0400 -+++ gnome-settings-daemon-3.4.0/plugins/power/gsd-power-manager.c 2012-04-09 12:46:13.906227890 -0400 -@@ -3863,6 +3863,8 @@ - manager->priv->timeout_sleep_id = 0; - } - -+ g_signal_handlers_disconnect_by_data (manager->priv->up_client, manager); -+ - g_object_unref (manager->priv->session); - g_object_unref (manager->priv->settings); - g_object_unref (manager->priv->settings_screensaver); -Index: gnome-settings-daemon-3.4.0/plugins/updates/gsd-updates-refresh.c -=================================================================== ---- gnome-settings-daemon-3.4.0.orig/plugins/updates/gsd-updates-refresh.c 2012-04-09 12:46:06.706227813 -0400 -+++ gnome-settings-daemon-3.4.0/plugins/updates/gsd-updates-refresh.c 2012-04-09 12:46:13.910227890 -0400 -@@ -616,6 +616,8 @@ - if (refresh->priv->force_get_updates_login_timeout_id != 0) - g_source_remove (refresh->priv->force_get_updates_login_timeout_id); - -+ g_signal_handlers_disconnect_by_data (refresh->priv->client, refresh); -+ - g_object_unref (refresh->priv->control); - g_object_unref (refresh->priv->settings); - g_object_unref (refresh->priv->client); -Index: gnome-settings-daemon-3.4.0/plugins/xrandr/gsd-xrandr-manager.c -=================================================================== ---- gnome-settings-daemon-3.4.0.orig/plugins/xrandr/gsd-xrandr-manager.c 2012-04-09 12:46:06.758227814 -0400 -+++ gnome-settings-daemon-3.4.0/plugins/xrandr/gsd-xrandr-manager.c 2012-04-09 12:46:13.914227890 -0400 -@@ -2026,6 +2026,7 @@ - } - - if (manager->priv->upower_client != NULL) { -+ g_signal_handlers_disconnect_by_data (manager->priv->upower_client, manager); - g_object_unref (manager->priv->upower_client); - manager->priv->upower_client = NULL; - } diff -Nru gnome-settings-daemon-3.4.0/debian/patches/git_device_setting.patch gnome-settings-daemon-3.4.1/debian/patches/git_device_setting.patch --- gnome-settings-daemon-3.4.0/debian/patches/git_device_setting.patch 2012-04-12 10:43:56.000000000 +0000 +++ gnome-settings-daemon-3.4.1/debian/patches/git_device_setting.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -From d07807ca68e7d3f0b94fdce9bc2a88a71d4324ef Mon Sep 17 00:00:00 2001 -From: Owen W. Taylor -Date: Thu, 05 Apr 2012 17:10:23 +0000 -Subject: gnome-settings-daemon: fix applying settings to newly added touchpads - -In GTK+-3.4, touchpads no longer are classified as GDK_SOURCE_MOUSE, -they are GDK_SOURCE_TOUCHPAD, so we need to add a check for that -in the handling for newly added devices, or touchpads won't get -configured properly when returning from suspend. - -Required GTK+ version is bumped to 3.3.18 for the GDK_SOURCE_TOUCHPAD -enum value. - -https://bugzilla.gnome.org/show_bug.cgi?id=673595 ---- gnome-settings-daemon-3.4.0.orig/configure.ac 2012-04-10 22:45:42.200069290 +0200 -+++ gnome-settings-daemon-3.4.0/configure.ac 2012-04-10 22:45:42.340069297 +0200 -@@ -44,7 +44,7 @@ - dnl --------------------------------------------------------------------------- - - GLIB_REQUIRED_VERSION=2.31.0 --GTK_REQUIRED_VERSION=3.3.4 -+GTK_REQUIRED_VERSION=3.3.18 - GCONF_REQUIRED_VERSION=2.6.1 - GIO_REQUIRED_VERSION=2.26.0 - GNOME_DESKTOP_REQUIRED_VERSION=3.3.92 ---- gnome-settings-daemon-3.4.0.orig/plugins/mouse/gsd-mouse-manager.c 2012-04-10 22:45:42.104069286 +0200 -+++ gnome-settings-daemon-3.4.0/plugins/mouse/gsd-mouse-manager.c 2012-04-10 22:45:42.344069297 +0200 -@@ -1019,7 +1019,10 @@ - GdkDevice *device, - GsdMouseManager *manager) - { -- if (gdk_device_get_source (device) == GDK_SOURCE_MOUSE) { -+ GdkInputSource source; -+ -+ source = gdk_device_get_source (device); -+ if (source == GDK_SOURCE_MOUSE || source == GDK_SOURCE_TOUCHPAD) { - if (run_custom_command (device, COMMAND_DEVICE_ADDED) == FALSE) { - set_mouse_settings (manager, device); - } else { -@@ -1039,7 +1042,10 @@ - GdkDevice *device, - GsdMouseManager *manager) - { -- if (gdk_device_get_source (device) == GDK_SOURCE_MOUSE) { -+ GdkInputSource source; -+ -+ source = gdk_device_get_source (device); -+ if (source == GDK_SOURCE_MOUSE || source == GDK_SOURCE_TOUCHPAD) { - int id; - - run_custom_command (device, COMMAND_DEVICE_REMOVED); diff -Nru gnome-settings-daemon-3.4.0/debian/patches/series gnome-settings-daemon-3.4.1/debian/patches/series --- gnome-settings-daemon-3.4.0/debian/patches/series 2012-04-12 10:43:56.000000000 +0000 +++ gnome-settings-daemon-3.4.1/debian/patches/series 2012-04-16 13:55:40.000000000 +0000 @@ -24,7 +24,4 @@ bugzilla_segfault_dpms.patch correct_logout_action.patch git_keyring_environment.patch -disconnect_from_up_client.patch -git_device_setting.patch -wacom-keep-touchscreen-absolute.patch power-no-fallback-notifications.patch diff -Nru gnome-settings-daemon-3.4.0/debian/patches/wacom-keep-touchscreen-absolute.patch gnome-settings-daemon-3.4.1/debian/patches/wacom-keep-touchscreen-absolute.patch --- gnome-settings-daemon-3.4.0/debian/patches/wacom-keep-touchscreen-absolute.patch 2012-04-12 10:43:56.000000000 +0000 +++ gnome-settings-daemon-3.4.1/debian/patches/wacom-keep-touchscreen-absolute.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- a/plugins/wacom/gsd-wacom-manager.c -+++ b/plugins/wacom/gsd-wacom-manager.c -@@ -543,7 +543,7 @@ - - type = gsd_wacom_device_get_device_type (device); - -- if (type == WACOM_TYPE_TOUCH) { -+ if ((type == WACOM_TYPE_TOUCH) && (!libwacom_is_builtin (device))) { - set_absolute (device, FALSE); - return; - } diff -Nru gnome-settings-daemon-3.4.0/depcomp gnome-settings-daemon-3.4.1/depcomp --- gnome-settings-daemon-3.4.0/depcomp 2012-03-26 15:23:55.000000000 +0000 +++ gnome-settings-daemon-3.4.1/depcomp 2012-02-27 14:57:31.000000000 +0000 @@ -1,10 +1,10 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2011-12-04.11; # UTC +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, -# 2011 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 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 @@ -44,7 +44,7 @@ object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. - tmpdepfile Temporary file to use when outputting dependencies. + tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . @@ -90,18 +90,10 @@ # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 - cygpath_u='sed s,\\\\,/,g' + cygpath_u="sed s,\\\\\\\\,/,g" depmode=msvisualcpp fi -if test "$depmode" = msvc7msys; then - # This is just like msvc7 but w/o cygpath translation. - # Just convert the backslash-escaped backslashes to single forward - # slashes to satisfy depend.m4 - cygpath_u='sed s,\\\\,/,g' - depmode=msvc7 -fi - case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what @@ -166,12 +158,10 @@ ' < "$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. hp depmode also adds that space, but also prefixes the VPATH -## to the object. Take care to not repeat it in the output. +## 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 "s|.*$object$||" -e '/:$/d' \ - | sed -e 's/$/ :/' >> "$depfile" + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; @@ -415,52 +405,6 @@ rm -f "$tmpdepfile" ;; -msvc7) - if test "$libtool" = yes; then - showIncludes=-Wc,-showIncludes - else - showIncludes=-showIncludes - fi - "$@" $showIncludes > "$tmpdepfile" - stat=$? - grep -v '^Note: including file: ' "$tmpdepfile" - if test "$stat" = 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" - # The first sed program below extracts the file names and escapes - # backslashes for cygpath. The second sed program outputs the file - # name when reading, but also accumulates all include files in the - # hold buffer in order to output them again at the end. This only - # works with sed implementations that can handle large buffers. - sed < "$tmpdepfile" -n ' -/^Note: including file: *\(.*\)/ { - s//\1/ - s/\\/\\\\/g - p -}' | $cygpath_u | sort -u | sed -n ' -s/ /\\ /g -s/\(.*\)/ \1 \\/p -s/.\(.*\) \\/\1:/ -H -$ { - s/.*/ / - G - p -}' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -msvc7msys) - # 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 - ;; - #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. @@ -559,9 +503,7 @@ touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" - # makedepend may prepend the VPATH from the source file name to the object. - # No need to regex-escape $object, excess matching of '.' is harmless. - sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" + cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation diff -Nru gnome-settings-daemon-3.4.0/gnome-settings-daemon/Makefile.in gnome-settings-daemon-3.4.1/gnome-settings-daemon/Makefile.in --- gnome-settings-daemon-3.4.0/gnome-settings-daemon/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/gnome-settings-daemon/Makefile.in 2012-04-16 12:37:16.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -69,12 +69,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(privlibdir)" "$(DESTDIR)$(gsddir)" \ "$(DESTDIR)$(apidir)" LTLIBRARIES = $(privlib_LTLIBRARIES) @@ -85,8 +79,8 @@ am_libgsd_la_OBJECTS = libgsd_la-gnome-settings-profile.lo \ libgsd_la-gnome-settings-session.lo $(am__objects_1) libgsd_la_OBJECTS = $(am_libgsd_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libgsd_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libgsd_la_CFLAGS) \ @@ -117,21 +111,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libgsd_la_SOURCES) $(gnome_settings_daemon_SOURCES) DIST_SOURCES = $(libgsd_la_SOURCES) $(gnome_settings_daemon_SOURCES) @@ -217,10 +211,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -328,8 +318,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -494,7 +482,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libgsd.la: $(libgsd_la_OBJECTS) $(libgsd_la_DEPENDENCIES) $(EXTRA_libgsd_la_DEPENDENCIES) +libgsd.la: $(libgsd_la_OBJECTS) $(libgsd_la_DEPENDENCIES) $(AM_V_CCLD)$(libgsd_la_LINK) -rpath $(privlibdir) $(libgsd_la_OBJECTS) $(libgsd_la_LIBADD) $(LIBS) install-gsdPROGRAMS: $(gsd_PROGRAMS) @$(NORMAL_INSTALL) @@ -539,7 +527,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gnome-settings-daemon$(EXEEXT): $(gnome_settings_daemon_OBJECTS) $(gnome_settings_daemon_DEPENDENCIES) $(EXTRA_gnome_settings_daemon_DEPENDENCIES) +gnome-settings-daemon$(EXEEXT): $(gnome_settings_daemon_OBJECTS) $(gnome_settings_daemon_DEPENDENCIES) @rm -f gnome-settings-daemon$(EXEEXT) $(AM_V_CCLD)$(gnome_settings_daemon_LINK) $(gnome_settings_daemon_OBJECTS) $(gnome_settings_daemon_LDADD) $(LIBS) @@ -560,107 +548,122 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libgsd_la-gnome-settings-profile.lo: gnome-settings-profile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsd_la_CPPFLAGS) $(CPPFLAGS) $(libgsd_la_CFLAGS) $(CFLAGS) -MT libgsd_la-gnome-settings-profile.lo -MD -MP -MF $(DEPDIR)/libgsd_la-gnome-settings-profile.Tpo -c -o libgsd_la-gnome-settings-profile.lo `test -f 'gnome-settings-profile.c' || echo '$(srcdir)/'`gnome-settings-profile.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgsd_la-gnome-settings-profile.Tpo $(DEPDIR)/libgsd_la-gnome-settings-profile.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-profile.c' object='libgsd_la-gnome-settings-profile.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-profile.c' object='libgsd_la-gnome-settings-profile.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsd_la_CPPFLAGS) $(CPPFLAGS) $(libgsd_la_CFLAGS) $(CFLAGS) -c -o libgsd_la-gnome-settings-profile.lo `test -f 'gnome-settings-profile.c' || echo '$(srcdir)/'`gnome-settings-profile.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsd_la_CPPFLAGS) $(CPPFLAGS) $(libgsd_la_CFLAGS) $(CFLAGS) -c -o libgsd_la-gnome-settings-profile.lo `test -f 'gnome-settings-profile.c' || echo '$(srcdir)/'`gnome-settings-profile.c libgsd_la-gnome-settings-session.lo: gnome-settings-session.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsd_la_CPPFLAGS) $(CPPFLAGS) $(libgsd_la_CFLAGS) $(CFLAGS) -MT libgsd_la-gnome-settings-session.lo -MD -MP -MF $(DEPDIR)/libgsd_la-gnome-settings-session.Tpo -c -o libgsd_la-gnome-settings-session.lo `test -f 'gnome-settings-session.c' || echo '$(srcdir)/'`gnome-settings-session.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgsd_la-gnome-settings-session.Tpo $(DEPDIR)/libgsd_la-gnome-settings-session.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-session.c' object='libgsd_la-gnome-settings-session.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-session.c' object='libgsd_la-gnome-settings-session.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsd_la_CPPFLAGS) $(CPPFLAGS) $(libgsd_la_CFLAGS) $(CFLAGS) -c -o libgsd_la-gnome-settings-session.lo `test -f 'gnome-settings-session.c' || echo '$(srcdir)/'`gnome-settings-session.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsd_la_CPPFLAGS) $(CPPFLAGS) $(libgsd_la_CFLAGS) $(CFLAGS) -c -o libgsd_la-gnome-settings-session.lo `test -f 'gnome-settings-session.c' || echo '$(srcdir)/'`gnome-settings-session.c gnome_settings_daemon-main.o: main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-main.o -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-main.Tpo -c -o gnome_settings_daemon-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-main.Tpo $(DEPDIR)/gnome_settings_daemon-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='gnome_settings_daemon-main.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='gnome_settings_daemon-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c gnome_settings_daemon-main.obj: main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-main.obj -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-main.Tpo -c -o gnome_settings_daemon-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-main.Tpo $(DEPDIR)/gnome_settings_daemon-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='gnome_settings_daemon-main.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='gnome_settings_daemon-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` gnome_settings_daemon-gnome-settings-manager.o: gnome-settings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-manager.o -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-manager.Tpo -c -o gnome_settings_daemon-gnome-settings-manager.o `test -f 'gnome-settings-manager.c' || echo '$(srcdir)/'`gnome-settings-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-manager.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-manager.c' object='gnome_settings_daemon-gnome-settings-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-manager.c' object='gnome_settings_daemon-gnome-settings-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-manager.o `test -f 'gnome-settings-manager.c' || echo '$(srcdir)/'`gnome-settings-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-manager.o `test -f 'gnome-settings-manager.c' || echo '$(srcdir)/'`gnome-settings-manager.c gnome_settings_daemon-gnome-settings-manager.obj: gnome-settings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-manager.obj -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-manager.Tpo -c -o gnome_settings_daemon-gnome-settings-manager.obj `if test -f 'gnome-settings-manager.c'; then $(CYGPATH_W) 'gnome-settings-manager.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-manager.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-manager.c' object='gnome_settings_daemon-gnome-settings-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-manager.c' object='gnome_settings_daemon-gnome-settings-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-manager.obj `if test -f 'gnome-settings-manager.c'; then $(CYGPATH_W) 'gnome-settings-manager.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-manager.obj `if test -f 'gnome-settings-manager.c'; then $(CYGPATH_W) 'gnome-settings-manager.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-manager.c'; fi` gnome_settings_daemon-gnome-settings-plugin.o: gnome-settings-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-plugin.o -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin.Tpo -c -o gnome_settings_daemon-gnome-settings-plugin.o `test -f 'gnome-settings-plugin.c' || echo '$(srcdir)/'`gnome-settings-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-plugin.c' object='gnome_settings_daemon-gnome-settings-plugin.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-plugin.c' object='gnome_settings_daemon-gnome-settings-plugin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin.o `test -f 'gnome-settings-plugin.c' || echo '$(srcdir)/'`gnome-settings-plugin.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin.o `test -f 'gnome-settings-plugin.c' || echo '$(srcdir)/'`gnome-settings-plugin.c gnome_settings_daemon-gnome-settings-plugin.obj: gnome-settings-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-plugin.obj -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin.Tpo -c -o gnome_settings_daemon-gnome-settings-plugin.obj `if test -f 'gnome-settings-plugin.c'; then $(CYGPATH_W) 'gnome-settings-plugin.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-plugin.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-plugin.c' object='gnome_settings_daemon-gnome-settings-plugin.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-plugin.c' object='gnome_settings_daemon-gnome-settings-plugin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin.obj `if test -f 'gnome-settings-plugin.c'; then $(CYGPATH_W) 'gnome-settings-plugin.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-plugin.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin.obj `if test -f 'gnome-settings-plugin.c'; then $(CYGPATH_W) 'gnome-settings-plugin.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-plugin.c'; fi` gnome_settings_daemon-gnome-settings-plugin-info.o: gnome-settings-plugin-info.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-plugin-info.o -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin-info.Tpo -c -o gnome_settings_daemon-gnome-settings-plugin-info.o `test -f 'gnome-settings-plugin-info.c' || echo '$(srcdir)/'`gnome-settings-plugin-info.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin-info.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin-info.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-plugin-info.c' object='gnome_settings_daemon-gnome-settings-plugin-info.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-plugin-info.c' object='gnome_settings_daemon-gnome-settings-plugin-info.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin-info.o `test -f 'gnome-settings-plugin-info.c' || echo '$(srcdir)/'`gnome-settings-plugin-info.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin-info.o `test -f 'gnome-settings-plugin-info.c' || echo '$(srcdir)/'`gnome-settings-plugin-info.c gnome_settings_daemon-gnome-settings-plugin-info.obj: gnome-settings-plugin-info.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-plugin-info.obj -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin-info.Tpo -c -o gnome_settings_daemon-gnome-settings-plugin-info.obj `if test -f 'gnome-settings-plugin-info.c'; then $(CYGPATH_W) 'gnome-settings-plugin-info.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-plugin-info.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin-info.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-plugin-info.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-plugin-info.c' object='gnome_settings_daemon-gnome-settings-plugin-info.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-plugin-info.c' object='gnome_settings_daemon-gnome-settings-plugin-info.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin-info.obj `if test -f 'gnome-settings-plugin-info.c'; then $(CYGPATH_W) 'gnome-settings-plugin-info.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-plugin-info.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-plugin-info.obj `if test -f 'gnome-settings-plugin-info.c'; then $(CYGPATH_W) 'gnome-settings-plugin-info.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-plugin-info.c'; fi` gnome_settings_daemon-gnome-settings-module.o: gnome-settings-module.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-module.o -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-module.Tpo -c -o gnome_settings_daemon-gnome-settings-module.o `test -f 'gnome-settings-module.c' || echo '$(srcdir)/'`gnome-settings-module.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-module.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-module.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-module.c' object='gnome_settings_daemon-gnome-settings-module.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-module.c' object='gnome_settings_daemon-gnome-settings-module.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-module.o `test -f 'gnome-settings-module.c' || echo '$(srcdir)/'`gnome-settings-module.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-module.o `test -f 'gnome-settings-module.c' || echo '$(srcdir)/'`gnome-settings-module.c gnome_settings_daemon-gnome-settings-module.obj: gnome-settings-module.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -MT gnome_settings_daemon-gnome-settings-module.obj -MD -MP -MF $(DEPDIR)/gnome_settings_daemon-gnome-settings-module.Tpo -c -o gnome_settings_daemon-gnome-settings-module.obj `if test -f 'gnome-settings-module.c'; then $(CYGPATH_W) 'gnome-settings-module.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-module.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_settings_daemon-gnome-settings-module.Tpo $(DEPDIR)/gnome_settings_daemon-gnome-settings-module.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-settings-module.c' object='gnome_settings_daemon-gnome-settings-module.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-settings-module.c' object='gnome_settings_daemon-gnome-settings-module.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-module.obj `if test -f 'gnome-settings-module.c'; then $(CYGPATH_W) 'gnome-settings-module.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-module.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_settings_daemon_CPPFLAGS) $(CPPFLAGS) $(gnome_settings_daemon_CFLAGS) $(CFLAGS) -c -o gnome_settings_daemon-gnome-settings-module.obj `if test -f 'gnome-settings-module.c'; then $(CYGPATH_W) 'gnome-settings-module.c'; else $(CYGPATH_W) '$(srcdir)/gnome-settings-module.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -684,7 +687,9 @@ @$(NORMAL_UNINSTALL) @list='$(api_DATA)'; test -n "$(apidir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(apidir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(apidir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(apidir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -785,15 +790,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/INSTALL gnome-settings-daemon-3.4.1/INSTALL --- gnome-settings-daemon-3.4.0/INSTALL 2012-03-26 15:23:55.000000000 +0000 +++ gnome-settings-daemon-3.4.1/INSTALL 2012-02-27 14:57:32.000000000 +0000 @@ -1,8 +1,8 @@ Installation Instructions ************************* -Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, -Inc. +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, +2006, 2007, 2008, 2009 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright @@ -226,11 +226,6 @@ and if that doesn't work, install pre-built binaries of GCC for HP-UX. - HP-UX `make' updates targets which have the same time stamps as -their prerequisites, which makes it generally unusable when shipped -generated files such as `configure' are involved. Use GNU `make' -instead. - On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended diff -Nru gnome-settings-daemon-3.4.0/install-sh gnome-settings-daemon-3.4.1/install-sh --- gnome-settings-daemon-3.4.0/install-sh 2012-03-26 15:23:52.000000000 +0000 +++ gnome-settings-daemon-3.4.1/install-sh 2012-02-27 14:57:29.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2011-01-19.21; # UTC +scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -156,10 +156,6 @@ -s) stripcmd=$stripprog;; -t) dst_arg=$2 - # Protect names problematic for `test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac shift;; -T) no_target_directory=true;; @@ -190,10 +186,6 @@ fi shift # arg dst_arg=$arg - # Protect names problematic for `test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac done fi @@ -208,11 +200,7 @@ fi if test -z "$dir_arg"; then - do_exit='(exit $ret); exit $ret' - trap "ret=129; $do_exit" 1 - trap "ret=130; $do_exit" 2 - trap "ret=141; $do_exit" 13 - trap "ret=143; $do_exit" 15 + 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. @@ -240,9 +228,9 @@ for src do - # Protect names problematic for `test' and other utilities. + # Protect names starting with `-'. case $src in - -* | [=\(\)!]) src=./$src;; + -*) src=./$src;; esac if test -n "$dir_arg"; then @@ -264,7 +252,12 @@ 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. @@ -392,7 +385,7 @@ case $dstdir in /*) prefix='/';; - [-=\(\)!]*) prefix='./';; + -*) prefix='./';; *) prefix='';; esac @@ -410,7 +403,7 @@ for d do - test X"$d" = X && continue + test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then diff -Nru gnome-settings-daemon-3.4.0/ltmain.sh gnome-settings-daemon-3.4.1/ltmain.sh --- gnome-settings-daemon-3.4.0/ltmain.sh 2012-03-26 15:23:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/ltmain.sh 2012-02-27 14:57:25.000000000 +0000 @@ -1,9 +1,9 @@ -# libtool (GNU libtool) 2.4.2 +# libtool (GNU libtool) 2.4 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# 2007, 2008, 2009, 2010 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. @@ -41,7 +41,6 @@ # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) -# --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages @@ -70,7 +69,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 +# $progname: (GNU libtool) 2.4 # automake: $automake_version # autoconf: $autoconf_version # @@ -80,9 +79,9 @@ PROGRAM=libtool PACKAGE=libtool -VERSION=2.4.2 +VERSION=2.4 TIMESTAMP="" -package_revision=1.3337 +package_revision=1.3293 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then @@ -137,10 +136,15 @@ : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${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//"} @@ -383,7 +387,7 @@ ;; *) save_IFS="$IFS" - IFS=${PATH_SEPARATOR-:} + IFS=: for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break @@ -767,8 +771,8 @@ s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ - s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ - s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/ p d } @@ -1048,7 +1052,6 @@ opt_help=false opt_help_all=false opt_silent=: -opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false @@ -1117,10 +1120,6 @@ opt_silent=false func_append preserve_args " $opt" ;; - --no-warning|--no-warn) - opt_warning=false -func_append preserve_args " $opt" - ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" @@ -2060,7 +2059,7 @@ *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ - *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; @@ -3202,13 +3201,11 @@ # Set up the ranlib parameters. oldlib="$destdir/$name" - func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 - tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then - func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + func_show_eval "$old_striplib $oldlib" 'exit $?' fi # Do each command in the postinstall commands. @@ -3473,7 +3470,7 @@ # 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*) + *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; @@ -3985,17 +3982,14 @@ # launches target application with the remaining arguments. func_exec_program () { - case \" \$* \" in - *\\ --lt-*) - for lt_wr_arg - do - case \$lt_wr_arg in - --lt-*) ;; - *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; - esac - shift - done ;; - esac + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done func_exec_program_core \${1+\"\$@\"} } @@ -5063,15 +5057,9 @@ { EOF func_emit_wrapper yes | - $SED -n -e ' -s/^\(.\{79\}\)\(..*\)/\1\ -\2/ -h -s/\([\\"]\)/\\\1/g -s/$/\\n/ -s/\([^\n]*\).*/ fputs ("\1", f);/p -g -D' + $SED -e 's/\([\\"]\)/\\\1/g' \ + -e 's/^/ fputs ("/' -e 's/$/\\n", f);/' + cat <<"EOF" } EOF @@ -5655,8 +5643,7 @@ continue ;; - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ - |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" @@ -6160,8 +6147,7 @@ lib= found=no case $deplib in - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ - |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + -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" @@ -6845,7 +6831,7 @@ test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then - add_dir="-L$absdir" + 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 @@ -7330,7 +7316,6 @@ # which has an extra 1 added just for fun # case $version_type in - # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result @@ -7447,7 +7432,7 @@ versuffix="$major.$revision" ;; - linux) # correct to gnu/linux during the next big refactor + linux) func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" @@ -8035,11 +8020,6 @@ # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then - # Remove ${wl} instances when linking with ld. - # FIXME: should test the right _cmds variable. - case $archive_cmds in - *\$LD\ *) wl= ;; - esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= @@ -8070,7 +8050,7 @@ elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; - *) func_append perm_rpath " $libdir" ;; + *) func_apped perm_rpath " $libdir" ;; esac fi done @@ -8078,7 +8058,11 @@ if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" - eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + 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. @@ -9168,8 +9152,6 @@ esac done fi - func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 - tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" @@ -9279,8 +9261,7 @@ *.la) func_basename "$deplib" name="$func_basename_result" - func_resolve_sysroot "$deplib" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" diff -Nru gnome-settings-daemon-3.4.0/Makefile.in gnome-settings-daemon-3.4.1/Makefile.in --- gnome-settings-daemon-3.4.0/Makefile.in 2012-03-26 16:16:51.000000000 +0000 +++ gnome-settings-daemon-3.4.1/Makefile.in 2012-04-16 12:37:19.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -50,11 +50,11 @@ CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ SOURCES = DIST_SOURCES = @@ -77,11 +77,9 @@ distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ - if test -d "$(distdir)"; then \ - find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -rf "$(distdir)" \ - || { sleep 5 && rm -rf "$(distdir)"; }; \ - else :; fi + { test ! -d "$(distdir)" \ + || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr "$(distdir)"; }; } am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ @@ -110,8 +108,6 @@ GZIP_ENV = --best DIST_ARCHIVES = $(distdir).tar.xz distuninstallcheck_listfiles = find . -type f -print -am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ - | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ @@ -191,10 +187,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -302,8 +294,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -348,7 +338,7 @@ $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: -am--refresh: Makefile +am--refresh: @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ @@ -384,8 +374,10 @@ $(am__aclocal_m4_deps): config.h: stamp-h1 - @if test ! -f $@; then rm -f stamp-h1; else :; fi - @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi + @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 @@ -614,18 +606,14 @@ $(am__remove_distdir) dist-bzip2: distdir - tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 - $(am__remove_distdir) - -dist-lzip: distdir - tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + 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-xz: distdir - tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir @@ -642,7 +630,7 @@ $(am__remove_distdir) dist dist-all: distdir - tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then @@ -656,8 +644,6 @@ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ - *.tar.lz*) \ - lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ @@ -677,7 +663,6 @@ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ - $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ @@ -706,16 +691,8 @@ 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: - @test -n '$(distuninstallcheck_dir)' || { \ - echo 'ERROR: trying to run $@ with an empty' \ - '$$(distuninstallcheck_dir)' >&2; \ - exit 1; \ - }; \ - $(am__cd) '$(distuninstallcheck_dir)' || { \ - echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ - exit 1; \ - }; \ - test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + @$(am__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)"; \ @@ -746,15 +723,10 @@ installcheck: installcheck-recursive install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: @@ -843,8 +815,8 @@ .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-lzip dist-lzma dist-shar dist-tarZ dist-xz \ - dist-zip distcheck distclean distclean-generic distclean-hdr \ + dist-gzip dist-lzma dist-shar dist-tarZ dist-xz 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 \ diff -Nru gnome-settings-daemon-3.4.0/missing gnome-settings-daemon-3.4.1/missing --- gnome-settings-daemon-3.4.0/missing 2012-03-26 15:23:52.000000000 +0000 +++ gnome-settings-daemon-3.4.1/missing 2012-02-27 14:57:29.000000000 +0000 @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2012-01-06.13; # UTC +scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, -# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. +# 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -84,6 +84,7 @@ 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] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and @@ -121,6 +122,15 @@ # 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. @@ -216,7 +226,7 @@ \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then - eval LASTARG=\${$#} + eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` @@ -246,7 +256,7 @@ \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then - eval LASTARG=\${$#} + eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` @@ -308,6 +318,41 @@ 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. diff -Nru gnome-settings-daemon-3.4.0/NEWS gnome-settings-daemon-3.4.1/NEWS --- gnome-settings-daemon-3.4.0/NEWS 2012-03-26 16:11:31.000000000 +0000 +++ gnome-settings-daemon-3.4.1/NEWS 2012-04-16 12:45:15.000000000 +0000 @@ -1,4 +1,23 @@ ============= +Version 3.4.1 +============= + +Mouse: +- Fix applying settings to touchpads + +Updates: +- Fix possible crashes when exiting + +Wacom: +- Don't put touchscreens in relative mode, just touch tablets + (such as the Bamboo Touch) + +Printers: +- Use PrinterAddOption method to set media size + +- Updated translations + +============= Version 3.4.0 ============= diff -Nru gnome-settings-daemon-3.4.0/plugins/a11y-keyboard/Makefile.in gnome-settings-daemon-3.4.1/plugins/a11y-keyboard/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/a11y-keyboard/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/a11y-keyboard/Makefile.in 2012-04-16 12:37:16.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -70,12 +70,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" \ "$(DESTDIR)$(gtkbuilderdir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) @@ -89,8 +83,8 @@ liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo \ $(am__objects_1) liba11y_keyboard_la_OBJECTS = $(am_liba11y_keyboard_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent liba11y_keyboard_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -119,21 +113,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(liba11y_keyboard_la_SOURCES) \ $(test_a11y_preferences_dialog_SOURCES) @@ -221,10 +215,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -332,8 +322,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -501,7 +489,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -liba11y-keyboard.la: $(liba11y_keyboard_la_OBJECTS) $(liba11y_keyboard_la_DEPENDENCIES) $(EXTRA_liba11y_keyboard_la_DEPENDENCIES) +liba11y-keyboard.la: $(liba11y_keyboard_la_OBJECTS) $(liba11y_keyboard_la_DEPENDENCIES) $(AM_V_CCLD)$(liba11y_keyboard_la_LINK) -rpath $(plugindir) $(liba11y_keyboard_la_OBJECTS) $(liba11y_keyboard_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @@ -512,7 +500,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -test-a11y-preferences-dialog$(EXEEXT): $(test_a11y_preferences_dialog_OBJECTS) $(test_a11y_preferences_dialog_DEPENDENCIES) $(EXTRA_test_a11y_preferences_dialog_DEPENDENCIES) +test-a11y-preferences-dialog$(EXEEXT): $(test_a11y_preferences_dialog_OBJECTS) $(test_a11y_preferences_dialog_DEPENDENCIES) @rm -f test-a11y-preferences-dialog$(EXEEXT) $(AM_V_CCLD)$(test_a11y_preferences_dialog_LINK) $(test_a11y_preferences_dialog_OBJECTS) $(test_a11y_preferences_dialog_LDADD) $(LIBS) @@ -531,72 +519,82 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< liba11y_keyboard_la-gsd-a11y-keyboard-plugin.lo: gsd-a11y-keyboard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -MT liba11y_keyboard_la-gsd-a11y-keyboard-plugin.lo -MD -MP -MF $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-keyboard-plugin.Tpo -c -o liba11y_keyboard_la-gsd-a11y-keyboard-plugin.lo `test -f 'gsd-a11y-keyboard-plugin.c' || echo '$(srcdir)/'`gsd-a11y-keyboard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-keyboard-plugin.Tpo $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-keyboard-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-a11y-keyboard-plugin.c' object='liba11y_keyboard_la-gsd-a11y-keyboard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-a11y-keyboard-plugin.c' object='liba11y_keyboard_la-gsd-a11y-keyboard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -c -o liba11y_keyboard_la-gsd-a11y-keyboard-plugin.lo `test -f 'gsd-a11y-keyboard-plugin.c' || echo '$(srcdir)/'`gsd-a11y-keyboard-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -c -o liba11y_keyboard_la-gsd-a11y-keyboard-plugin.lo `test -f 'gsd-a11y-keyboard-plugin.c' || echo '$(srcdir)/'`gsd-a11y-keyboard-plugin.c liba11y_keyboard_la-gsd-a11y-keyboard-manager.lo: gsd-a11y-keyboard-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -MT liba11y_keyboard_la-gsd-a11y-keyboard-manager.lo -MD -MP -MF $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-keyboard-manager.Tpo -c -o liba11y_keyboard_la-gsd-a11y-keyboard-manager.lo `test -f 'gsd-a11y-keyboard-manager.c' || echo '$(srcdir)/'`gsd-a11y-keyboard-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-keyboard-manager.Tpo $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-keyboard-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-a11y-keyboard-manager.c' object='liba11y_keyboard_la-gsd-a11y-keyboard-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-a11y-keyboard-manager.c' object='liba11y_keyboard_la-gsd-a11y-keyboard-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -c -o liba11y_keyboard_la-gsd-a11y-keyboard-manager.lo `test -f 'gsd-a11y-keyboard-manager.c' || echo '$(srcdir)/'`gsd-a11y-keyboard-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -c -o liba11y_keyboard_la-gsd-a11y-keyboard-manager.lo `test -f 'gsd-a11y-keyboard-manager.c' || echo '$(srcdir)/'`gsd-a11y-keyboard-manager.c liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo: gsd-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -MT liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo -MD -MP -MF $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-preferences-dialog.Tpo -c -o liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo `test -f 'gsd-a11y-preferences-dialog.c' || echo '$(srcdir)/'`gsd-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-preferences-dialog.Tpo $(DEPDIR)/liba11y_keyboard_la-gsd-a11y-preferences-dialog.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-a11y-preferences-dialog.c' object='liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-a11y-preferences-dialog.c' object='liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -c -o liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo `test -f 'gsd-a11y-preferences-dialog.c' || echo '$(srcdir)/'`gsd-a11y-preferences-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_keyboard_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_keyboard_la_CFLAGS) $(CFLAGS) -c -o liba11y_keyboard_la-gsd-a11y-preferences-dialog.lo `test -f 'gsd-a11y-preferences-dialog.c' || echo '$(srcdir)/'`gsd-a11y-preferences-dialog.c test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.o: gsd-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -MT test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.o -MD -MP -MF $(DEPDIR)/test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.Tpo -c -o test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.o `test -f 'gsd-a11y-preferences-dialog.c' || echo '$(srcdir)/'`gsd-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.Tpo $(DEPDIR)/test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.o `test -f 'gsd-a11y-preferences-dialog.c' || echo '$(srcdir)/'`gsd-a11y-preferences-dialog.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.o `test -f 'gsd-a11y-preferences-dialog.c' || echo '$(srcdir)/'`gsd-a11y-preferences-dialog.c test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.obj: gsd-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -MT test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.obj -MD -MP -MF $(DEPDIR)/test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.Tpo -c -o test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.obj `if test -f 'gsd-a11y-preferences-dialog.c'; then $(CYGPATH_W) 'gsd-a11y-preferences-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-a11y-preferences-dialog.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.Tpo $(DEPDIR)/test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.obj `if test -f 'gsd-a11y-preferences-dialog.c'; then $(CYGPATH_W) 'gsd-a11y-preferences-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-a11y-preferences-dialog.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-gsd-a11y-preferences-dialog.obj `if test -f 'gsd-a11y-preferences-dialog.c'; then $(CYGPATH_W) 'gsd-a11y-preferences-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-a11y-preferences-dialog.c'; fi` test_a11y_preferences_dialog-test-a11y-preferences-dialog.o: test-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -MT test_a11y_preferences_dialog-test-a11y-preferences-dialog.o -MD -MP -MF $(DEPDIR)/test_a11y_preferences_dialog-test-a11y-preferences-dialog.Tpo -c -o test_a11y_preferences_dialog-test-a11y-preferences-dialog.o `test -f 'test-a11y-preferences-dialog.c' || echo '$(srcdir)/'`test-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_a11y_preferences_dialog-test-a11y-preferences-dialog.Tpo $(DEPDIR)/test_a11y_preferences_dialog-test-a11y-preferences-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-test-a11y-preferences-dialog.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-test-a11y-preferences-dialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-test-a11y-preferences-dialog.o `test -f 'test-a11y-preferences-dialog.c' || echo '$(srcdir)/'`test-a11y-preferences-dialog.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-test-a11y-preferences-dialog.o `test -f 'test-a11y-preferences-dialog.c' || echo '$(srcdir)/'`test-a11y-preferences-dialog.c test_a11y_preferences_dialog-test-a11y-preferences-dialog.obj: test-a11y-preferences-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -MT test_a11y_preferences_dialog-test-a11y-preferences-dialog.obj -MD -MP -MF $(DEPDIR)/test_a11y_preferences_dialog-test-a11y-preferences-dialog.Tpo -c -o test_a11y_preferences_dialog-test-a11y-preferences-dialog.obj `if test -f 'test-a11y-preferences-dialog.c'; then $(CYGPATH_W) 'test-a11y-preferences-dialog.c'; else $(CYGPATH_W) '$(srcdir)/test-a11y-preferences-dialog.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_a11y_preferences_dialog-test-a11y-preferences-dialog.Tpo $(DEPDIR)/test_a11y_preferences_dialog-test-a11y-preferences-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-test-a11y-preferences-dialog.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-a11y-preferences-dialog.c' object='test_a11y_preferences_dialog-test-a11y-preferences-dialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-test-a11y-preferences-dialog.obj `if test -f 'test-a11y-preferences-dialog.c'; then $(CYGPATH_W) 'test-a11y-preferences-dialog.c'; else $(CYGPATH_W) '$(srcdir)/test-a11y-preferences-dialog.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_a11y_preferences_dialog_CPPFLAGS) $(CPPFLAGS) $(test_a11y_preferences_dialog_CFLAGS) $(CFLAGS) -c -o test_a11y_preferences_dialog-test-a11y-preferences-dialog.obj `if test -f 'test-a11y-preferences-dialog.c'; then $(CYGPATH_W) 'test-a11y-preferences-dialog.c'; else $(CYGPATH_W) '$(srcdir)/test-a11y-preferences-dialog.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -620,7 +618,9 @@ @$(NORMAL_UNINSTALL) @list='$(gtkbuilder_DATA)'; test -n "$(gtkbuilderdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(gtkbuilderdir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(gtkbuilderdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(gtkbuilderdir)" && rm -f $$files install-pluginDATA: $(plugin_DATA) @$(NORMAL_INSTALL) test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)" @@ -638,7 +638,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -739,15 +741,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/a11y-settings/Makefile.in gnome-settings-daemon-3.4.1/plugins/a11y-settings/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/a11y-settings/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/a11y-settings/Makefile.in 2012-04-16 12:37:16.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -81,8 +75,8 @@ liba11y_settings_la-gsd-a11y-settings-manager.lo \ liba11y_settings_la-gsd-a11y-settings-plugin.lo liba11y_settings_la_OBJECTS = $(am_liba11y_settings_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent liba11y_settings_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -98,21 +92,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(liba11y_settings_la_SOURCES) DIST_SOURCES = $(liba11y_settings_la_SOURCES) @@ -198,10 +192,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -309,8 +299,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -435,7 +423,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -liba11y-settings.la: $(liba11y_settings_la_OBJECTS) $(liba11y_settings_la_DEPENDENCIES) $(EXTRA_liba11y_settings_la_DEPENDENCIES) +liba11y-settings.la: $(liba11y_settings_la_OBJECTS) $(liba11y_settings_la_DEPENDENCIES) $(AM_V_CCLD)$(liba11y_settings_la_LINK) -rpath $(plugindir) $(liba11y_settings_la_OBJECTS) $(liba11y_settings_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -450,37 +438,42 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< liba11y_settings_la-gsd-a11y-settings-manager.lo: gsd-a11y-settings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_settings_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_settings_la_CFLAGS) $(CFLAGS) -MT liba11y_settings_la-gsd-a11y-settings-manager.lo -MD -MP -MF $(DEPDIR)/liba11y_settings_la-gsd-a11y-settings-manager.Tpo -c -o liba11y_settings_la-gsd-a11y-settings-manager.lo `test -f 'gsd-a11y-settings-manager.c' || echo '$(srcdir)/'`gsd-a11y-settings-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/liba11y_settings_la-gsd-a11y-settings-manager.Tpo $(DEPDIR)/liba11y_settings_la-gsd-a11y-settings-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-a11y-settings-manager.c' object='liba11y_settings_la-gsd-a11y-settings-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-a11y-settings-manager.c' object='liba11y_settings_la-gsd-a11y-settings-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_settings_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_settings_la_CFLAGS) $(CFLAGS) -c -o liba11y_settings_la-gsd-a11y-settings-manager.lo `test -f 'gsd-a11y-settings-manager.c' || echo '$(srcdir)/'`gsd-a11y-settings-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_settings_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_settings_la_CFLAGS) $(CFLAGS) -c -o liba11y_settings_la-gsd-a11y-settings-manager.lo `test -f 'gsd-a11y-settings-manager.c' || echo '$(srcdir)/'`gsd-a11y-settings-manager.c liba11y_settings_la-gsd-a11y-settings-plugin.lo: gsd-a11y-settings-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_settings_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_settings_la_CFLAGS) $(CFLAGS) -MT liba11y_settings_la-gsd-a11y-settings-plugin.lo -MD -MP -MF $(DEPDIR)/liba11y_settings_la-gsd-a11y-settings-plugin.Tpo -c -o liba11y_settings_la-gsd-a11y-settings-plugin.lo `test -f 'gsd-a11y-settings-plugin.c' || echo '$(srcdir)/'`gsd-a11y-settings-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/liba11y_settings_la-gsd-a11y-settings-plugin.Tpo $(DEPDIR)/liba11y_settings_la-gsd-a11y-settings-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-a11y-settings-plugin.c' object='liba11y_settings_la-gsd-a11y-settings-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-a11y-settings-plugin.c' object='liba11y_settings_la-gsd-a11y-settings-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_settings_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_settings_la_CFLAGS) $(CFLAGS) -c -o liba11y_settings_la-gsd-a11y-settings-plugin.lo `test -f 'gsd-a11y-settings-plugin.c' || echo '$(srcdir)/'`gsd-a11y-settings-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liba11y_settings_la_CPPFLAGS) $(CPPFLAGS) $(liba11y_settings_la_CFLAGS) $(CFLAGS) -c -o liba11y_settings_la-gsd-a11y-settings-plugin.lo `test -f 'gsd-a11y-settings-plugin.c' || echo '$(srcdir)/'`gsd-a11y-settings-plugin.c mostlyclean-libtool: -rm -f *.lo @@ -504,7 +497,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -605,15 +600,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/automount/Makefile.in gnome-settings-daemon-3.4.1/plugins/automount/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/automount/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/automount/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -59,8 +59,8 @@ gnome_fallback_mount_helper_DEPENDENCIES = $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(top_builddir)/gnome-settings-daemon/libgsd.la -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent gnome_fallback_mount_helper_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -76,21 +76,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(gnome_fallback_mount_helper_SOURCES) DIST_SOURCES = $(gnome_fallback_mount_helper_SOURCES) @@ -115,12 +115,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } DATA = $(autostart_DATA) ETAGS = etags CTAGS = ctags @@ -203,10 +197,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -314,8 +304,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -442,7 +430,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gnome-fallback-mount-helper$(EXEEXT): $(gnome_fallback_mount_helper_OBJECTS) $(gnome_fallback_mount_helper_DEPENDENCIES) $(EXTRA_gnome_fallback_mount_helper_DEPENDENCIES) +gnome-fallback-mount-helper$(EXEEXT): $(gnome_fallback_mount_helper_OBJECTS) $(gnome_fallback_mount_helper_DEPENDENCIES) @rm -f gnome-fallback-mount-helper$(EXEEXT) $(AM_V_CCLD)$(gnome_fallback_mount_helper_LINK) $(gnome_fallback_mount_helper_OBJECTS) $(gnome_fallback_mount_helper_LDADD) $(LIBS) @@ -459,65 +447,74 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< gnome_fallback_mount_helper-gnome-fallback-mount-helper.o: gnome-fallback-mount-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -MT gnome_fallback_mount_helper-gnome-fallback-mount-helper.o -MD -MP -MF $(DEPDIR)/gnome_fallback_mount_helper-gnome-fallback-mount-helper.Tpo -c -o gnome_fallback_mount_helper-gnome-fallback-mount-helper.o `test -f 'gnome-fallback-mount-helper.c' || echo '$(srcdir)/'`gnome-fallback-mount-helper.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_fallback_mount_helper-gnome-fallback-mount-helper.Tpo $(DEPDIR)/gnome_fallback_mount_helper-gnome-fallback-mount-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-fallback-mount-helper.c' object='gnome_fallback_mount_helper-gnome-fallback-mount-helper.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-fallback-mount-helper.c' object='gnome_fallback_mount_helper-gnome-fallback-mount-helper.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gnome-fallback-mount-helper.o `test -f 'gnome-fallback-mount-helper.c' || echo '$(srcdir)/'`gnome-fallback-mount-helper.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gnome-fallback-mount-helper.o `test -f 'gnome-fallback-mount-helper.c' || echo '$(srcdir)/'`gnome-fallback-mount-helper.c gnome_fallback_mount_helper-gnome-fallback-mount-helper.obj: gnome-fallback-mount-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -MT gnome_fallback_mount_helper-gnome-fallback-mount-helper.obj -MD -MP -MF $(DEPDIR)/gnome_fallback_mount_helper-gnome-fallback-mount-helper.Tpo -c -o gnome_fallback_mount_helper-gnome-fallback-mount-helper.obj `if test -f 'gnome-fallback-mount-helper.c'; then $(CYGPATH_W) 'gnome-fallback-mount-helper.c'; else $(CYGPATH_W) '$(srcdir)/gnome-fallback-mount-helper.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_fallback_mount_helper-gnome-fallback-mount-helper.Tpo $(DEPDIR)/gnome_fallback_mount_helper-gnome-fallback-mount-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnome-fallback-mount-helper.c' object='gnome_fallback_mount_helper-gnome-fallback-mount-helper.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gnome-fallback-mount-helper.c' object='gnome_fallback_mount_helper-gnome-fallback-mount-helper.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gnome-fallback-mount-helper.obj `if test -f 'gnome-fallback-mount-helper.c'; then $(CYGPATH_W) 'gnome-fallback-mount-helper.c'; else $(CYGPATH_W) '$(srcdir)/gnome-fallback-mount-helper.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gnome-fallback-mount-helper.obj `if test -f 'gnome-fallback-mount-helper.c'; then $(CYGPATH_W) 'gnome-fallback-mount-helper.c'; else $(CYGPATH_W) '$(srcdir)/gnome-fallback-mount-helper.c'; fi` gnome_fallback_mount_helper-gsd-automount-manager.o: gsd-automount-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -MT gnome_fallback_mount_helper-gsd-automount-manager.o -MD -MP -MF $(DEPDIR)/gnome_fallback_mount_helper-gsd-automount-manager.Tpo -c -o gnome_fallback_mount_helper-gsd-automount-manager.o `test -f 'gsd-automount-manager.c' || echo '$(srcdir)/'`gsd-automount-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_fallback_mount_helper-gsd-automount-manager.Tpo $(DEPDIR)/gnome_fallback_mount_helper-gsd-automount-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-automount-manager.c' object='gnome_fallback_mount_helper-gsd-automount-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-automount-manager.c' object='gnome_fallback_mount_helper-gsd-automount-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-automount-manager.o `test -f 'gsd-automount-manager.c' || echo '$(srcdir)/'`gsd-automount-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-automount-manager.o `test -f 'gsd-automount-manager.c' || echo '$(srcdir)/'`gsd-automount-manager.c gnome_fallback_mount_helper-gsd-automount-manager.obj: gsd-automount-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -MT gnome_fallback_mount_helper-gsd-automount-manager.obj -MD -MP -MF $(DEPDIR)/gnome_fallback_mount_helper-gsd-automount-manager.Tpo -c -o gnome_fallback_mount_helper-gsd-automount-manager.obj `if test -f 'gsd-automount-manager.c'; then $(CYGPATH_W) 'gsd-automount-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-automount-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_fallback_mount_helper-gsd-automount-manager.Tpo $(DEPDIR)/gnome_fallback_mount_helper-gsd-automount-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-automount-manager.c' object='gnome_fallback_mount_helper-gsd-automount-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-automount-manager.c' object='gnome_fallback_mount_helper-gsd-automount-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-automount-manager.obj `if test -f 'gsd-automount-manager.c'; then $(CYGPATH_W) 'gsd-automount-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-automount-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-automount-manager.obj `if test -f 'gsd-automount-manager.c'; then $(CYGPATH_W) 'gsd-automount-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-automount-manager.c'; fi` gnome_fallback_mount_helper-gsd-autorun.o: gsd-autorun.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -MT gnome_fallback_mount_helper-gsd-autorun.o -MD -MP -MF $(DEPDIR)/gnome_fallback_mount_helper-gsd-autorun.Tpo -c -o gnome_fallback_mount_helper-gsd-autorun.o `test -f 'gsd-autorun.c' || echo '$(srcdir)/'`gsd-autorun.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_fallback_mount_helper-gsd-autorun.Tpo $(DEPDIR)/gnome_fallback_mount_helper-gsd-autorun.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-autorun.c' object='gnome_fallback_mount_helper-gsd-autorun.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-autorun.c' object='gnome_fallback_mount_helper-gsd-autorun.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-autorun.o `test -f 'gsd-autorun.c' || echo '$(srcdir)/'`gsd-autorun.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-autorun.o `test -f 'gsd-autorun.c' || echo '$(srcdir)/'`gsd-autorun.c gnome_fallback_mount_helper-gsd-autorun.obj: gsd-autorun.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -MT gnome_fallback_mount_helper-gsd-autorun.obj -MD -MP -MF $(DEPDIR)/gnome_fallback_mount_helper-gsd-autorun.Tpo -c -o gnome_fallback_mount_helper-gsd-autorun.obj `if test -f 'gsd-autorun.c'; then $(CYGPATH_W) 'gsd-autorun.c'; else $(CYGPATH_W) '$(srcdir)/gsd-autorun.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_fallback_mount_helper-gsd-autorun.Tpo $(DEPDIR)/gnome_fallback_mount_helper-gsd-autorun.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-autorun.c' object='gnome_fallback_mount_helper-gsd-autorun.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-autorun.c' object='gnome_fallback_mount_helper-gsd-autorun.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-autorun.obj `if test -f 'gsd-autorun.c'; then $(CYGPATH_W) 'gsd-autorun.c'; else $(CYGPATH_W) '$(srcdir)/gsd-autorun.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_fallback_mount_helper_CPPFLAGS) $(CPPFLAGS) $(gnome_fallback_mount_helper_CFLAGS) $(CFLAGS) -c -o gnome_fallback_mount_helper-gsd-autorun.obj `if test -f 'gsd-autorun.c'; then $(CYGPATH_W) 'gsd-autorun.c'; else $(CYGPATH_W) '$(srcdir)/gsd-autorun.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -541,7 +538,9 @@ @$(NORMAL_UNINSTALL) @list='$(autostart_DATA)'; test -n "$(autostartdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(autostartdir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(autostartdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(autostartdir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -642,15 +641,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/background/Makefile.in gnome-settings-daemon-3.4.1/plugins/background/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/background/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/background/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -69,12 +69,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -85,8 +79,8 @@ libbackground_la-gsd-background-plugin.lo \ libbackground_la-gsd-background-manager.lo $(am__objects_1) libbackground_la_OBJECTS = $(am_libbackground_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libbackground_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -117,21 +111,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbackground_la_SOURCES) $(test_background_SOURCES) DIST_SOURCES = $(libbackground_la_SOURCES) $(test_background_SOURCES) @@ -217,10 +211,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -328,8 +318,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -488,7 +476,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libbackground.la: $(libbackground_la_OBJECTS) $(libbackground_la_DEPENDENCIES) $(EXTRA_libbackground_la_DEPENDENCIES) +libbackground.la: $(libbackground_la_OBJECTS) $(libbackground_la_DEPENDENCIES) $(AM_V_CCLD)$(libbackground_la_LINK) -rpath $(plugindir) $(libbackground_la_OBJECTS) $(libbackground_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @@ -499,7 +487,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -test-background$(EXEEXT): $(test_background_OBJECTS) $(test_background_DEPENDENCIES) $(EXTRA_test_background_DEPENDENCIES) +test-background$(EXEEXT): $(test_background_OBJECTS) $(test_background_DEPENDENCIES) @rm -f test-background$(EXEEXT) $(AM_V_CCLD)$(test_background_LINK) $(test_background_OBJECTS) $(test_background_LDADD) $(LIBS) @@ -517,65 +505,74 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libbackground_la-gsd-background-plugin.lo: gsd-background-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackground_la_CPPFLAGS) $(CPPFLAGS) $(libbackground_la_CFLAGS) $(CFLAGS) -MT libbackground_la-gsd-background-plugin.lo -MD -MP -MF $(DEPDIR)/libbackground_la-gsd-background-plugin.Tpo -c -o libbackground_la-gsd-background-plugin.lo `test -f 'gsd-background-plugin.c' || echo '$(srcdir)/'`gsd-background-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackground_la-gsd-background-plugin.Tpo $(DEPDIR)/libbackground_la-gsd-background-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-background-plugin.c' object='libbackground_la-gsd-background-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-background-plugin.c' object='libbackground_la-gsd-background-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackground_la_CPPFLAGS) $(CPPFLAGS) $(libbackground_la_CFLAGS) $(CFLAGS) -c -o libbackground_la-gsd-background-plugin.lo `test -f 'gsd-background-plugin.c' || echo '$(srcdir)/'`gsd-background-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackground_la_CPPFLAGS) $(CPPFLAGS) $(libbackground_la_CFLAGS) $(CFLAGS) -c -o libbackground_la-gsd-background-plugin.lo `test -f 'gsd-background-plugin.c' || echo '$(srcdir)/'`gsd-background-plugin.c libbackground_la-gsd-background-manager.lo: gsd-background-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackground_la_CPPFLAGS) $(CPPFLAGS) $(libbackground_la_CFLAGS) $(CFLAGS) -MT libbackground_la-gsd-background-manager.lo -MD -MP -MF $(DEPDIR)/libbackground_la-gsd-background-manager.Tpo -c -o libbackground_la-gsd-background-manager.lo `test -f 'gsd-background-manager.c' || echo '$(srcdir)/'`gsd-background-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackground_la-gsd-background-manager.Tpo $(DEPDIR)/libbackground_la-gsd-background-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-background-manager.c' object='libbackground_la-gsd-background-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-background-manager.c' object='libbackground_la-gsd-background-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackground_la_CPPFLAGS) $(CPPFLAGS) $(libbackground_la_CFLAGS) $(CFLAGS) -c -o libbackground_la-gsd-background-manager.lo `test -f 'gsd-background-manager.c' || echo '$(srcdir)/'`gsd-background-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackground_la_CPPFLAGS) $(CPPFLAGS) $(libbackground_la_CFLAGS) $(CFLAGS) -c -o libbackground_la-gsd-background-manager.lo `test -f 'gsd-background-manager.c' || echo '$(srcdir)/'`gsd-background-manager.c test_background-test-background.o: test-background.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -MT test_background-test-background.o -MD -MP -MF $(DEPDIR)/test_background-test-background.Tpo -c -o test_background-test-background.o `test -f 'test-background.c' || echo '$(srcdir)/'`test-background.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_background-test-background.Tpo $(DEPDIR)/test_background-test-background.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-background.c' object='test_background-test-background.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-background.c' object='test_background-test-background.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-test-background.o `test -f 'test-background.c' || echo '$(srcdir)/'`test-background.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-test-background.o `test -f 'test-background.c' || echo '$(srcdir)/'`test-background.c test_background-test-background.obj: test-background.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -MT test_background-test-background.obj -MD -MP -MF $(DEPDIR)/test_background-test-background.Tpo -c -o test_background-test-background.obj `if test -f 'test-background.c'; then $(CYGPATH_W) 'test-background.c'; else $(CYGPATH_W) '$(srcdir)/test-background.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_background-test-background.Tpo $(DEPDIR)/test_background-test-background.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-background.c' object='test_background-test-background.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-background.c' object='test_background-test-background.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-test-background.obj `if test -f 'test-background.c'; then $(CYGPATH_W) 'test-background.c'; else $(CYGPATH_W) '$(srcdir)/test-background.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-test-background.obj `if test -f 'test-background.c'; then $(CYGPATH_W) 'test-background.c'; else $(CYGPATH_W) '$(srcdir)/test-background.c'; fi` test_background-gsd-background-manager.o: gsd-background-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -MT test_background-gsd-background-manager.o -MD -MP -MF $(DEPDIR)/test_background-gsd-background-manager.Tpo -c -o test_background-gsd-background-manager.o `test -f 'gsd-background-manager.c' || echo '$(srcdir)/'`gsd-background-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_background-gsd-background-manager.Tpo $(DEPDIR)/test_background-gsd-background-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-background-manager.c' object='test_background-gsd-background-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-background-manager.c' object='test_background-gsd-background-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-gsd-background-manager.o `test -f 'gsd-background-manager.c' || echo '$(srcdir)/'`gsd-background-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-gsd-background-manager.o `test -f 'gsd-background-manager.c' || echo '$(srcdir)/'`gsd-background-manager.c test_background-gsd-background-manager.obj: gsd-background-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -MT test_background-gsd-background-manager.obj -MD -MP -MF $(DEPDIR)/test_background-gsd-background-manager.Tpo -c -o test_background-gsd-background-manager.obj `if test -f 'gsd-background-manager.c'; then $(CYGPATH_W) 'gsd-background-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-background-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_background-gsd-background-manager.Tpo $(DEPDIR)/test_background-gsd-background-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-background-manager.c' object='test_background-gsd-background-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-background-manager.c' object='test_background-gsd-background-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-gsd-background-manager.obj `if test -f 'gsd-background-manager.c'; then $(CYGPATH_W) 'gsd-background-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-background-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_background_CPPFLAGS) $(CPPFLAGS) $(test_background_CFLAGS) $(CFLAGS) -c -o test_background-gsd-background-manager.obj `if test -f 'gsd-background-manager.c'; then $(CYGPATH_W) 'gsd-background-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-background-manager.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -599,7 +596,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -700,15 +699,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/clipboard/Makefile.in gnome-settings-daemon-3.4.1/plugins/clipboard/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/clipboard/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/clipboard/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -84,8 +78,8 @@ libclipboard_la-xutils.lo libclipboard_la-list.lo \ $(am__objects_1) libclipboard_la_OBJECTS = $(am_libclipboard_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libclipboard_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -101,21 +95,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libclipboard_la_SOURCES) DIST_SOURCES = $(libclipboard_la_SOURCES) @@ -201,10 +195,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -312,8 +302,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -451,7 +439,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libclipboard.la: $(libclipboard_la_OBJECTS) $(libclipboard_la_DEPENDENCIES) $(EXTRA_libclipboard_la_DEPENDENCIES) +libclipboard.la: $(libclipboard_la_OBJECTS) $(libclipboard_la_DEPENDENCIES) $(AM_V_CCLD)$(libclipboard_la_LINK) -rpath $(plugindir) $(libclipboard_la_OBJECTS) $(libclipboard_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -468,51 +456,58 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libclipboard_la-gsd-clipboard-plugin.lo: gsd-clipboard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -MT libclipboard_la-gsd-clipboard-plugin.lo -MD -MP -MF $(DEPDIR)/libclipboard_la-gsd-clipboard-plugin.Tpo -c -o libclipboard_la-gsd-clipboard-plugin.lo `test -f 'gsd-clipboard-plugin.c' || echo '$(srcdir)/'`gsd-clipboard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libclipboard_la-gsd-clipboard-plugin.Tpo $(DEPDIR)/libclipboard_la-gsd-clipboard-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-clipboard-plugin.c' object='libclipboard_la-gsd-clipboard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-clipboard-plugin.c' object='libclipboard_la-gsd-clipboard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-gsd-clipboard-plugin.lo `test -f 'gsd-clipboard-plugin.c' || echo '$(srcdir)/'`gsd-clipboard-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-gsd-clipboard-plugin.lo `test -f 'gsd-clipboard-plugin.c' || echo '$(srcdir)/'`gsd-clipboard-plugin.c libclipboard_la-gsd-clipboard-manager.lo: gsd-clipboard-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -MT libclipboard_la-gsd-clipboard-manager.lo -MD -MP -MF $(DEPDIR)/libclipboard_la-gsd-clipboard-manager.Tpo -c -o libclipboard_la-gsd-clipboard-manager.lo `test -f 'gsd-clipboard-manager.c' || echo '$(srcdir)/'`gsd-clipboard-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libclipboard_la-gsd-clipboard-manager.Tpo $(DEPDIR)/libclipboard_la-gsd-clipboard-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-clipboard-manager.c' object='libclipboard_la-gsd-clipboard-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-clipboard-manager.c' object='libclipboard_la-gsd-clipboard-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-gsd-clipboard-manager.lo `test -f 'gsd-clipboard-manager.c' || echo '$(srcdir)/'`gsd-clipboard-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-gsd-clipboard-manager.lo `test -f 'gsd-clipboard-manager.c' || echo '$(srcdir)/'`gsd-clipboard-manager.c libclipboard_la-xutils.lo: xutils.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -MT libclipboard_la-xutils.lo -MD -MP -MF $(DEPDIR)/libclipboard_la-xutils.Tpo -c -o libclipboard_la-xutils.lo `test -f 'xutils.c' || echo '$(srcdir)/'`xutils.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libclipboard_la-xutils.Tpo $(DEPDIR)/libclipboard_la-xutils.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xutils.c' object='libclipboard_la-xutils.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xutils.c' object='libclipboard_la-xutils.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-xutils.lo `test -f 'xutils.c' || echo '$(srcdir)/'`xutils.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-xutils.lo `test -f 'xutils.c' || echo '$(srcdir)/'`xutils.c libclipboard_la-list.lo: list.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -MT libclipboard_la-list.lo -MD -MP -MF $(DEPDIR)/libclipboard_la-list.Tpo -c -o libclipboard_la-list.lo `test -f 'list.c' || echo '$(srcdir)/'`list.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libclipboard_la-list.Tpo $(DEPDIR)/libclipboard_la-list.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='list.c' object='libclipboard_la-list.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='list.c' object='libclipboard_la-list.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-list.lo `test -f 'list.c' || echo '$(srcdir)/'`list.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclipboard_la_CPPFLAGS) $(CPPFLAGS) $(libclipboard_la_CFLAGS) $(CFLAGS) -c -o libclipboard_la-list.lo `test -f 'list.c' || echo '$(srcdir)/'`list.c mostlyclean-libtool: -rm -f *.lo @@ -536,7 +531,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -637,15 +634,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/color/Makefile.in gnome-settings-daemon-3.4.1/plugins/color/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/color/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/color/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -69,12 +69,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -87,8 +81,8 @@ libcolor_la-gsd-color-manager.lo \ libcolor_la-gsd-color-plugin.lo libcolor_la_OBJECTS = $(am_libcolor_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libcolor_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libcolor_la_CFLAGS) \ @@ -112,21 +106,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libcolor_la_SOURCES) $(gcm_self_test_SOURCES) DIST_SOURCES = $(libcolor_la_SOURCES) $(gcm_self_test_SOURCES) @@ -214,10 +208,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -325,8 +315,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -490,7 +478,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libcolor.la: $(libcolor_la_OBJECTS) $(libcolor_la_DEPENDENCIES) $(EXTRA_libcolor_la_DEPENDENCIES) +libcolor.la: $(libcolor_la_OBJECTS) $(libcolor_la_DEPENDENCIES) $(AM_V_CCLD)$(libcolor_la_LINK) -rpath $(plugindir) $(libcolor_la_OBJECTS) $(libcolor_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @@ -501,7 +489,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gcm-self-test$(EXEEXT): $(gcm_self_test_OBJECTS) $(gcm_self_test_DEPENDENCIES) $(EXTRA_gcm_self_test_DEPENDENCIES) +gcm-self-test$(EXEEXT): $(gcm_self_test_OBJECTS) $(gcm_self_test_DEPENDENCIES) @rm -f gcm-self-test$(EXEEXT) $(AM_V_CCLD)$(gcm_self_test_LINK) $(gcm_self_test_OBJECTS) $(gcm_self_test_LDADD) $(LIBS) @@ -523,100 +511,114 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libcolor_la-gcm-profile-store.lo: gcm-profile-store.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -MT libcolor_la-gcm-profile-store.lo -MD -MP -MF $(DEPDIR)/libcolor_la-gcm-profile-store.Tpo -c -o libcolor_la-gcm-profile-store.lo `test -f 'gcm-profile-store.c' || echo '$(srcdir)/'`gcm-profile-store.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcolor_la-gcm-profile-store.Tpo $(DEPDIR)/libcolor_la-gcm-profile-store.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-profile-store.c' object='libcolor_la-gcm-profile-store.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-profile-store.c' object='libcolor_la-gcm-profile-store.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gcm-profile-store.lo `test -f 'gcm-profile-store.c' || echo '$(srcdir)/'`gcm-profile-store.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gcm-profile-store.lo `test -f 'gcm-profile-store.c' || echo '$(srcdir)/'`gcm-profile-store.c libcolor_la-gcm-dmi.lo: gcm-dmi.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -MT libcolor_la-gcm-dmi.lo -MD -MP -MF $(DEPDIR)/libcolor_la-gcm-dmi.Tpo -c -o libcolor_la-gcm-dmi.lo `test -f 'gcm-dmi.c' || echo '$(srcdir)/'`gcm-dmi.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcolor_la-gcm-dmi.Tpo $(DEPDIR)/libcolor_la-gcm-dmi.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-dmi.c' object='libcolor_la-gcm-dmi.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-dmi.c' object='libcolor_la-gcm-dmi.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gcm-dmi.lo `test -f 'gcm-dmi.c' || echo '$(srcdir)/'`gcm-dmi.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gcm-dmi.lo `test -f 'gcm-dmi.c' || echo '$(srcdir)/'`gcm-dmi.c libcolor_la-gcm-edid.lo: gcm-edid.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -MT libcolor_la-gcm-edid.lo -MD -MP -MF $(DEPDIR)/libcolor_la-gcm-edid.Tpo -c -o libcolor_la-gcm-edid.lo `test -f 'gcm-edid.c' || echo '$(srcdir)/'`gcm-edid.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcolor_la-gcm-edid.Tpo $(DEPDIR)/libcolor_la-gcm-edid.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-edid.c' object='libcolor_la-gcm-edid.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-edid.c' object='libcolor_la-gcm-edid.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gcm-edid.lo `test -f 'gcm-edid.c' || echo '$(srcdir)/'`gcm-edid.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gcm-edid.lo `test -f 'gcm-edid.c' || echo '$(srcdir)/'`gcm-edid.c libcolor_la-gsd-color-manager.lo: gsd-color-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -MT libcolor_la-gsd-color-manager.lo -MD -MP -MF $(DEPDIR)/libcolor_la-gsd-color-manager.Tpo -c -o libcolor_la-gsd-color-manager.lo `test -f 'gsd-color-manager.c' || echo '$(srcdir)/'`gsd-color-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcolor_la-gsd-color-manager.Tpo $(DEPDIR)/libcolor_la-gsd-color-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-color-manager.c' object='libcolor_la-gsd-color-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-color-manager.c' object='libcolor_la-gsd-color-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gsd-color-manager.lo `test -f 'gsd-color-manager.c' || echo '$(srcdir)/'`gsd-color-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gsd-color-manager.lo `test -f 'gsd-color-manager.c' || echo '$(srcdir)/'`gsd-color-manager.c libcolor_la-gsd-color-plugin.lo: gsd-color-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -MT libcolor_la-gsd-color-plugin.lo -MD -MP -MF $(DEPDIR)/libcolor_la-gsd-color-plugin.Tpo -c -o libcolor_la-gsd-color-plugin.lo `test -f 'gsd-color-plugin.c' || echo '$(srcdir)/'`gsd-color-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcolor_la-gsd-color-plugin.Tpo $(DEPDIR)/libcolor_la-gsd-color-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-color-plugin.c' object='libcolor_la-gsd-color-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-color-plugin.c' object='libcolor_la-gsd-color-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gsd-color-plugin.lo `test -f 'gsd-color-plugin.c' || echo '$(srcdir)/'`gsd-color-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcolor_la_CPPFLAGS) $(CPPFLAGS) $(libcolor_la_CFLAGS) $(CFLAGS) -c -o libcolor_la-gsd-color-plugin.lo `test -f 'gsd-color-plugin.c' || echo '$(srcdir)/'`gsd-color-plugin.c gcm_self_test-gcm-dmi.o: gcm-dmi.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -MT gcm_self_test-gcm-dmi.o -MD -MP -MF $(DEPDIR)/gcm_self_test-gcm-dmi.Tpo -c -o gcm_self_test-gcm-dmi.o `test -f 'gcm-dmi.c' || echo '$(srcdir)/'`gcm-dmi.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gcm_self_test-gcm-dmi.Tpo $(DEPDIR)/gcm_self_test-gcm-dmi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-dmi.c' object='gcm_self_test-gcm-dmi.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-dmi.c' object='gcm_self_test-gcm-dmi.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-dmi.o `test -f 'gcm-dmi.c' || echo '$(srcdir)/'`gcm-dmi.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-dmi.o `test -f 'gcm-dmi.c' || echo '$(srcdir)/'`gcm-dmi.c gcm_self_test-gcm-dmi.obj: gcm-dmi.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -MT gcm_self_test-gcm-dmi.obj -MD -MP -MF $(DEPDIR)/gcm_self_test-gcm-dmi.Tpo -c -o gcm_self_test-gcm-dmi.obj `if test -f 'gcm-dmi.c'; then $(CYGPATH_W) 'gcm-dmi.c'; else $(CYGPATH_W) '$(srcdir)/gcm-dmi.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gcm_self_test-gcm-dmi.Tpo $(DEPDIR)/gcm_self_test-gcm-dmi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-dmi.c' object='gcm_self_test-gcm-dmi.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-dmi.c' object='gcm_self_test-gcm-dmi.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-dmi.obj `if test -f 'gcm-dmi.c'; then $(CYGPATH_W) 'gcm-dmi.c'; else $(CYGPATH_W) '$(srcdir)/gcm-dmi.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-dmi.obj `if test -f 'gcm-dmi.c'; then $(CYGPATH_W) 'gcm-dmi.c'; else $(CYGPATH_W) '$(srcdir)/gcm-dmi.c'; fi` gcm_self_test-gcm-edid.o: gcm-edid.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -MT gcm_self_test-gcm-edid.o -MD -MP -MF $(DEPDIR)/gcm_self_test-gcm-edid.Tpo -c -o gcm_self_test-gcm-edid.o `test -f 'gcm-edid.c' || echo '$(srcdir)/'`gcm-edid.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gcm_self_test-gcm-edid.Tpo $(DEPDIR)/gcm_self_test-gcm-edid.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-edid.c' object='gcm_self_test-gcm-edid.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-edid.c' object='gcm_self_test-gcm-edid.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-edid.o `test -f 'gcm-edid.c' || echo '$(srcdir)/'`gcm-edid.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-edid.o `test -f 'gcm-edid.c' || echo '$(srcdir)/'`gcm-edid.c gcm_self_test-gcm-edid.obj: gcm-edid.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -MT gcm_self_test-gcm-edid.obj -MD -MP -MF $(DEPDIR)/gcm_self_test-gcm-edid.Tpo -c -o gcm_self_test-gcm-edid.obj `if test -f 'gcm-edid.c'; then $(CYGPATH_W) 'gcm-edid.c'; else $(CYGPATH_W) '$(srcdir)/gcm-edid.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gcm_self_test-gcm-edid.Tpo $(DEPDIR)/gcm_self_test-gcm-edid.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-edid.c' object='gcm_self_test-gcm-edid.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-edid.c' object='gcm_self_test-gcm-edid.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-edid.obj `if test -f 'gcm-edid.c'; then $(CYGPATH_W) 'gcm-edid.c'; else $(CYGPATH_W) '$(srcdir)/gcm-edid.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-edid.obj `if test -f 'gcm-edid.c'; then $(CYGPATH_W) 'gcm-edid.c'; else $(CYGPATH_W) '$(srcdir)/gcm-edid.c'; fi` gcm_self_test-gcm-self-test.o: gcm-self-test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -MT gcm_self_test-gcm-self-test.o -MD -MP -MF $(DEPDIR)/gcm_self_test-gcm-self-test.Tpo -c -o gcm_self_test-gcm-self-test.o `test -f 'gcm-self-test.c' || echo '$(srcdir)/'`gcm-self-test.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gcm_self_test-gcm-self-test.Tpo $(DEPDIR)/gcm_self_test-gcm-self-test.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-self-test.c' object='gcm_self_test-gcm-self-test.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-self-test.c' object='gcm_self_test-gcm-self-test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-self-test.o `test -f 'gcm-self-test.c' || echo '$(srcdir)/'`gcm-self-test.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-self-test.o `test -f 'gcm-self-test.c' || echo '$(srcdir)/'`gcm-self-test.c gcm_self_test-gcm-self-test.obj: gcm-self-test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -MT gcm_self_test-gcm-self-test.obj -MD -MP -MF $(DEPDIR)/gcm_self_test-gcm-self-test.Tpo -c -o gcm_self_test-gcm-self-test.obj `if test -f 'gcm-self-test.c'; then $(CYGPATH_W) 'gcm-self-test.c'; else $(CYGPATH_W) '$(srcdir)/gcm-self-test.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gcm_self_test-gcm-self-test.Tpo $(DEPDIR)/gcm_self_test-gcm-self-test.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcm-self-test.c' object='gcm_self_test-gcm-self-test.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gcm-self-test.c' object='gcm_self_test-gcm-self-test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-self-test.obj `if test -f 'gcm-self-test.c'; then $(CYGPATH_W) 'gcm-self-test.c'; else $(CYGPATH_W) '$(srcdir)/gcm-self-test.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gcm_self_test_CPPFLAGS) $(CPPFLAGS) $(gcm_self_test_CFLAGS) $(CFLAGS) -c -o gcm_self_test-gcm-self-test.obj `if test -f 'gcm-self-test.c'; then $(CYGPATH_W) 'gcm-self-test.c'; else $(CYGPATH_W) '$(srcdir)/gcm-self-test.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -640,7 +642,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -775,15 +779,14 @@ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ if test "$$failed" -eq 0; then \ - col="$$grn"; \ + echo "$$grn$$dashes"; \ else \ - col="$$red"; \ + echo "$$red$$dashes"; \ fi; \ - echo "$${col}$$dashes$${std}"; \ - echo "$${col}$$banner$${std}"; \ - test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ - test -z "$$report" || echo "$${col}$$report$${std}"; \ - echo "$${col}$$dashes$${std}"; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ test "$$failed" -eq 0; \ else :; fi @@ -836,15 +839,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/common/Makefile.in gnome-settings-daemon-3.4.1/plugins/common/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/common/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/common/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -56,8 +56,8 @@ am_libcommon_la_OBJECTS = libcommon_la-gsd-keygrab.lo \ libcommon_la-gsd-input-helper.lo libcommon_la_OBJECTS = $(am_libcommon_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libcommon_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libcommon_la_CFLAGS) \ @@ -89,21 +89,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libcommon_la_SOURCES) $(test_egg_key_parsing_SOURCES) \ $(test_input_helper_SOURCES) @@ -130,12 +130,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(scriptsdir)" DATA = $(scripts_DATA) ETAGS = etags @@ -219,10 +213,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -330,8 +320,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -428,7 +416,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libcommon.la: $(libcommon_la_OBJECTS) $(libcommon_la_DEPENDENCIES) $(EXTRA_libcommon_la_DEPENDENCIES) +libcommon.la: $(libcommon_la_OBJECTS) $(libcommon_la_DEPENDENCIES) $(AM_V_CCLD)$(libcommon_la_LINK) $(libcommon_la_OBJECTS) $(libcommon_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @@ -439,10 +427,10 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -test-egg-key-parsing$(EXEEXT): $(test_egg_key_parsing_OBJECTS) $(test_egg_key_parsing_DEPENDENCIES) $(EXTRA_test_egg_key_parsing_DEPENDENCIES) +test-egg-key-parsing$(EXEEXT): $(test_egg_key_parsing_OBJECTS) $(test_egg_key_parsing_DEPENDENCIES) @rm -f test-egg-key-parsing$(EXEEXT) $(AM_V_CCLD)$(test_egg_key_parsing_LINK) $(test_egg_key_parsing_OBJECTS) $(test_egg_key_parsing_LDADD) $(LIBS) -test-input-helper$(EXEEXT): $(test_input_helper_OBJECTS) $(test_input_helper_DEPENDENCIES) $(EXTRA_test_input_helper_DEPENDENCIES) +test-input-helper$(EXEEXT): $(test_input_helper_OBJECTS) $(test_input_helper_DEPENDENCIES) @rm -f test-input-helper$(EXEEXT) $(AM_V_CCLD)$(test_input_helper_LINK) $(test_input_helper_OBJECTS) $(test_input_helper_LDADD) $(LIBS) @@ -460,65 +448,74 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libcommon_la-gsd-keygrab.lo: gsd-keygrab.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcommon_la_CPPFLAGS) $(CPPFLAGS) $(libcommon_la_CFLAGS) $(CFLAGS) -MT libcommon_la-gsd-keygrab.lo -MD -MP -MF $(DEPDIR)/libcommon_la-gsd-keygrab.Tpo -c -o libcommon_la-gsd-keygrab.lo `test -f 'gsd-keygrab.c' || echo '$(srcdir)/'`gsd-keygrab.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcommon_la-gsd-keygrab.Tpo $(DEPDIR)/libcommon_la-gsd-keygrab.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-keygrab.c' object='libcommon_la-gsd-keygrab.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-keygrab.c' object='libcommon_la-gsd-keygrab.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcommon_la_CPPFLAGS) $(CPPFLAGS) $(libcommon_la_CFLAGS) $(CFLAGS) -c -o libcommon_la-gsd-keygrab.lo `test -f 'gsd-keygrab.c' || echo '$(srcdir)/'`gsd-keygrab.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcommon_la_CPPFLAGS) $(CPPFLAGS) $(libcommon_la_CFLAGS) $(CFLAGS) -c -o libcommon_la-gsd-keygrab.lo `test -f 'gsd-keygrab.c' || echo '$(srcdir)/'`gsd-keygrab.c libcommon_la-gsd-input-helper.lo: gsd-input-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcommon_la_CPPFLAGS) $(CPPFLAGS) $(libcommon_la_CFLAGS) $(CFLAGS) -MT libcommon_la-gsd-input-helper.lo -MD -MP -MF $(DEPDIR)/libcommon_la-gsd-input-helper.Tpo -c -o libcommon_la-gsd-input-helper.lo `test -f 'gsd-input-helper.c' || echo '$(srcdir)/'`gsd-input-helper.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcommon_la-gsd-input-helper.Tpo $(DEPDIR)/libcommon_la-gsd-input-helper.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-input-helper.c' object='libcommon_la-gsd-input-helper.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-input-helper.c' object='libcommon_la-gsd-input-helper.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcommon_la_CPPFLAGS) $(CPPFLAGS) $(libcommon_la_CFLAGS) $(CFLAGS) -c -o libcommon_la-gsd-input-helper.lo `test -f 'gsd-input-helper.c' || echo '$(srcdir)/'`gsd-input-helper.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcommon_la_CPPFLAGS) $(CPPFLAGS) $(libcommon_la_CFLAGS) $(CFLAGS) -c -o libcommon_la-gsd-input-helper.lo `test -f 'gsd-input-helper.c' || echo '$(srcdir)/'`gsd-input-helper.c test_egg_key_parsing-test-egg-key-parsing.o: test-egg-key-parsing.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_egg_key_parsing_CFLAGS) $(CFLAGS) -MT test_egg_key_parsing-test-egg-key-parsing.o -MD -MP -MF $(DEPDIR)/test_egg_key_parsing-test-egg-key-parsing.Tpo -c -o test_egg_key_parsing-test-egg-key-parsing.o `test -f 'test-egg-key-parsing.c' || echo '$(srcdir)/'`test-egg-key-parsing.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_egg_key_parsing-test-egg-key-parsing.Tpo $(DEPDIR)/test_egg_key_parsing-test-egg-key-parsing.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-egg-key-parsing.c' object='test_egg_key_parsing-test-egg-key-parsing.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-egg-key-parsing.c' object='test_egg_key_parsing-test-egg-key-parsing.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_egg_key_parsing_CFLAGS) $(CFLAGS) -c -o test_egg_key_parsing-test-egg-key-parsing.o `test -f 'test-egg-key-parsing.c' || echo '$(srcdir)/'`test-egg-key-parsing.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_egg_key_parsing_CFLAGS) $(CFLAGS) -c -o test_egg_key_parsing-test-egg-key-parsing.o `test -f 'test-egg-key-parsing.c' || echo '$(srcdir)/'`test-egg-key-parsing.c test_egg_key_parsing-test-egg-key-parsing.obj: test-egg-key-parsing.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_egg_key_parsing_CFLAGS) $(CFLAGS) -MT test_egg_key_parsing-test-egg-key-parsing.obj -MD -MP -MF $(DEPDIR)/test_egg_key_parsing-test-egg-key-parsing.Tpo -c -o test_egg_key_parsing-test-egg-key-parsing.obj `if test -f 'test-egg-key-parsing.c'; then $(CYGPATH_W) 'test-egg-key-parsing.c'; else $(CYGPATH_W) '$(srcdir)/test-egg-key-parsing.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_egg_key_parsing-test-egg-key-parsing.Tpo $(DEPDIR)/test_egg_key_parsing-test-egg-key-parsing.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-egg-key-parsing.c' object='test_egg_key_parsing-test-egg-key-parsing.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-egg-key-parsing.c' object='test_egg_key_parsing-test-egg-key-parsing.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_egg_key_parsing_CFLAGS) $(CFLAGS) -c -o test_egg_key_parsing-test-egg-key-parsing.obj `if test -f 'test-egg-key-parsing.c'; then $(CYGPATH_W) 'test-egg-key-parsing.c'; else $(CYGPATH_W) '$(srcdir)/test-egg-key-parsing.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_egg_key_parsing_CFLAGS) $(CFLAGS) -c -o test_egg_key_parsing-test-egg-key-parsing.obj `if test -f 'test-egg-key-parsing.c'; then $(CYGPATH_W) 'test-egg-key-parsing.c'; else $(CYGPATH_W) '$(srcdir)/test-egg-key-parsing.c'; fi` test_input_helper-test-input-helper.o: test-input-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_input_helper_CFLAGS) $(CFLAGS) -MT test_input_helper-test-input-helper.o -MD -MP -MF $(DEPDIR)/test_input_helper-test-input-helper.Tpo -c -o test_input_helper-test-input-helper.o `test -f 'test-input-helper.c' || echo '$(srcdir)/'`test-input-helper.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_input_helper-test-input-helper.Tpo $(DEPDIR)/test_input_helper-test-input-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-input-helper.c' object='test_input_helper-test-input-helper.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-input-helper.c' object='test_input_helper-test-input-helper.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_input_helper_CFLAGS) $(CFLAGS) -c -o test_input_helper-test-input-helper.o `test -f 'test-input-helper.c' || echo '$(srcdir)/'`test-input-helper.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_input_helper_CFLAGS) $(CFLAGS) -c -o test_input_helper-test-input-helper.o `test -f 'test-input-helper.c' || echo '$(srcdir)/'`test-input-helper.c test_input_helper-test-input-helper.obj: test-input-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_input_helper_CFLAGS) $(CFLAGS) -MT test_input_helper-test-input-helper.obj -MD -MP -MF $(DEPDIR)/test_input_helper-test-input-helper.Tpo -c -o test_input_helper-test-input-helper.obj `if test -f 'test-input-helper.c'; then $(CYGPATH_W) 'test-input-helper.c'; else $(CYGPATH_W) '$(srcdir)/test-input-helper.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_input_helper-test-input-helper.Tpo $(DEPDIR)/test_input_helper-test-input-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-input-helper.c' object='test_input_helper-test-input-helper.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-input-helper.c' object='test_input_helper-test-input-helper.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_input_helper_CFLAGS) $(CFLAGS) -c -o test_input_helper-test-input-helper.obj `if test -f 'test-input-helper.c'; then $(CYGPATH_W) 'test-input-helper.c'; else $(CYGPATH_W) '$(srcdir)/test-input-helper.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_input_helper_CFLAGS) $(CFLAGS) -c -o test_input_helper-test-input-helper.obj `if test -f 'test-input-helper.c'; then $(CYGPATH_W) 'test-input-helper.c'; else $(CYGPATH_W) '$(srcdir)/test-input-helper.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -542,7 +539,9 @@ @$(NORMAL_UNINSTALL) @list='$(scripts_DATA)'; test -n "$(scriptsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(scriptsdir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(scriptsdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(scriptsdir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -643,15 +642,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/cursor/Makefile.in gnome-settings-daemon-3.4.1/plugins/cursor/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/cursor/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/cursor/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -82,8 +76,8 @@ am_libcursor_la_OBJECTS = libcursor_la-gsd-cursor-manager.lo \ libcursor_la-gsd-cursor-plugin.lo libcursor_la_OBJECTS = $(am_libcursor_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libcursor_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libcursor_la_CFLAGS) \ @@ -98,21 +92,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libcursor_la_SOURCES) DIST_SOURCES = $(libcursor_la_SOURCES) @@ -198,10 +192,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -309,8 +299,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -439,7 +427,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libcursor.la: $(libcursor_la_OBJECTS) $(libcursor_la_DEPENDENCIES) $(EXTRA_libcursor_la_DEPENDENCIES) +libcursor.la: $(libcursor_la_OBJECTS) $(libcursor_la_DEPENDENCIES) $(AM_V_CCLD)$(libcursor_la_LINK) -rpath $(plugindir) $(libcursor_la_OBJECTS) $(libcursor_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -454,37 +442,42 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libcursor_la-gsd-cursor-manager.lo: gsd-cursor-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcursor_la_CPPFLAGS) $(CPPFLAGS) $(libcursor_la_CFLAGS) $(CFLAGS) -MT libcursor_la-gsd-cursor-manager.lo -MD -MP -MF $(DEPDIR)/libcursor_la-gsd-cursor-manager.Tpo -c -o libcursor_la-gsd-cursor-manager.lo `test -f 'gsd-cursor-manager.c' || echo '$(srcdir)/'`gsd-cursor-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcursor_la-gsd-cursor-manager.Tpo $(DEPDIR)/libcursor_la-gsd-cursor-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-cursor-manager.c' object='libcursor_la-gsd-cursor-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-cursor-manager.c' object='libcursor_la-gsd-cursor-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcursor_la_CPPFLAGS) $(CPPFLAGS) $(libcursor_la_CFLAGS) $(CFLAGS) -c -o libcursor_la-gsd-cursor-manager.lo `test -f 'gsd-cursor-manager.c' || echo '$(srcdir)/'`gsd-cursor-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcursor_la_CPPFLAGS) $(CPPFLAGS) $(libcursor_la_CFLAGS) $(CFLAGS) -c -o libcursor_la-gsd-cursor-manager.lo `test -f 'gsd-cursor-manager.c' || echo '$(srcdir)/'`gsd-cursor-manager.c libcursor_la-gsd-cursor-plugin.lo: gsd-cursor-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcursor_la_CPPFLAGS) $(CPPFLAGS) $(libcursor_la_CFLAGS) $(CFLAGS) -MT libcursor_la-gsd-cursor-plugin.lo -MD -MP -MF $(DEPDIR)/libcursor_la-gsd-cursor-plugin.Tpo -c -o libcursor_la-gsd-cursor-plugin.lo `test -f 'gsd-cursor-plugin.c' || echo '$(srcdir)/'`gsd-cursor-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcursor_la-gsd-cursor-plugin.Tpo $(DEPDIR)/libcursor_la-gsd-cursor-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-cursor-plugin.c' object='libcursor_la-gsd-cursor-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-cursor-plugin.c' object='libcursor_la-gsd-cursor-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcursor_la_CPPFLAGS) $(CPPFLAGS) $(libcursor_la_CFLAGS) $(CFLAGS) -c -o libcursor_la-gsd-cursor-plugin.lo `test -f 'gsd-cursor-plugin.c' || echo '$(srcdir)/'`gsd-cursor-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcursor_la_CPPFLAGS) $(CPPFLAGS) $(libcursor_la_CFLAGS) $(CFLAGS) -c -o libcursor_la-gsd-cursor-plugin.lo `test -f 'gsd-cursor-plugin.c' || echo '$(srcdir)/'`gsd-cursor-plugin.c mostlyclean-libtool: -rm -f *.lo @@ -508,7 +501,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -609,15 +604,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/dummy/Makefile.in gnome-settings-daemon-3.4.1/plugins/dummy/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/dummy/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/dummy/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -80,8 +74,8 @@ am_libdummy_la_OBJECTS = libdummy_la-gsd-dummy-manager.lo \ libdummy_la-gsd-dummy-plugin.lo libdummy_la_OBJECTS = $(am_libdummy_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libdummy_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libdummy_la_CFLAGS) \ @@ -96,21 +90,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libdummy_la_SOURCES) DIST_SOURCES = $(libdummy_la_SOURCES) @@ -196,10 +190,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -307,8 +297,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -420,7 +408,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libdummy.la: $(libdummy_la_OBJECTS) $(libdummy_la_DEPENDENCIES) $(EXTRA_libdummy_la_DEPENDENCIES) +libdummy.la: $(libdummy_la_OBJECTS) $(libdummy_la_DEPENDENCIES) $(AM_V_CCLD)$(libdummy_la_LINK) -rpath $(plugindir) $(libdummy_la_OBJECTS) $(libdummy_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -435,37 +423,42 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libdummy_la-gsd-dummy-manager.lo: gsd-dummy-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdummy_la_CPPFLAGS) $(CPPFLAGS) $(libdummy_la_CFLAGS) $(CFLAGS) -MT libdummy_la-gsd-dummy-manager.lo -MD -MP -MF $(DEPDIR)/libdummy_la-gsd-dummy-manager.Tpo -c -o libdummy_la-gsd-dummy-manager.lo `test -f 'gsd-dummy-manager.c' || echo '$(srcdir)/'`gsd-dummy-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdummy_la-gsd-dummy-manager.Tpo $(DEPDIR)/libdummy_la-gsd-dummy-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-dummy-manager.c' object='libdummy_la-gsd-dummy-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-dummy-manager.c' object='libdummy_la-gsd-dummy-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdummy_la_CPPFLAGS) $(CPPFLAGS) $(libdummy_la_CFLAGS) $(CFLAGS) -c -o libdummy_la-gsd-dummy-manager.lo `test -f 'gsd-dummy-manager.c' || echo '$(srcdir)/'`gsd-dummy-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdummy_la_CPPFLAGS) $(CPPFLAGS) $(libdummy_la_CFLAGS) $(CFLAGS) -c -o libdummy_la-gsd-dummy-manager.lo `test -f 'gsd-dummy-manager.c' || echo '$(srcdir)/'`gsd-dummy-manager.c libdummy_la-gsd-dummy-plugin.lo: gsd-dummy-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdummy_la_CPPFLAGS) $(CPPFLAGS) $(libdummy_la_CFLAGS) $(CFLAGS) -MT libdummy_la-gsd-dummy-plugin.lo -MD -MP -MF $(DEPDIR)/libdummy_la-gsd-dummy-plugin.Tpo -c -o libdummy_la-gsd-dummy-plugin.lo `test -f 'gsd-dummy-plugin.c' || echo '$(srcdir)/'`gsd-dummy-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdummy_la-gsd-dummy-plugin.Tpo $(DEPDIR)/libdummy_la-gsd-dummy-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-dummy-plugin.c' object='libdummy_la-gsd-dummy-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-dummy-plugin.c' object='libdummy_la-gsd-dummy-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdummy_la_CPPFLAGS) $(CPPFLAGS) $(libdummy_la_CFLAGS) $(CFLAGS) -c -o libdummy_la-gsd-dummy-plugin.lo `test -f 'gsd-dummy-plugin.c' || echo '$(srcdir)/'`gsd-dummy-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdummy_la_CPPFLAGS) $(CPPFLAGS) $(libdummy_la_CFLAGS) $(CFLAGS) -c -o libdummy_la-gsd-dummy-plugin.lo `test -f 'gsd-dummy-plugin.c' || echo '$(srcdir)/'`gsd-dummy-plugin.c mostlyclean-libtool: -rm -f *.lo @@ -477,7 +470,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -578,15 +573,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/housekeeping/Makefile.in gnome-settings-daemon-3.4.1/plugins/housekeeping/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/housekeeping/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/housekeeping/Makefile.in 2012-04-16 12:37:17.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -70,12 +70,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -87,8 +81,8 @@ libhousekeeping_la-gsd-housekeeping-manager.lo \ libhousekeeping_la-gsd-housekeeping-plugin.lo libhousekeeping_la_OBJECTS = $(am_libhousekeeping_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libhousekeeping_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -129,21 +123,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libhousekeeping_la_SOURCES) $(gsd_disk_space_test_SOURCES) \ $(gsd_empty_trash_test_SOURCES) @@ -231,10 +225,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -342,8 +332,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -485,7 +473,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libhousekeeping.la: $(libhousekeeping_la_OBJECTS) $(libhousekeeping_la_DEPENDENCIES) $(EXTRA_libhousekeeping_la_DEPENDENCIES) +libhousekeeping.la: $(libhousekeeping_la_OBJECTS) $(libhousekeeping_la_DEPENDENCIES) $(AM_V_CCLD)$(libhousekeeping_la_LINK) -rpath $(plugindir) $(libhousekeeping_la_OBJECTS) $(libhousekeeping_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @@ -496,10 +484,10 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gsd-disk-space-test$(EXEEXT): $(gsd_disk_space_test_OBJECTS) $(gsd_disk_space_test_DEPENDENCIES) $(EXTRA_gsd_disk_space_test_DEPENDENCIES) +gsd-disk-space-test$(EXEEXT): $(gsd_disk_space_test_OBJECTS) $(gsd_disk_space_test_DEPENDENCIES) @rm -f gsd-disk-space-test$(EXEEXT) $(AM_V_CCLD)$(gsd_disk_space_test_LINK) $(gsd_disk_space_test_OBJECTS) $(gsd_disk_space_test_LDADD) $(LIBS) -gsd-empty-trash-test$(EXEEXT): $(gsd_empty_trash_test_OBJECTS) $(gsd_empty_trash_test_DEPENDENCIES) $(EXTRA_gsd_empty_trash_test_DEPENDENCIES) +gsd-empty-trash-test$(EXEEXT): $(gsd_empty_trash_test_OBJECTS) $(gsd_empty_trash_test_DEPENDENCIES) @rm -f gsd-empty-trash-test$(EXEEXT) $(AM_V_CCLD)$(gsd_empty_trash_test_LINK) $(gsd_empty_trash_test_OBJECTS) $(gsd_empty_trash_test_LDADD) $(LIBS) @@ -523,135 +511,154 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libhousekeeping_la-gsd-disk-space.lo: gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -MT libhousekeeping_la-gsd-disk-space.lo -MD -MP -MF $(DEPDIR)/libhousekeeping_la-gsd-disk-space.Tpo -c -o libhousekeeping_la-gsd-disk-space.lo `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhousekeeping_la-gsd-disk-space.Tpo $(DEPDIR)/libhousekeeping_la-gsd-disk-space.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-disk-space.c' object='libhousekeeping_la-gsd-disk-space.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-disk-space.c' object='libhousekeeping_la-gsd-disk-space.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-disk-space.lo `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-disk-space.lo `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c libhousekeeping_la-gsd-ldsm-dialog.lo: gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -MT libhousekeeping_la-gsd-ldsm-dialog.lo -MD -MP -MF $(DEPDIR)/libhousekeeping_la-gsd-ldsm-dialog.Tpo -c -o libhousekeeping_la-gsd-ldsm-dialog.lo `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhousekeeping_la-gsd-ldsm-dialog.Tpo $(DEPDIR)/libhousekeeping_la-gsd-ldsm-dialog.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-ldsm-dialog.c' object='libhousekeeping_la-gsd-ldsm-dialog.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-ldsm-dialog.c' object='libhousekeeping_la-gsd-ldsm-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-ldsm-dialog.lo `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-ldsm-dialog.lo `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c libhousekeeping_la-gsd-housekeeping-manager.lo: gsd-housekeeping-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -MT libhousekeeping_la-gsd-housekeeping-manager.lo -MD -MP -MF $(DEPDIR)/libhousekeeping_la-gsd-housekeeping-manager.Tpo -c -o libhousekeeping_la-gsd-housekeeping-manager.lo `test -f 'gsd-housekeeping-manager.c' || echo '$(srcdir)/'`gsd-housekeeping-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhousekeeping_la-gsd-housekeeping-manager.Tpo $(DEPDIR)/libhousekeeping_la-gsd-housekeeping-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-housekeeping-manager.c' object='libhousekeeping_la-gsd-housekeeping-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-housekeeping-manager.c' object='libhousekeeping_la-gsd-housekeeping-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-housekeeping-manager.lo `test -f 'gsd-housekeeping-manager.c' || echo '$(srcdir)/'`gsd-housekeeping-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-housekeeping-manager.lo `test -f 'gsd-housekeeping-manager.c' || echo '$(srcdir)/'`gsd-housekeeping-manager.c libhousekeeping_la-gsd-housekeeping-plugin.lo: gsd-housekeeping-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -MT libhousekeeping_la-gsd-housekeeping-plugin.lo -MD -MP -MF $(DEPDIR)/libhousekeeping_la-gsd-housekeeping-plugin.Tpo -c -o libhousekeeping_la-gsd-housekeeping-plugin.lo `test -f 'gsd-housekeeping-plugin.c' || echo '$(srcdir)/'`gsd-housekeeping-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhousekeeping_la-gsd-housekeeping-plugin.Tpo $(DEPDIR)/libhousekeeping_la-gsd-housekeeping-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-housekeeping-plugin.c' object='libhousekeeping_la-gsd-housekeeping-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-housekeeping-plugin.c' object='libhousekeeping_la-gsd-housekeeping-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-housekeeping-plugin.lo `test -f 'gsd-housekeeping-plugin.c' || echo '$(srcdir)/'`gsd-housekeeping-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhousekeeping_la_CPPFLAGS) $(CPPFLAGS) $(libhousekeeping_la_CFLAGS) $(CFLAGS) -c -o libhousekeeping_la-gsd-housekeeping-plugin.lo `test -f 'gsd-housekeeping-plugin.c' || echo '$(srcdir)/'`gsd-housekeeping-plugin.c gsd_disk_space_test-gsd-disk-space-test.o: gsd-disk-space-test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -MT gsd_disk_space_test-gsd-disk-space-test.o -MD -MP -MF $(DEPDIR)/gsd_disk_space_test-gsd-disk-space-test.Tpo -c -o gsd_disk_space_test-gsd-disk-space-test.o `test -f 'gsd-disk-space-test.c' || echo '$(srcdir)/'`gsd-disk-space-test.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_disk_space_test-gsd-disk-space-test.Tpo $(DEPDIR)/gsd_disk_space_test-gsd-disk-space-test.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-disk-space-test.c' object='gsd_disk_space_test-gsd-disk-space-test.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-disk-space-test.c' object='gsd_disk_space_test-gsd-disk-space-test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space-test.o `test -f 'gsd-disk-space-test.c' || echo '$(srcdir)/'`gsd-disk-space-test.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space-test.o `test -f 'gsd-disk-space-test.c' || echo '$(srcdir)/'`gsd-disk-space-test.c gsd_disk_space_test-gsd-disk-space-test.obj: gsd-disk-space-test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -MT gsd_disk_space_test-gsd-disk-space-test.obj -MD -MP -MF $(DEPDIR)/gsd_disk_space_test-gsd-disk-space-test.Tpo -c -o gsd_disk_space_test-gsd-disk-space-test.obj `if test -f 'gsd-disk-space-test.c'; then $(CYGPATH_W) 'gsd-disk-space-test.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space-test.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_disk_space_test-gsd-disk-space-test.Tpo $(DEPDIR)/gsd_disk_space_test-gsd-disk-space-test.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-disk-space-test.c' object='gsd_disk_space_test-gsd-disk-space-test.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-disk-space-test.c' object='gsd_disk_space_test-gsd-disk-space-test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space-test.obj `if test -f 'gsd-disk-space-test.c'; then $(CYGPATH_W) 'gsd-disk-space-test.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space-test.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space-test.obj `if test -f 'gsd-disk-space-test.c'; then $(CYGPATH_W) 'gsd-disk-space-test.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space-test.c'; fi` gsd_disk_space_test-gsd-disk-space.o: gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -MT gsd_disk_space_test-gsd-disk-space.o -MD -MP -MF $(DEPDIR)/gsd_disk_space_test-gsd-disk-space.Tpo -c -o gsd_disk_space_test-gsd-disk-space.o `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_disk_space_test-gsd-disk-space.Tpo $(DEPDIR)/gsd_disk_space_test-gsd-disk-space.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-disk-space.c' object='gsd_disk_space_test-gsd-disk-space.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-disk-space.c' object='gsd_disk_space_test-gsd-disk-space.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space.o `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space.o `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c gsd_disk_space_test-gsd-disk-space.obj: gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -MT gsd_disk_space_test-gsd-disk-space.obj -MD -MP -MF $(DEPDIR)/gsd_disk_space_test-gsd-disk-space.Tpo -c -o gsd_disk_space_test-gsd-disk-space.obj `if test -f 'gsd-disk-space.c'; then $(CYGPATH_W) 'gsd-disk-space.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_disk_space_test-gsd-disk-space.Tpo $(DEPDIR)/gsd_disk_space_test-gsd-disk-space.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-disk-space.c' object='gsd_disk_space_test-gsd-disk-space.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-disk-space.c' object='gsd_disk_space_test-gsd-disk-space.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space.obj `if test -f 'gsd-disk-space.c'; then $(CYGPATH_W) 'gsd-disk-space.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-disk-space.obj `if test -f 'gsd-disk-space.c'; then $(CYGPATH_W) 'gsd-disk-space.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space.c'; fi` gsd_disk_space_test-gsd-ldsm-dialog.o: gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -MT gsd_disk_space_test-gsd-ldsm-dialog.o -MD -MP -MF $(DEPDIR)/gsd_disk_space_test-gsd-ldsm-dialog.Tpo -c -o gsd_disk_space_test-gsd-ldsm-dialog.o `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_disk_space_test-gsd-ldsm-dialog.Tpo $(DEPDIR)/gsd_disk_space_test-gsd-ldsm-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-ldsm-dialog.c' object='gsd_disk_space_test-gsd-ldsm-dialog.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-ldsm-dialog.c' object='gsd_disk_space_test-gsd-ldsm-dialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-ldsm-dialog.o `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-ldsm-dialog.o `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c gsd_disk_space_test-gsd-ldsm-dialog.obj: gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -MT gsd_disk_space_test-gsd-ldsm-dialog.obj -MD -MP -MF $(DEPDIR)/gsd_disk_space_test-gsd-ldsm-dialog.Tpo -c -o gsd_disk_space_test-gsd-ldsm-dialog.obj `if test -f 'gsd-ldsm-dialog.c'; then $(CYGPATH_W) 'gsd-ldsm-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-ldsm-dialog.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_disk_space_test-gsd-ldsm-dialog.Tpo $(DEPDIR)/gsd_disk_space_test-gsd-ldsm-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-ldsm-dialog.c' object='gsd_disk_space_test-gsd-ldsm-dialog.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-ldsm-dialog.c' object='gsd_disk_space_test-gsd-ldsm-dialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-ldsm-dialog.obj `if test -f 'gsd-ldsm-dialog.c'; then $(CYGPATH_W) 'gsd-ldsm-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-ldsm-dialog.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_disk_space_test_CFLAGS) $(CFLAGS) -c -o gsd_disk_space_test-gsd-ldsm-dialog.obj `if test -f 'gsd-ldsm-dialog.c'; then $(CYGPATH_W) 'gsd-ldsm-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-ldsm-dialog.c'; fi` gsd_empty_trash_test-gsd-empty-trash-test.o: gsd-empty-trash-test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -MT gsd_empty_trash_test-gsd-empty-trash-test.o -MD -MP -MF $(DEPDIR)/gsd_empty_trash_test-gsd-empty-trash-test.Tpo -c -o gsd_empty_trash_test-gsd-empty-trash-test.o `test -f 'gsd-empty-trash-test.c' || echo '$(srcdir)/'`gsd-empty-trash-test.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_empty_trash_test-gsd-empty-trash-test.Tpo $(DEPDIR)/gsd_empty_trash_test-gsd-empty-trash-test.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-empty-trash-test.c' object='gsd_empty_trash_test-gsd-empty-trash-test.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-empty-trash-test.c' object='gsd_empty_trash_test-gsd-empty-trash-test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-empty-trash-test.o `test -f 'gsd-empty-trash-test.c' || echo '$(srcdir)/'`gsd-empty-trash-test.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-empty-trash-test.o `test -f 'gsd-empty-trash-test.c' || echo '$(srcdir)/'`gsd-empty-trash-test.c gsd_empty_trash_test-gsd-empty-trash-test.obj: gsd-empty-trash-test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -MT gsd_empty_trash_test-gsd-empty-trash-test.obj -MD -MP -MF $(DEPDIR)/gsd_empty_trash_test-gsd-empty-trash-test.Tpo -c -o gsd_empty_trash_test-gsd-empty-trash-test.obj `if test -f 'gsd-empty-trash-test.c'; then $(CYGPATH_W) 'gsd-empty-trash-test.c'; else $(CYGPATH_W) '$(srcdir)/gsd-empty-trash-test.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_empty_trash_test-gsd-empty-trash-test.Tpo $(DEPDIR)/gsd_empty_trash_test-gsd-empty-trash-test.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-empty-trash-test.c' object='gsd_empty_trash_test-gsd-empty-trash-test.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-empty-trash-test.c' object='gsd_empty_trash_test-gsd-empty-trash-test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-empty-trash-test.obj `if test -f 'gsd-empty-trash-test.c'; then $(CYGPATH_W) 'gsd-empty-trash-test.c'; else $(CYGPATH_W) '$(srcdir)/gsd-empty-trash-test.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-empty-trash-test.obj `if test -f 'gsd-empty-trash-test.c'; then $(CYGPATH_W) 'gsd-empty-trash-test.c'; else $(CYGPATH_W) '$(srcdir)/gsd-empty-trash-test.c'; fi` gsd_empty_trash_test-gsd-disk-space.o: gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -MT gsd_empty_trash_test-gsd-disk-space.o -MD -MP -MF $(DEPDIR)/gsd_empty_trash_test-gsd-disk-space.Tpo -c -o gsd_empty_trash_test-gsd-disk-space.o `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_empty_trash_test-gsd-disk-space.Tpo $(DEPDIR)/gsd_empty_trash_test-gsd-disk-space.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-disk-space.c' object='gsd_empty_trash_test-gsd-disk-space.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-disk-space.c' object='gsd_empty_trash_test-gsd-disk-space.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-disk-space.o `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-disk-space.o `test -f 'gsd-disk-space.c' || echo '$(srcdir)/'`gsd-disk-space.c gsd_empty_trash_test-gsd-disk-space.obj: gsd-disk-space.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -MT gsd_empty_trash_test-gsd-disk-space.obj -MD -MP -MF $(DEPDIR)/gsd_empty_trash_test-gsd-disk-space.Tpo -c -o gsd_empty_trash_test-gsd-disk-space.obj `if test -f 'gsd-disk-space.c'; then $(CYGPATH_W) 'gsd-disk-space.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_empty_trash_test-gsd-disk-space.Tpo $(DEPDIR)/gsd_empty_trash_test-gsd-disk-space.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-disk-space.c' object='gsd_empty_trash_test-gsd-disk-space.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-disk-space.c' object='gsd_empty_trash_test-gsd-disk-space.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-disk-space.obj `if test -f 'gsd-disk-space.c'; then $(CYGPATH_W) 'gsd-disk-space.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-disk-space.obj `if test -f 'gsd-disk-space.c'; then $(CYGPATH_W) 'gsd-disk-space.c'; else $(CYGPATH_W) '$(srcdir)/gsd-disk-space.c'; fi` gsd_empty_trash_test-gsd-ldsm-dialog.o: gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -MT gsd_empty_trash_test-gsd-ldsm-dialog.o -MD -MP -MF $(DEPDIR)/gsd_empty_trash_test-gsd-ldsm-dialog.Tpo -c -o gsd_empty_trash_test-gsd-ldsm-dialog.o `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_empty_trash_test-gsd-ldsm-dialog.Tpo $(DEPDIR)/gsd_empty_trash_test-gsd-ldsm-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-ldsm-dialog.c' object='gsd_empty_trash_test-gsd-ldsm-dialog.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-ldsm-dialog.c' object='gsd_empty_trash_test-gsd-ldsm-dialog.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-ldsm-dialog.o `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-ldsm-dialog.o `test -f 'gsd-ldsm-dialog.c' || echo '$(srcdir)/'`gsd-ldsm-dialog.c gsd_empty_trash_test-gsd-ldsm-dialog.obj: gsd-ldsm-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -MT gsd_empty_trash_test-gsd-ldsm-dialog.obj -MD -MP -MF $(DEPDIR)/gsd_empty_trash_test-gsd-ldsm-dialog.Tpo -c -o gsd_empty_trash_test-gsd-ldsm-dialog.obj `if test -f 'gsd-ldsm-dialog.c'; then $(CYGPATH_W) 'gsd-ldsm-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-ldsm-dialog.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_empty_trash_test-gsd-ldsm-dialog.Tpo $(DEPDIR)/gsd_empty_trash_test-gsd-ldsm-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-ldsm-dialog.c' object='gsd_empty_trash_test-gsd-ldsm-dialog.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-ldsm-dialog.c' object='gsd_empty_trash_test-gsd-ldsm-dialog.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-ldsm-dialog.obj `if test -f 'gsd-ldsm-dialog.c'; then $(CYGPATH_W) 'gsd-ldsm-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-ldsm-dialog.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_empty_trash_test_CFLAGS) $(CFLAGS) -c -o gsd_empty_trash_test-gsd-ldsm-dialog.obj `if test -f 'gsd-ldsm-dialog.c'; then $(CYGPATH_W) 'gsd-ldsm-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gsd-ldsm-dialog.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -675,7 +682,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -776,15 +785,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/keyboard/Makefile.in gnome-settings-daemon-3.4.1/plugins/keyboard/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/keyboard/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/keyboard/Makefile.in 2012-04-16 12:37:18.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(iconsdir)" \ "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) @@ -85,8 +79,8 @@ libkeyboard_la-gsd-keyboard-xkb.lo \ libkeyboard_la-delayed-dialog.lo $(am__objects_1) libkeyboard_la_OBJECTS = $(am_libkeyboard_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libkeyboard_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -102,21 +96,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libkeyboard_la_SOURCES) DIST_SOURCES = $(libkeyboard_la_SOURCES) @@ -202,10 +196,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -313,8 +303,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -467,7 +455,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libkeyboard.la: $(libkeyboard_la_OBJECTS) $(libkeyboard_la_DEPENDENCIES) $(EXTRA_libkeyboard_la_DEPENDENCIES) +libkeyboard.la: $(libkeyboard_la_OBJECTS) $(libkeyboard_la_DEPENDENCIES) $(AM_V_CCLD)$(libkeyboard_la_LINK) -rpath $(plugindir) $(libkeyboard_la_OBJECTS) $(libkeyboard_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -484,51 +472,58 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libkeyboard_la-gsd-keyboard-plugin.lo: gsd-keyboard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -MT libkeyboard_la-gsd-keyboard-plugin.lo -MD -MP -MF $(DEPDIR)/libkeyboard_la-gsd-keyboard-plugin.Tpo -c -o libkeyboard_la-gsd-keyboard-plugin.lo `test -f 'gsd-keyboard-plugin.c' || echo '$(srcdir)/'`gsd-keyboard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libkeyboard_la-gsd-keyboard-plugin.Tpo $(DEPDIR)/libkeyboard_la-gsd-keyboard-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-keyboard-plugin.c' object='libkeyboard_la-gsd-keyboard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-keyboard-plugin.c' object='libkeyboard_la-gsd-keyboard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-gsd-keyboard-plugin.lo `test -f 'gsd-keyboard-plugin.c' || echo '$(srcdir)/'`gsd-keyboard-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-gsd-keyboard-plugin.lo `test -f 'gsd-keyboard-plugin.c' || echo '$(srcdir)/'`gsd-keyboard-plugin.c libkeyboard_la-gsd-keyboard-manager.lo: gsd-keyboard-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -MT libkeyboard_la-gsd-keyboard-manager.lo -MD -MP -MF $(DEPDIR)/libkeyboard_la-gsd-keyboard-manager.Tpo -c -o libkeyboard_la-gsd-keyboard-manager.lo `test -f 'gsd-keyboard-manager.c' || echo '$(srcdir)/'`gsd-keyboard-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libkeyboard_la-gsd-keyboard-manager.Tpo $(DEPDIR)/libkeyboard_la-gsd-keyboard-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-keyboard-manager.c' object='libkeyboard_la-gsd-keyboard-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-keyboard-manager.c' object='libkeyboard_la-gsd-keyboard-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-gsd-keyboard-manager.lo `test -f 'gsd-keyboard-manager.c' || echo '$(srcdir)/'`gsd-keyboard-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-gsd-keyboard-manager.lo `test -f 'gsd-keyboard-manager.c' || echo '$(srcdir)/'`gsd-keyboard-manager.c libkeyboard_la-gsd-keyboard-xkb.lo: gsd-keyboard-xkb.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -MT libkeyboard_la-gsd-keyboard-xkb.lo -MD -MP -MF $(DEPDIR)/libkeyboard_la-gsd-keyboard-xkb.Tpo -c -o libkeyboard_la-gsd-keyboard-xkb.lo `test -f 'gsd-keyboard-xkb.c' || echo '$(srcdir)/'`gsd-keyboard-xkb.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libkeyboard_la-gsd-keyboard-xkb.Tpo $(DEPDIR)/libkeyboard_la-gsd-keyboard-xkb.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-keyboard-xkb.c' object='libkeyboard_la-gsd-keyboard-xkb.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-keyboard-xkb.c' object='libkeyboard_la-gsd-keyboard-xkb.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-gsd-keyboard-xkb.lo `test -f 'gsd-keyboard-xkb.c' || echo '$(srcdir)/'`gsd-keyboard-xkb.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-gsd-keyboard-xkb.lo `test -f 'gsd-keyboard-xkb.c' || echo '$(srcdir)/'`gsd-keyboard-xkb.c libkeyboard_la-delayed-dialog.lo: delayed-dialog.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -MT libkeyboard_la-delayed-dialog.lo -MD -MP -MF $(DEPDIR)/libkeyboard_la-delayed-dialog.Tpo -c -o libkeyboard_la-delayed-dialog.lo `test -f 'delayed-dialog.c' || echo '$(srcdir)/'`delayed-dialog.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libkeyboard_la-delayed-dialog.Tpo $(DEPDIR)/libkeyboard_la-delayed-dialog.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='delayed-dialog.c' object='libkeyboard_la-delayed-dialog.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='delayed-dialog.c' object='libkeyboard_la-delayed-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-delayed-dialog.lo `test -f 'delayed-dialog.c' || echo '$(srcdir)/'`delayed-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkeyboard_la_CPPFLAGS) $(CPPFLAGS) $(libkeyboard_la_CFLAGS) $(CFLAGS) -c -o libkeyboard_la-delayed-dialog.lo `test -f 'delayed-dialog.c' || echo '$(srcdir)/'`delayed-dialog.c mostlyclean-libtool: -rm -f *.lo @@ -552,7 +547,9 @@ @$(NORMAL_UNINSTALL) @list='$(icons_DATA)'; test -n "$(iconsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(iconsdir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(iconsdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(iconsdir)" && rm -f $$files install-pluginDATA: $(plugin_DATA) @$(NORMAL_INSTALL) test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)" @@ -570,7 +567,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -671,15 +670,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/Makefile.in gnome-settings-daemon-3.4.1/plugins/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/Makefile.in 2012-03-26 16:16:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/Makefile.in 2012-04-16 12:37:16.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -52,11 +52,11 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ SOURCES = DIST_SOURCES = @@ -178,10 +178,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -289,8 +285,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -569,15 +563,10 @@ installcheck: installcheck-recursive install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/media-keys/cut-n-paste/Makefile.in gnome-settings-daemon-3.4.1/plugins/media-keys/cut-n-paste/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/media-keys/cut-n-paste/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/media-keys/cut-n-paste/Makefile.in 2012-04-16 12:37:18.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -54,8 +54,8 @@ gvc-mixer-sink-input.lo gvc-mixer-source-output.lo \ gvc-mixer-event-role.lo gvc-mixer-control.lo $(am__objects_1) libgvc_la_OBJECTS = $(am_libgvc_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp @@ -67,21 +67,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libgvc_la_SOURCES) DIST_SOURCES = $(libgvc_la_SOURCES) @@ -166,10 +166,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -277,8 +273,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -383,7 +377,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libgvc.la: $(libgvc_la_OBJECTS) $(libgvc_la_DEPENDENCIES) $(EXTRA_libgvc_la_DEPENDENCIES) +libgvc.la: $(libgvc_la_OBJECTS) $(libgvc_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libgvc_la_OBJECTS) $(libgvc_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -405,23 +399,26 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -525,15 +522,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/media-keys/Makefile.in gnome-settings-daemon-3.4.1/plugins/media-keys/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/media-keys/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/media-keys/Makefile.in 2012-04-16 12:37:18.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -70,12 +70,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -92,8 +86,8 @@ libmedia_keys_la-gsd-osd-window.lo $(am__objects_2) \ $(am__objects_1) libmedia_keys_la_OBJECTS = $(am_libmedia_keys_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libmedia_keys_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -141,21 +135,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libmedia_keys_la_SOURCES) $(test_media_keys_SOURCES) \ $(test_media_window_SOURCES) @@ -281,10 +275,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -392,8 +382,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -612,7 +600,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libmedia-keys.la: $(libmedia_keys_la_OBJECTS) $(libmedia_keys_la_DEPENDENCIES) $(EXTRA_libmedia_keys_la_DEPENDENCIES) +libmedia-keys.la: $(libmedia_keys_la_OBJECTS) $(libmedia_keys_la_DEPENDENCIES) $(AM_V_CCLD)$(libmedia_keys_la_LINK) -rpath $(plugindir) $(libmedia_keys_la_OBJECTS) $(libmedia_keys_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @@ -623,10 +611,10 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -test-media-keys$(EXEEXT): $(test_media_keys_OBJECTS) $(test_media_keys_DEPENDENCIES) $(EXTRA_test_media_keys_DEPENDENCIES) +test-media-keys$(EXEEXT): $(test_media_keys_OBJECTS) $(test_media_keys_DEPENDENCIES) @rm -f test-media-keys$(EXEEXT) $(AM_V_CCLD)$(test_media_keys_LINK) $(test_media_keys_OBJECTS) $(test_media_keys_LDADD) $(LIBS) -test-media-window$(EXEEXT): $(test_media_window_OBJECTS) $(test_media_window_DEPENDENCIES) $(EXTRA_test_media_window_DEPENDENCIES) +test-media-window$(EXEEXT): $(test_media_window_OBJECTS) $(test_media_window_DEPENDENCIES) @rm -f test-media-window$(EXEEXT) $(AM_V_CCLD)$(test_media_window_LINK) $(test_media_window_OBJECTS) $(test_media_window_LDADD) $(LIBS) @@ -653,170 +641,194 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libmedia_keys_la-gsd-media-keys-plugin.lo: gsd-media-keys-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -MT libmedia_keys_la-gsd-media-keys-plugin.lo -MD -MP -MF $(DEPDIR)/libmedia_keys_la-gsd-media-keys-plugin.Tpo -c -o libmedia_keys_la-gsd-media-keys-plugin.lo `test -f 'gsd-media-keys-plugin.c' || echo '$(srcdir)/'`gsd-media-keys-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmedia_keys_la-gsd-media-keys-plugin.Tpo $(DEPDIR)/libmedia_keys_la-gsd-media-keys-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-plugin.c' object='libmedia_keys_la-gsd-media-keys-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-plugin.c' object='libmedia_keys_la-gsd-media-keys-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-media-keys-plugin.lo `test -f 'gsd-media-keys-plugin.c' || echo '$(srcdir)/'`gsd-media-keys-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-media-keys-plugin.lo `test -f 'gsd-media-keys-plugin.c' || echo '$(srcdir)/'`gsd-media-keys-plugin.c libmedia_keys_la-gsd-media-keys-manager.lo: gsd-media-keys-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -MT libmedia_keys_la-gsd-media-keys-manager.lo -MD -MP -MF $(DEPDIR)/libmedia_keys_la-gsd-media-keys-manager.Tpo -c -o libmedia_keys_la-gsd-media-keys-manager.lo `test -f 'gsd-media-keys-manager.c' || echo '$(srcdir)/'`gsd-media-keys-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmedia_keys_la-gsd-media-keys-manager.Tpo $(DEPDIR)/libmedia_keys_la-gsd-media-keys-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-manager.c' object='libmedia_keys_la-gsd-media-keys-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-manager.c' object='libmedia_keys_la-gsd-media-keys-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-media-keys-manager.lo `test -f 'gsd-media-keys-manager.c' || echo '$(srcdir)/'`gsd-media-keys-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-media-keys-manager.lo `test -f 'gsd-media-keys-manager.c' || echo '$(srcdir)/'`gsd-media-keys-manager.c libmedia_keys_la-gsd-media-keys-window.lo: gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -MT libmedia_keys_la-gsd-media-keys-window.lo -MD -MP -MF $(DEPDIR)/libmedia_keys_la-gsd-media-keys-window.Tpo -c -o libmedia_keys_la-gsd-media-keys-window.lo `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmedia_keys_la-gsd-media-keys-window.Tpo $(DEPDIR)/libmedia_keys_la-gsd-media-keys-window.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-window.c' object='libmedia_keys_la-gsd-media-keys-window.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-window.c' object='libmedia_keys_la-gsd-media-keys-window.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-media-keys-window.lo `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-media-keys-window.lo `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c libmedia_keys_la-gsd-osd-window.lo: gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -MT libmedia_keys_la-gsd-osd-window.lo -MD -MP -MF $(DEPDIR)/libmedia_keys_la-gsd-osd-window.Tpo -c -o libmedia_keys_la-gsd-osd-window.lo `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmedia_keys_la-gsd-osd-window.Tpo $(DEPDIR)/libmedia_keys_la-gsd-osd-window.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-osd-window.c' object='libmedia_keys_la-gsd-osd-window.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-osd-window.c' object='libmedia_keys_la-gsd-osd-window.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-osd-window.lo `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-osd-window.lo `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c libmedia_keys_la-gsd-marshal.lo: gsd-marshal.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -MT libmedia_keys_la-gsd-marshal.lo -MD -MP -MF $(DEPDIR)/libmedia_keys_la-gsd-marshal.Tpo -c -o libmedia_keys_la-gsd-marshal.lo `test -f 'gsd-marshal.c' || echo '$(srcdir)/'`gsd-marshal.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmedia_keys_la-gsd-marshal.Tpo $(DEPDIR)/libmedia_keys_la-gsd-marshal.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-marshal.c' object='libmedia_keys_la-gsd-marshal.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-marshal.c' object='libmedia_keys_la-gsd-marshal.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-marshal.lo `test -f 'gsd-marshal.c' || echo '$(srcdir)/'`gsd-marshal.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmedia_keys_la_CPPFLAGS) $(CPPFLAGS) $(libmedia_keys_la_CFLAGS) $(CFLAGS) -c -o libmedia_keys_la-gsd-marshal.lo `test -f 'gsd-marshal.c' || echo '$(srcdir)/'`gsd-marshal.c test_media_keys-gsd-media-keys-manager.o: gsd-media-keys-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-media-keys-manager.o -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-media-keys-manager.Tpo -c -o test_media_keys-gsd-media-keys-manager.o `test -f 'gsd-media-keys-manager.c' || echo '$(srcdir)/'`gsd-media-keys-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-media-keys-manager.Tpo $(DEPDIR)/test_media_keys-gsd-media-keys-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-manager.c' object='test_media_keys-gsd-media-keys-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-manager.c' object='test_media_keys-gsd-media-keys-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-manager.o `test -f 'gsd-media-keys-manager.c' || echo '$(srcdir)/'`gsd-media-keys-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-manager.o `test -f 'gsd-media-keys-manager.c' || echo '$(srcdir)/'`gsd-media-keys-manager.c test_media_keys-gsd-media-keys-manager.obj: gsd-media-keys-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-media-keys-manager.obj -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-media-keys-manager.Tpo -c -o test_media_keys-gsd-media-keys-manager.obj `if test -f 'gsd-media-keys-manager.c'; then $(CYGPATH_W) 'gsd-media-keys-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-media-keys-manager.Tpo $(DEPDIR)/test_media_keys-gsd-media-keys-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-manager.c' object='test_media_keys-gsd-media-keys-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-manager.c' object='test_media_keys-gsd-media-keys-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-manager.obj `if test -f 'gsd-media-keys-manager.c'; then $(CYGPATH_W) 'gsd-media-keys-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-manager.obj `if test -f 'gsd-media-keys-manager.c'; then $(CYGPATH_W) 'gsd-media-keys-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-manager.c'; fi` test_media_keys-gsd-media-keys-window.o: gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-media-keys-window.o -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-media-keys-window.Tpo -c -o test_media_keys-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-media-keys-window.Tpo $(DEPDIR)/test_media_keys-gsd-media-keys-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-window.c' object='test_media_keys-gsd-media-keys-window.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-window.c' object='test_media_keys-gsd-media-keys-window.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c test_media_keys-gsd-media-keys-window.obj: gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-media-keys-window.obj -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-media-keys-window.Tpo -c -o test_media_keys-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-media-keys-window.Tpo $(DEPDIR)/test_media_keys-gsd-media-keys-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-window.c' object='test_media_keys-gsd-media-keys-window.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-window.c' object='test_media_keys-gsd-media-keys-window.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi` test_media_keys-gsd-osd-window.o: gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-osd-window.o -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-osd-window.Tpo -c -o test_media_keys-gsd-osd-window.o `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-osd-window.Tpo $(DEPDIR)/test_media_keys-gsd-osd-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-osd-window.c' object='test_media_keys-gsd-osd-window.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-osd-window.c' object='test_media_keys-gsd-osd-window.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-osd-window.o `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-osd-window.o `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c test_media_keys-gsd-osd-window.obj: gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-osd-window.obj -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-osd-window.Tpo -c -o test_media_keys-gsd-osd-window.obj `if test -f 'gsd-osd-window.c'; then $(CYGPATH_W) 'gsd-osd-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-osd-window.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-osd-window.Tpo $(DEPDIR)/test_media_keys-gsd-osd-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-osd-window.c' object='test_media_keys-gsd-osd-window.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-osd-window.c' object='test_media_keys-gsd-osd-window.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-osd-window.obj `if test -f 'gsd-osd-window.c'; then $(CYGPATH_W) 'gsd-osd-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-osd-window.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-osd-window.obj `if test -f 'gsd-osd-window.c'; then $(CYGPATH_W) 'gsd-osd-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-osd-window.c'; fi` test_media_keys-test-media-keys.o: test-media-keys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-test-media-keys.o -MD -MP -MF $(DEPDIR)/test_media_keys-test-media-keys.Tpo -c -o test_media_keys-test-media-keys.o `test -f 'test-media-keys.c' || echo '$(srcdir)/'`test-media-keys.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-test-media-keys.Tpo $(DEPDIR)/test_media_keys-test-media-keys.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-media-keys.c' object='test_media_keys-test-media-keys.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-media-keys.c' object='test_media_keys-test-media-keys.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-test-media-keys.o `test -f 'test-media-keys.c' || echo '$(srcdir)/'`test-media-keys.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-test-media-keys.o `test -f 'test-media-keys.c' || echo '$(srcdir)/'`test-media-keys.c test_media_keys-test-media-keys.obj: test-media-keys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-test-media-keys.obj -MD -MP -MF $(DEPDIR)/test_media_keys-test-media-keys.Tpo -c -o test_media_keys-test-media-keys.obj `if test -f 'test-media-keys.c'; then $(CYGPATH_W) 'test-media-keys.c'; else $(CYGPATH_W) '$(srcdir)/test-media-keys.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-test-media-keys.Tpo $(DEPDIR)/test_media_keys-test-media-keys.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-media-keys.c' object='test_media_keys-test-media-keys.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-media-keys.c' object='test_media_keys-test-media-keys.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-test-media-keys.obj `if test -f 'test-media-keys.c'; then $(CYGPATH_W) 'test-media-keys.c'; else $(CYGPATH_W) '$(srcdir)/test-media-keys.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-test-media-keys.obj `if test -f 'test-media-keys.c'; then $(CYGPATH_W) 'test-media-keys.c'; else $(CYGPATH_W) '$(srcdir)/test-media-keys.c'; fi` test_media_keys-gsd-marshal.o: gsd-marshal.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-marshal.o -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-marshal.Tpo -c -o test_media_keys-gsd-marshal.o `test -f 'gsd-marshal.c' || echo '$(srcdir)/'`gsd-marshal.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-marshal.Tpo $(DEPDIR)/test_media_keys-gsd-marshal.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-marshal.c' object='test_media_keys-gsd-marshal.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-marshal.c' object='test_media_keys-gsd-marshal.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-marshal.o `test -f 'gsd-marshal.c' || echo '$(srcdir)/'`gsd-marshal.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-marshal.o `test -f 'gsd-marshal.c' || echo '$(srcdir)/'`gsd-marshal.c test_media_keys-gsd-marshal.obj: gsd-marshal.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -MT test_media_keys-gsd-marshal.obj -MD -MP -MF $(DEPDIR)/test_media_keys-gsd-marshal.Tpo -c -o test_media_keys-gsd-marshal.obj `if test -f 'gsd-marshal.c'; then $(CYGPATH_W) 'gsd-marshal.c'; else $(CYGPATH_W) '$(srcdir)/gsd-marshal.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_keys-gsd-marshal.Tpo $(DEPDIR)/test_media_keys-gsd-marshal.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-marshal.c' object='test_media_keys-gsd-marshal.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-marshal.c' object='test_media_keys-gsd-marshal.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-marshal.obj `if test -f 'gsd-marshal.c'; then $(CYGPATH_W) 'gsd-marshal.c'; else $(CYGPATH_W) '$(srcdir)/gsd-marshal.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_keys_CPPFLAGS) $(CPPFLAGS) $(test_media_keys_CFLAGS) $(CFLAGS) -c -o test_media_keys-gsd-marshal.obj `if test -f 'gsd-marshal.c'; then $(CYGPATH_W) 'gsd-marshal.c'; else $(CYGPATH_W) '$(srcdir)/gsd-marshal.c'; fi` test_media_window-gsd-osd-window.o: gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -MT test_media_window-gsd-osd-window.o -MD -MP -MF $(DEPDIR)/test_media_window-gsd-osd-window.Tpo -c -o test_media_window-gsd-osd-window.o `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_window-gsd-osd-window.Tpo $(DEPDIR)/test_media_window-gsd-osd-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-osd-window.c' object='test_media_window-gsd-osd-window.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-osd-window.c' object='test_media_window-gsd-osd-window.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-osd-window.o `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-osd-window.o `test -f 'gsd-osd-window.c' || echo '$(srcdir)/'`gsd-osd-window.c test_media_window-gsd-osd-window.obj: gsd-osd-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -MT test_media_window-gsd-osd-window.obj -MD -MP -MF $(DEPDIR)/test_media_window-gsd-osd-window.Tpo -c -o test_media_window-gsd-osd-window.obj `if test -f 'gsd-osd-window.c'; then $(CYGPATH_W) 'gsd-osd-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-osd-window.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_window-gsd-osd-window.Tpo $(DEPDIR)/test_media_window-gsd-osd-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-osd-window.c' object='test_media_window-gsd-osd-window.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-osd-window.c' object='test_media_window-gsd-osd-window.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-osd-window.obj `if test -f 'gsd-osd-window.c'; then $(CYGPATH_W) 'gsd-osd-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-osd-window.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-osd-window.obj `if test -f 'gsd-osd-window.c'; then $(CYGPATH_W) 'gsd-osd-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-osd-window.c'; fi` test_media_window-gsd-media-keys-window.o: gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -MT test_media_window-gsd-media-keys-window.o -MD -MP -MF $(DEPDIR)/test_media_window-gsd-media-keys-window.Tpo -c -o test_media_window-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_window-gsd-media-keys-window.Tpo $(DEPDIR)/test_media_window-gsd-media-keys-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-window.c' object='test_media_window-gsd-media-keys-window.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-window.c' object='test_media_window-gsd-media-keys-window.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c test_media_window-gsd-media-keys-window.obj: gsd-media-keys-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -MT test_media_window-gsd-media-keys-window.obj -MD -MP -MF $(DEPDIR)/test_media_window-gsd-media-keys-window.Tpo -c -o test_media_window-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_window-gsd-media-keys-window.Tpo $(DEPDIR)/test_media_window-gsd-media-keys-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-media-keys-window.c' object='test_media_window-gsd-media-keys-window.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-media-keys-window.c' object='test_media_window-gsd-media-keys-window.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi` test_media_window-test-media-window.o: test-media-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -MT test_media_window-test-media-window.o -MD -MP -MF $(DEPDIR)/test_media_window-test-media-window.Tpo -c -o test_media_window-test-media-window.o `test -f 'test-media-window.c' || echo '$(srcdir)/'`test-media-window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_window-test-media-window.Tpo $(DEPDIR)/test_media_window-test-media-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-media-window.c' object='test_media_window-test-media-window.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-media-window.c' object='test_media_window-test-media-window.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-test-media-window.o `test -f 'test-media-window.c' || echo '$(srcdir)/'`test-media-window.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-test-media-window.o `test -f 'test-media-window.c' || echo '$(srcdir)/'`test-media-window.c test_media_window-test-media-window.obj: test-media-window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -MT test_media_window-test-media-window.obj -MD -MP -MF $(DEPDIR)/test_media_window-test-media-window.Tpo -c -o test_media_window-test-media-window.obj `if test -f 'test-media-window.c'; then $(CYGPATH_W) 'test-media-window.c'; else $(CYGPATH_W) '$(srcdir)/test-media-window.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_media_window-test-media-window.Tpo $(DEPDIR)/test_media_window-test-media-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-media-window.c' object='test_media_window-test-media-window.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-media-window.c' object='test_media_window-test-media-window.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-test-media-window.obj `if test -f 'test-media-window.c'; then $(CYGPATH_W) 'test-media-window.c'; else $(CYGPATH_W) '$(srcdir)/test-media-window.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_media_window_CPPFLAGS) $(CPPFLAGS) $(test_media_window_CFLAGS) $(CFLAGS) -c -o test_media_window-test-media-window.obj `if test -f 'test-media-window.c'; then $(CYGPATH_W) 'test-media-window.c'; else $(CYGPATH_W) '$(srcdir)/test-media-window.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -840,7 +852,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -1055,15 +1069,10 @@ installcheck: installcheck-recursive install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/mouse/gsd-mouse-manager.c gnome-settings-daemon-3.4.1/plugins/mouse/gsd-mouse-manager.c --- gnome-settings-daemon-3.4.0/plugins/mouse/gsd-mouse-manager.c 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/mouse/gsd-mouse-manager.c 2012-04-12 09:54:14.000000000 +0000 @@ -1014,7 +1014,10 @@ GdkDevice *device, GsdMouseManager *manager) { - if (gdk_device_get_source (device) == GDK_SOURCE_MOUSE) { + GdkInputSource source; + + source = gdk_device_get_source (device); + if (source == GDK_SOURCE_MOUSE || source == GDK_SOURCE_TOUCHPAD) { if (run_custom_command (device, COMMAND_DEVICE_ADDED) == FALSE) { set_mouse_settings (manager, device); } else { @@ -1034,7 +1037,10 @@ GdkDevice *device, GsdMouseManager *manager) { - if (gdk_device_get_source (device) == GDK_SOURCE_MOUSE) { + GdkInputSource source; + + source = gdk_device_get_source (device); + if (source == GDK_SOURCE_MOUSE || source == GDK_SOURCE_TOUCHPAD) { int id; run_custom_command (device, COMMAND_DEVICE_REMOVED); diff -Nru gnome-settings-daemon-3.4.0/plugins/mouse/Makefile.in gnome-settings-daemon-3.4.1/plugins/mouse/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/mouse/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/mouse/Makefile.in 2012-04-16 12:37:18.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -69,12 +69,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(libexecdir)" \ "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) @@ -85,8 +79,8 @@ am_libmouse_la_OBJECTS = libmouse_la-gsd-mouse-plugin.lo \ libmouse_la-gsd-mouse-manager.lo libmouse_la_OBJECTS = $(am_libmouse_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libmouse_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libmouse_la_CFLAGS) \ @@ -112,21 +106,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libmouse_la_SOURCES) $(gsd_locate_pointer_SOURCES) DIST_SOURCES = $(libmouse_la_SOURCES) $(gsd_locate_pointer_SOURCES) @@ -212,10 +206,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -323,8 +313,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -461,7 +449,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libmouse.la: $(libmouse_la_OBJECTS) $(libmouse_la_DEPENDENCIES) $(EXTRA_libmouse_la_DEPENDENCIES) +libmouse.la: $(libmouse_la_OBJECTS) $(libmouse_la_DEPENDENCIES) $(AM_V_CCLD)$(libmouse_la_LINK) -rpath $(plugindir) $(libmouse_la_OBJECTS) $(libmouse_la_LIBADD) $(LIBS) install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @@ -506,7 +494,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gsd-locate-pointer$(EXEEXT): $(gsd_locate_pointer_OBJECTS) $(gsd_locate_pointer_DEPENDENCIES) $(EXTRA_gsd_locate_pointer_DEPENDENCIES) +gsd-locate-pointer$(EXEEXT): $(gsd_locate_pointer_OBJECTS) $(gsd_locate_pointer_DEPENDENCIES) @rm -f gsd-locate-pointer$(EXEEXT) $(AM_V_CCLD)$(gsd_locate_pointer_LINK) $(gsd_locate_pointer_OBJECTS) $(gsd_locate_pointer_LDADD) $(LIBS) @@ -524,65 +512,74 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libmouse_la-gsd-mouse-plugin.lo: gsd-mouse-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmouse_la_CPPFLAGS) $(CPPFLAGS) $(libmouse_la_CFLAGS) $(CFLAGS) -MT libmouse_la-gsd-mouse-plugin.lo -MD -MP -MF $(DEPDIR)/libmouse_la-gsd-mouse-plugin.Tpo -c -o libmouse_la-gsd-mouse-plugin.lo `test -f 'gsd-mouse-plugin.c' || echo '$(srcdir)/'`gsd-mouse-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmouse_la-gsd-mouse-plugin.Tpo $(DEPDIR)/libmouse_la-gsd-mouse-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-mouse-plugin.c' object='libmouse_la-gsd-mouse-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-mouse-plugin.c' object='libmouse_la-gsd-mouse-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmouse_la_CPPFLAGS) $(CPPFLAGS) $(libmouse_la_CFLAGS) $(CFLAGS) -c -o libmouse_la-gsd-mouse-plugin.lo `test -f 'gsd-mouse-plugin.c' || echo '$(srcdir)/'`gsd-mouse-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmouse_la_CPPFLAGS) $(CPPFLAGS) $(libmouse_la_CFLAGS) $(CFLAGS) -c -o libmouse_la-gsd-mouse-plugin.lo `test -f 'gsd-mouse-plugin.c' || echo '$(srcdir)/'`gsd-mouse-plugin.c libmouse_la-gsd-mouse-manager.lo: gsd-mouse-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmouse_la_CPPFLAGS) $(CPPFLAGS) $(libmouse_la_CFLAGS) $(CFLAGS) -MT libmouse_la-gsd-mouse-manager.lo -MD -MP -MF $(DEPDIR)/libmouse_la-gsd-mouse-manager.Tpo -c -o libmouse_la-gsd-mouse-manager.lo `test -f 'gsd-mouse-manager.c' || echo '$(srcdir)/'`gsd-mouse-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmouse_la-gsd-mouse-manager.Tpo $(DEPDIR)/libmouse_la-gsd-mouse-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-mouse-manager.c' object='libmouse_la-gsd-mouse-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-mouse-manager.c' object='libmouse_la-gsd-mouse-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmouse_la_CPPFLAGS) $(CPPFLAGS) $(libmouse_la_CFLAGS) $(CFLAGS) -c -o libmouse_la-gsd-mouse-manager.lo `test -f 'gsd-mouse-manager.c' || echo '$(srcdir)/'`gsd-mouse-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmouse_la_CPPFLAGS) $(CPPFLAGS) $(libmouse_la_CFLAGS) $(CFLAGS) -c -o libmouse_la-gsd-mouse-manager.lo `test -f 'gsd-mouse-manager.c' || echo '$(srcdir)/'`gsd-mouse-manager.c gsd_locate_pointer-gsd-locate-pointer.o: gsd-locate-pointer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -MT gsd_locate_pointer-gsd-locate-pointer.o -MD -MP -MF $(DEPDIR)/gsd_locate_pointer-gsd-locate-pointer.Tpo -c -o gsd_locate_pointer-gsd-locate-pointer.o `test -f 'gsd-locate-pointer.c' || echo '$(srcdir)/'`gsd-locate-pointer.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_locate_pointer-gsd-locate-pointer.Tpo $(DEPDIR)/gsd_locate_pointer-gsd-locate-pointer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-locate-pointer.c' object='gsd_locate_pointer-gsd-locate-pointer.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-locate-pointer.c' object='gsd_locate_pointer-gsd-locate-pointer.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-locate-pointer.o `test -f 'gsd-locate-pointer.c' || echo '$(srcdir)/'`gsd-locate-pointer.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-locate-pointer.o `test -f 'gsd-locate-pointer.c' || echo '$(srcdir)/'`gsd-locate-pointer.c gsd_locate_pointer-gsd-locate-pointer.obj: gsd-locate-pointer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -MT gsd_locate_pointer-gsd-locate-pointer.obj -MD -MP -MF $(DEPDIR)/gsd_locate_pointer-gsd-locate-pointer.Tpo -c -o gsd_locate_pointer-gsd-locate-pointer.obj `if test -f 'gsd-locate-pointer.c'; then $(CYGPATH_W) 'gsd-locate-pointer.c'; else $(CYGPATH_W) '$(srcdir)/gsd-locate-pointer.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_locate_pointer-gsd-locate-pointer.Tpo $(DEPDIR)/gsd_locate_pointer-gsd-locate-pointer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-locate-pointer.c' object='gsd_locate_pointer-gsd-locate-pointer.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-locate-pointer.c' object='gsd_locate_pointer-gsd-locate-pointer.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-locate-pointer.obj `if test -f 'gsd-locate-pointer.c'; then $(CYGPATH_W) 'gsd-locate-pointer.c'; else $(CYGPATH_W) '$(srcdir)/gsd-locate-pointer.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-locate-pointer.obj `if test -f 'gsd-locate-pointer.c'; then $(CYGPATH_W) 'gsd-locate-pointer.c'; else $(CYGPATH_W) '$(srcdir)/gsd-locate-pointer.c'; fi` gsd_locate_pointer-gsd-timeline.o: gsd-timeline.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -MT gsd_locate_pointer-gsd-timeline.o -MD -MP -MF $(DEPDIR)/gsd_locate_pointer-gsd-timeline.Tpo -c -o gsd_locate_pointer-gsd-timeline.o `test -f 'gsd-timeline.c' || echo '$(srcdir)/'`gsd-timeline.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_locate_pointer-gsd-timeline.Tpo $(DEPDIR)/gsd_locate_pointer-gsd-timeline.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-timeline.c' object='gsd_locate_pointer-gsd-timeline.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-timeline.c' object='gsd_locate_pointer-gsd-timeline.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-timeline.o `test -f 'gsd-timeline.c' || echo '$(srcdir)/'`gsd-timeline.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-timeline.o `test -f 'gsd-timeline.c' || echo '$(srcdir)/'`gsd-timeline.c gsd_locate_pointer-gsd-timeline.obj: gsd-timeline.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -MT gsd_locate_pointer-gsd-timeline.obj -MD -MP -MF $(DEPDIR)/gsd_locate_pointer-gsd-timeline.Tpo -c -o gsd_locate_pointer-gsd-timeline.obj `if test -f 'gsd-timeline.c'; then $(CYGPATH_W) 'gsd-timeline.c'; else $(CYGPATH_W) '$(srcdir)/gsd-timeline.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_locate_pointer-gsd-timeline.Tpo $(DEPDIR)/gsd_locate_pointer-gsd-timeline.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-timeline.c' object='gsd_locate_pointer-gsd-timeline.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-timeline.c' object='gsd_locate_pointer-gsd-timeline.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-timeline.obj `if test -f 'gsd-timeline.c'; then $(CYGPATH_W) 'gsd-timeline.c'; else $(CYGPATH_W) '$(srcdir)/gsd-timeline.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_locate_pointer_CFLAGS) $(CFLAGS) -c -o gsd_locate_pointer-gsd-timeline.obj `if test -f 'gsd-timeline.c'; then $(CYGPATH_W) 'gsd-timeline.c'; else $(CYGPATH_W) '$(srcdir)/gsd-timeline.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -606,7 +603,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -707,15 +706,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/orientation/Makefile.in gnome-settings-daemon-3.4.1/plugins/orientation/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/orientation/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/orientation/Makefile.in 2012-04-16 12:37:18.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -69,12 +69,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -85,8 +79,8 @@ liborientation_la-gsd-orientation-plugin.lo \ liborientation_la-gsd-orientation-manager.lo liborientation_la_OBJECTS = $(am_liborientation_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent liborientation_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -115,21 +109,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(liborientation_la_SOURCES) $(test_orientation_SOURCES) DIST_SOURCES = $(liborientation_la_SOURCES) \ @@ -216,10 +210,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -327,8 +317,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -471,7 +459,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -liborientation.la: $(liborientation_la_OBJECTS) $(liborientation_la_DEPENDENCIES) $(EXTRA_liborientation_la_DEPENDENCIES) +liborientation.la: $(liborientation_la_OBJECTS) $(liborientation_la_DEPENDENCIES) $(AM_V_CCLD)$(liborientation_la_LINK) -rpath $(plugindir) $(liborientation_la_OBJECTS) $(liborientation_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @@ -482,7 +470,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -test-orientation$(EXEEXT): $(test_orientation_OBJECTS) $(test_orientation_DEPENDENCIES) $(EXTRA_test_orientation_DEPENDENCIES) +test-orientation$(EXEEXT): $(test_orientation_OBJECTS) $(test_orientation_DEPENDENCIES) @rm -f test-orientation$(EXEEXT) $(AM_V_CCLD)$(test_orientation_LINK) $(test_orientation_OBJECTS) $(test_orientation_LDADD) $(LIBS) @@ -500,65 +488,74 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< liborientation_la-gsd-orientation-plugin.lo: gsd-orientation-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liborientation_la_CPPFLAGS) $(CPPFLAGS) $(liborientation_la_CFLAGS) $(CFLAGS) -MT liborientation_la-gsd-orientation-plugin.lo -MD -MP -MF $(DEPDIR)/liborientation_la-gsd-orientation-plugin.Tpo -c -o liborientation_la-gsd-orientation-plugin.lo `test -f 'gsd-orientation-plugin.c' || echo '$(srcdir)/'`gsd-orientation-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/liborientation_la-gsd-orientation-plugin.Tpo $(DEPDIR)/liborientation_la-gsd-orientation-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-orientation-plugin.c' object='liborientation_la-gsd-orientation-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-orientation-plugin.c' object='liborientation_la-gsd-orientation-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liborientation_la_CPPFLAGS) $(CPPFLAGS) $(liborientation_la_CFLAGS) $(CFLAGS) -c -o liborientation_la-gsd-orientation-plugin.lo `test -f 'gsd-orientation-plugin.c' || echo '$(srcdir)/'`gsd-orientation-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liborientation_la_CPPFLAGS) $(CPPFLAGS) $(liborientation_la_CFLAGS) $(CFLAGS) -c -o liborientation_la-gsd-orientation-plugin.lo `test -f 'gsd-orientation-plugin.c' || echo '$(srcdir)/'`gsd-orientation-plugin.c liborientation_la-gsd-orientation-manager.lo: gsd-orientation-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liborientation_la_CPPFLAGS) $(CPPFLAGS) $(liborientation_la_CFLAGS) $(CFLAGS) -MT liborientation_la-gsd-orientation-manager.lo -MD -MP -MF $(DEPDIR)/liborientation_la-gsd-orientation-manager.Tpo -c -o liborientation_la-gsd-orientation-manager.lo `test -f 'gsd-orientation-manager.c' || echo '$(srcdir)/'`gsd-orientation-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/liborientation_la-gsd-orientation-manager.Tpo $(DEPDIR)/liborientation_la-gsd-orientation-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-orientation-manager.c' object='liborientation_la-gsd-orientation-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-orientation-manager.c' object='liborientation_la-gsd-orientation-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liborientation_la_CPPFLAGS) $(CPPFLAGS) $(liborientation_la_CFLAGS) $(CFLAGS) -c -o liborientation_la-gsd-orientation-manager.lo `test -f 'gsd-orientation-manager.c' || echo '$(srcdir)/'`gsd-orientation-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liborientation_la_CPPFLAGS) $(CPPFLAGS) $(liborientation_la_CFLAGS) $(CFLAGS) -c -o liborientation_la-gsd-orientation-manager.lo `test -f 'gsd-orientation-manager.c' || echo '$(srcdir)/'`gsd-orientation-manager.c test_orientation-gsd-orientation-manager.o: gsd-orientation-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -MT test_orientation-gsd-orientation-manager.o -MD -MP -MF $(DEPDIR)/test_orientation-gsd-orientation-manager.Tpo -c -o test_orientation-gsd-orientation-manager.o `test -f 'gsd-orientation-manager.c' || echo '$(srcdir)/'`gsd-orientation-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_orientation-gsd-orientation-manager.Tpo $(DEPDIR)/test_orientation-gsd-orientation-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-orientation-manager.c' object='test_orientation-gsd-orientation-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-orientation-manager.c' object='test_orientation-gsd-orientation-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-gsd-orientation-manager.o `test -f 'gsd-orientation-manager.c' || echo '$(srcdir)/'`gsd-orientation-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-gsd-orientation-manager.o `test -f 'gsd-orientation-manager.c' || echo '$(srcdir)/'`gsd-orientation-manager.c test_orientation-gsd-orientation-manager.obj: gsd-orientation-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -MT test_orientation-gsd-orientation-manager.obj -MD -MP -MF $(DEPDIR)/test_orientation-gsd-orientation-manager.Tpo -c -o test_orientation-gsd-orientation-manager.obj `if test -f 'gsd-orientation-manager.c'; then $(CYGPATH_W) 'gsd-orientation-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-orientation-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_orientation-gsd-orientation-manager.Tpo $(DEPDIR)/test_orientation-gsd-orientation-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-orientation-manager.c' object='test_orientation-gsd-orientation-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-orientation-manager.c' object='test_orientation-gsd-orientation-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-gsd-orientation-manager.obj `if test -f 'gsd-orientation-manager.c'; then $(CYGPATH_W) 'gsd-orientation-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-orientation-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-gsd-orientation-manager.obj `if test -f 'gsd-orientation-manager.c'; then $(CYGPATH_W) 'gsd-orientation-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-orientation-manager.c'; fi` test_orientation-test-orientation.o: test-orientation.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -MT test_orientation-test-orientation.o -MD -MP -MF $(DEPDIR)/test_orientation-test-orientation.Tpo -c -o test_orientation-test-orientation.o `test -f 'test-orientation.c' || echo '$(srcdir)/'`test-orientation.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_orientation-test-orientation.Tpo $(DEPDIR)/test_orientation-test-orientation.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-orientation.c' object='test_orientation-test-orientation.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-orientation.c' object='test_orientation-test-orientation.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-test-orientation.o `test -f 'test-orientation.c' || echo '$(srcdir)/'`test-orientation.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-test-orientation.o `test -f 'test-orientation.c' || echo '$(srcdir)/'`test-orientation.c test_orientation-test-orientation.obj: test-orientation.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -MT test_orientation-test-orientation.obj -MD -MP -MF $(DEPDIR)/test_orientation-test-orientation.Tpo -c -o test_orientation-test-orientation.obj `if test -f 'test-orientation.c'; then $(CYGPATH_W) 'test-orientation.c'; else $(CYGPATH_W) '$(srcdir)/test-orientation.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_orientation-test-orientation.Tpo $(DEPDIR)/test_orientation-test-orientation.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-orientation.c' object='test_orientation-test-orientation.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-orientation.c' object='test_orientation-test-orientation.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-test-orientation.obj `if test -f 'test-orientation.c'; then $(CYGPATH_W) 'test-orientation.c'; else $(CYGPATH_W) '$(srcdir)/test-orientation.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_orientation_CFLAGS) $(CFLAGS) -c -o test_orientation-test-orientation.obj `if test -f 'test-orientation.c'; then $(CYGPATH_W) 'test-orientation.c'; else $(CYGPATH_W) '$(srcdir)/test-orientation.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -582,7 +579,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -683,15 +682,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/power/gsd-power-manager.c gnome-settings-daemon-3.4.1/plugins/power/gsd-power-manager.c --- gnome-settings-daemon-3.4.0/plugins/power/gsd-power-manager.c 2012-03-26 09:11:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/power/gsd-power-manager.c 2012-04-12 09:54:14.000000000 +0000 @@ -3837,6 +3837,8 @@ manager->priv->timeout_sleep_id = 0; } + g_signal_handlers_disconnect_by_data (manager->priv->up_client, manager); + g_object_unref (manager->priv->session); g_object_unref (manager->priv->settings); g_object_unref (manager->priv->settings_screensaver); diff -Nru gnome-settings-daemon-3.4.0/plugins/power/Makefile.in gnome-settings-daemon-3.4.1/plugins/power/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/power/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/power/Makefile.in 2012-04-16 12:37:18.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -72,12 +72,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(libexecdir)" \ "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(polkit_policydir)" LTLIBRARIES = $(plugin_LTLIBRARIES) @@ -92,8 +86,8 @@ libpower_la-gsd-power-manager.lo \ libpower_la-gsd-power-plugin.lo libpower_la_OBJECTS = $(am_libpower_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libpower_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libpower_la_CFLAGS) \ @@ -117,21 +111,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libpower_la_SOURCES) $(gsd_backlight_helper_SOURCES) DIST_SOURCES = $(libpower_la_SOURCES) $(gsd_backlight_helper_SOURCES) @@ -217,10 +211,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -328,8 +318,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -486,7 +474,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libpower.la: $(libpower_la_OBJECTS) $(libpower_la_DEPENDENCIES) $(EXTRA_libpower_la_DEPENDENCIES) +libpower.la: $(libpower_la_OBJECTS) $(libpower_la_DEPENDENCIES) $(AM_V_CCLD)$(libpower_la_LINK) -rpath $(plugindir) $(libpower_la_OBJECTS) $(libpower_la_LIBADD) $(LIBS) install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @@ -531,7 +519,7 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gsd-backlight-helper$(EXEEXT): $(gsd_backlight_helper_OBJECTS) $(gsd_backlight_helper_DEPENDENCIES) $(EXTRA_gsd_backlight_helper_DEPENDENCIES) +gsd-backlight-helper$(EXEEXT): $(gsd_backlight_helper_OBJECTS) $(gsd_backlight_helper_DEPENDENCIES) @rm -f gsd-backlight-helper$(EXEEXT) $(AM_V_CCLD)$(gsd_backlight_helper_LINK) $(gsd_backlight_helper_OBJECTS) $(gsd_backlight_helper_LDADD) $(LIBS) @@ -551,72 +539,82 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libpower_la-gpm-common.lo: gpm-common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -MT libpower_la-gpm-common.lo -MD -MP -MF $(DEPDIR)/libpower_la-gpm-common.Tpo -c -o libpower_la-gpm-common.lo `test -f 'gpm-common.c' || echo '$(srcdir)/'`gpm-common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpower_la-gpm-common.Tpo $(DEPDIR)/libpower_la-gpm-common.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpm-common.c' object='libpower_la-gpm-common.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gpm-common.c' object='libpower_la-gpm-common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gpm-common.lo `test -f 'gpm-common.c' || echo '$(srcdir)/'`gpm-common.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gpm-common.lo `test -f 'gpm-common.c' || echo '$(srcdir)/'`gpm-common.c libpower_la-gpm-phone.lo: gpm-phone.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -MT libpower_la-gpm-phone.lo -MD -MP -MF $(DEPDIR)/libpower_la-gpm-phone.Tpo -c -o libpower_la-gpm-phone.lo `test -f 'gpm-phone.c' || echo '$(srcdir)/'`gpm-phone.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpower_la-gpm-phone.Tpo $(DEPDIR)/libpower_la-gpm-phone.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpm-phone.c' object='libpower_la-gpm-phone.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gpm-phone.c' object='libpower_la-gpm-phone.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gpm-phone.lo `test -f 'gpm-phone.c' || echo '$(srcdir)/'`gpm-phone.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gpm-phone.lo `test -f 'gpm-phone.c' || echo '$(srcdir)/'`gpm-phone.c libpower_la-gpm-idletime.lo: gpm-idletime.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -MT libpower_la-gpm-idletime.lo -MD -MP -MF $(DEPDIR)/libpower_la-gpm-idletime.Tpo -c -o libpower_la-gpm-idletime.lo `test -f 'gpm-idletime.c' || echo '$(srcdir)/'`gpm-idletime.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpower_la-gpm-idletime.Tpo $(DEPDIR)/libpower_la-gpm-idletime.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpm-idletime.c' object='libpower_la-gpm-idletime.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gpm-idletime.c' object='libpower_la-gpm-idletime.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gpm-idletime.lo `test -f 'gpm-idletime.c' || echo '$(srcdir)/'`gpm-idletime.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gpm-idletime.lo `test -f 'gpm-idletime.c' || echo '$(srcdir)/'`gpm-idletime.c libpower_la-gsd-power-manager.lo: gsd-power-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -MT libpower_la-gsd-power-manager.lo -MD -MP -MF $(DEPDIR)/libpower_la-gsd-power-manager.Tpo -c -o libpower_la-gsd-power-manager.lo `test -f 'gsd-power-manager.c' || echo '$(srcdir)/'`gsd-power-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpower_la-gsd-power-manager.Tpo $(DEPDIR)/libpower_la-gsd-power-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-power-manager.c' object='libpower_la-gsd-power-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-power-manager.c' object='libpower_la-gsd-power-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gsd-power-manager.lo `test -f 'gsd-power-manager.c' || echo '$(srcdir)/'`gsd-power-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gsd-power-manager.lo `test -f 'gsd-power-manager.c' || echo '$(srcdir)/'`gsd-power-manager.c libpower_la-gsd-power-plugin.lo: gsd-power-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -MT libpower_la-gsd-power-plugin.lo -MD -MP -MF $(DEPDIR)/libpower_la-gsd-power-plugin.Tpo -c -o libpower_la-gsd-power-plugin.lo `test -f 'gsd-power-plugin.c' || echo '$(srcdir)/'`gsd-power-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpower_la-gsd-power-plugin.Tpo $(DEPDIR)/libpower_la-gsd-power-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-power-plugin.c' object='libpower_la-gsd-power-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-power-plugin.c' object='libpower_la-gsd-power-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gsd-power-plugin.lo `test -f 'gsd-power-plugin.c' || echo '$(srcdir)/'`gsd-power-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpower_la_CPPFLAGS) $(CPPFLAGS) $(libpower_la_CFLAGS) $(CFLAGS) -c -o libpower_la-gsd-power-plugin.lo `test -f 'gsd-power-plugin.c' || echo '$(srcdir)/'`gsd-power-plugin.c gsd_backlight_helper-gsd-backlight-helper.o: gsd-backlight-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_backlight_helper_CFLAGS) $(CFLAGS) -MT gsd_backlight_helper-gsd-backlight-helper.o -MD -MP -MF $(DEPDIR)/gsd_backlight_helper-gsd-backlight-helper.Tpo -c -o gsd_backlight_helper-gsd-backlight-helper.o `test -f 'gsd-backlight-helper.c' || echo '$(srcdir)/'`gsd-backlight-helper.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_backlight_helper-gsd-backlight-helper.Tpo $(DEPDIR)/gsd_backlight_helper-gsd-backlight-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-backlight-helper.c' object='gsd_backlight_helper-gsd-backlight-helper.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-backlight-helper.c' object='gsd_backlight_helper-gsd-backlight-helper.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_backlight_helper_CFLAGS) $(CFLAGS) -c -o gsd_backlight_helper-gsd-backlight-helper.o `test -f 'gsd-backlight-helper.c' || echo '$(srcdir)/'`gsd-backlight-helper.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_backlight_helper_CFLAGS) $(CFLAGS) -c -o gsd_backlight_helper-gsd-backlight-helper.o `test -f 'gsd-backlight-helper.c' || echo '$(srcdir)/'`gsd-backlight-helper.c gsd_backlight_helper-gsd-backlight-helper.obj: gsd-backlight-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_backlight_helper_CFLAGS) $(CFLAGS) -MT gsd_backlight_helper-gsd-backlight-helper.obj -MD -MP -MF $(DEPDIR)/gsd_backlight_helper-gsd-backlight-helper.Tpo -c -o gsd_backlight_helper-gsd-backlight-helper.obj `if test -f 'gsd-backlight-helper.c'; then $(CYGPATH_W) 'gsd-backlight-helper.c'; else $(CYGPATH_W) '$(srcdir)/gsd-backlight-helper.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_backlight_helper-gsd-backlight-helper.Tpo $(DEPDIR)/gsd_backlight_helper-gsd-backlight-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-backlight-helper.c' object='gsd_backlight_helper-gsd-backlight-helper.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-backlight-helper.c' object='gsd_backlight_helper-gsd-backlight-helper.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_backlight_helper_CFLAGS) $(CFLAGS) -c -o gsd_backlight_helper-gsd-backlight-helper.obj `if test -f 'gsd-backlight-helper.c'; then $(CYGPATH_W) 'gsd-backlight-helper.c'; else $(CYGPATH_W) '$(srcdir)/gsd-backlight-helper.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_backlight_helper_CFLAGS) $(CFLAGS) -c -o gsd_backlight_helper-gsd-backlight-helper.obj `if test -f 'gsd-backlight-helper.c'; then $(CYGPATH_W) 'gsd-backlight-helper.c'; else $(CYGPATH_W) '$(srcdir)/gsd-backlight-helper.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -640,7 +638,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files install-polkit_policyDATA: $(polkit_policy_DATA) @$(NORMAL_INSTALL) test -z "$(polkit_policydir)" || $(MKDIR_P) "$(DESTDIR)$(polkit_policydir)" @@ -658,7 +658,9 @@ @$(NORMAL_UNINSTALL) @list='$(polkit_policy_DATA)'; test -n "$(polkit_policydir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(polkit_policydir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(polkit_policydir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(polkit_policydir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -759,15 +761,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/print-notifications/gsd-printer.c gnome-settings-daemon-3.4.1/plugins/print-notifications/gsd-printer.c --- gnome-settings-daemon-3.4.0/plugins/print-notifications/gsd-printer.c 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/print-notifications/gsd-printer.c 2012-04-16 12:34:43.000000000 +0000 @@ -734,18 +734,24 @@ g_free (commands_lowercase); } +/* Return default media size for current locale */ +static const gchar * +get_paper_size_from_locale () +{ + if (g_str_equal (gtk_paper_size_get_default (), GTK_PAPER_NAME_LETTER)) + return "na-letter"; + else + return "iso-a4"; +} static void set_default_paper_size (const gchar *printer_name, const gchar *ppd_file_name) { - ppd_file_t *ppd_file = NULL; GDBusProxy *proxy; GVariant *output; GError *error = NULL; - gchar *value = NULL; - gint i, j, k; - const gchar *paper_size; + GVariantBuilder *builder; proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, @@ -762,62 +768,31 @@ return; } - /* Set default PaperSize according to the locale + /* Set default media size according to the locale * FIXME: Handle more than A4 and Letter: * https://bugzilla.gnome.org/show_bug.cgi?id=660769 */ - paper_size = gtk_paper_size_get_default (); - if (g_str_equal (paper_size, GTK_PAPER_NAME_LETTER)) - paper_size = "Letter"; - else - paper_size = "A4"; - - if (ppd_file_name) { - ppd_file = ppdOpenFile (ppd_file_name); - if (ppd_file) { - ppdMarkDefaults (ppd_file); - for (i = 0; i < ppd_file->num_groups; i++) - for (j = 0; j < ppd_file->groups[i].num_options; j++) - if (g_strcmp0 ("PageSize", ppd_file->groups[i].options[j].keyword) == 0) { - for (k = 0; k < ppd_file->groups[i].options[j].num_choices; k++) { - if (g_ascii_strncasecmp (paper_size, - ppd_file->groups[i].options[j].choices[k].choice, - strlen (paper_size)) == 0 && - !ppd_file->groups[i].options[j].choices[k].marked) { - value = g_strdup (ppd_file->groups[i].options[j].choices[k].choice); - break; - } - } - break; - } - ppdClose (ppd_file); - } - } - - if (value) { - GVariantBuilder *builder; + builder = g_variant_builder_new (G_VARIANT_TYPE ("as")); + g_variant_builder_add (builder, "s", get_paper_size_from_locale ()); - builder = g_variant_builder_new (G_VARIANT_TYPE ("as")); - g_variant_builder_add (builder, "s", value); - - output = g_dbus_proxy_call_sync (proxy, - "PrinterAddOptionDefault", - g_variant_new ("(ssas)", - printer_name ? printer_name : "", - "PageSize", - builder), - G_DBUS_CALL_FLAGS_NONE, - DBUS_TIMEOUT, - NULL, - &error); + output = g_dbus_proxy_call_sync (proxy, + "PrinterAddOption", + g_variant_new ("(ssas)", + printer_name ? printer_name : "", + "media", + builder), + G_DBUS_CALL_FLAGS_NONE, + DBUS_TIMEOUT, + NULL, + &error); - if (output) { - g_variant_unref (output); - } else { + if (output) { + g_variant_unref (output); + } else { + if (!(error->domain == G_DBUS_ERROR && + (error->code == G_DBUS_ERROR_SERVICE_UNKNOWN || + error->code == G_DBUS_ERROR_UNKNOWN_METHOD))) g_warning ("%s", error->message); - g_error_free (error); - } - - g_free (value); + g_error_free (error); } g_object_unref (proxy); diff -Nru gnome-settings-daemon-3.4.0/plugins/print-notifications/Makefile.in gnome-settings-daemon-3.4.1/plugins/print-notifications/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/print-notifications/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/print-notifications/Makefile.in 2012-04-16 12:37:18.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -70,12 +70,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(libexecdir)" \ "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) @@ -87,8 +81,8 @@ libprint_notifications_la-gsd-print-notifications-plugin.lo libprint_notifications_la_OBJECTS = \ $(am_libprint_notifications_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libprint_notifications_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -124,21 +118,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libprint_notifications_la_SOURCES) $(gsd_printer_SOURCES) \ $(test_print_notifications_SOURCES) @@ -226,10 +220,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -337,8 +327,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -502,7 +490,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libprint-notifications.la: $(libprint_notifications_la_OBJECTS) $(libprint_notifications_la_DEPENDENCIES) $(EXTRA_libprint_notifications_la_DEPENDENCIES) +libprint-notifications.la: $(libprint_notifications_la_OBJECTS) $(libprint_notifications_la_DEPENDENCIES) $(AM_V_CCLD)$(libprint_notifications_la_LINK) -rpath $(plugindir) $(libprint_notifications_la_OBJECTS) $(libprint_notifications_la_LIBADD) $(LIBS) install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @@ -556,10 +544,10 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gsd-printer$(EXEEXT): $(gsd_printer_OBJECTS) $(gsd_printer_DEPENDENCIES) $(EXTRA_gsd_printer_DEPENDENCIES) +gsd-printer$(EXEEXT): $(gsd_printer_OBJECTS) $(gsd_printer_DEPENDENCIES) @rm -f gsd-printer$(EXEEXT) $(AM_V_CCLD)$(gsd_printer_LINK) $(gsd_printer_OBJECTS) $(gsd_printer_LDADD) $(LIBS) -test-print-notifications$(EXEEXT): $(test_print_notifications_OBJECTS) $(test_print_notifications_DEPENDENCIES) $(EXTRA_test_print_notifications_DEPENDENCIES) +test-print-notifications$(EXEEXT): $(test_print_notifications_OBJECTS) $(test_print_notifications_DEPENDENCIES) @rm -f test-print-notifications$(EXEEXT) $(AM_V_CCLD)$(test_print_notifications_LINK) $(test_print_notifications_OBJECTS) $(test_print_notifications_LDADD) $(LIBS) @@ -578,79 +566,90 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libprint_notifications_la-gsd-print-notifications-manager.lo: gsd-print-notifications-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprint_notifications_la_CPPFLAGS) $(CPPFLAGS) $(libprint_notifications_la_CFLAGS) $(CFLAGS) -MT libprint_notifications_la-gsd-print-notifications-manager.lo -MD -MP -MF $(DEPDIR)/libprint_notifications_la-gsd-print-notifications-manager.Tpo -c -o libprint_notifications_la-gsd-print-notifications-manager.lo `test -f 'gsd-print-notifications-manager.c' || echo '$(srcdir)/'`gsd-print-notifications-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libprint_notifications_la-gsd-print-notifications-manager.Tpo $(DEPDIR)/libprint_notifications_la-gsd-print-notifications-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-print-notifications-manager.c' object='libprint_notifications_la-gsd-print-notifications-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-print-notifications-manager.c' object='libprint_notifications_la-gsd-print-notifications-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprint_notifications_la_CPPFLAGS) $(CPPFLAGS) $(libprint_notifications_la_CFLAGS) $(CFLAGS) -c -o libprint_notifications_la-gsd-print-notifications-manager.lo `test -f 'gsd-print-notifications-manager.c' || echo '$(srcdir)/'`gsd-print-notifications-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprint_notifications_la_CPPFLAGS) $(CPPFLAGS) $(libprint_notifications_la_CFLAGS) $(CFLAGS) -c -o libprint_notifications_la-gsd-print-notifications-manager.lo `test -f 'gsd-print-notifications-manager.c' || echo '$(srcdir)/'`gsd-print-notifications-manager.c libprint_notifications_la-gsd-print-notifications-plugin.lo: gsd-print-notifications-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprint_notifications_la_CPPFLAGS) $(CPPFLAGS) $(libprint_notifications_la_CFLAGS) $(CFLAGS) -MT libprint_notifications_la-gsd-print-notifications-plugin.lo -MD -MP -MF $(DEPDIR)/libprint_notifications_la-gsd-print-notifications-plugin.Tpo -c -o libprint_notifications_la-gsd-print-notifications-plugin.lo `test -f 'gsd-print-notifications-plugin.c' || echo '$(srcdir)/'`gsd-print-notifications-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libprint_notifications_la-gsd-print-notifications-plugin.Tpo $(DEPDIR)/libprint_notifications_la-gsd-print-notifications-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-print-notifications-plugin.c' object='libprint_notifications_la-gsd-print-notifications-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-print-notifications-plugin.c' object='libprint_notifications_la-gsd-print-notifications-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprint_notifications_la_CPPFLAGS) $(CPPFLAGS) $(libprint_notifications_la_CFLAGS) $(CFLAGS) -c -o libprint_notifications_la-gsd-print-notifications-plugin.lo `test -f 'gsd-print-notifications-plugin.c' || echo '$(srcdir)/'`gsd-print-notifications-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprint_notifications_la_CPPFLAGS) $(CPPFLAGS) $(libprint_notifications_la_CFLAGS) $(CFLAGS) -c -o libprint_notifications_la-gsd-print-notifications-plugin.lo `test -f 'gsd-print-notifications-plugin.c' || echo '$(srcdir)/'`gsd-print-notifications-plugin.c gsd_printer-gsd-printer.o: gsd-printer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_printer_CFLAGS) $(CFLAGS) -MT gsd_printer-gsd-printer.o -MD -MP -MF $(DEPDIR)/gsd_printer-gsd-printer.Tpo -c -o gsd_printer-gsd-printer.o `test -f 'gsd-printer.c' || echo '$(srcdir)/'`gsd-printer.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_printer-gsd-printer.Tpo $(DEPDIR)/gsd_printer-gsd-printer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-printer.c' object='gsd_printer-gsd-printer.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-printer.c' object='gsd_printer-gsd-printer.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_printer_CFLAGS) $(CFLAGS) -c -o gsd_printer-gsd-printer.o `test -f 'gsd-printer.c' || echo '$(srcdir)/'`gsd-printer.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_printer_CFLAGS) $(CFLAGS) -c -o gsd_printer-gsd-printer.o `test -f 'gsd-printer.c' || echo '$(srcdir)/'`gsd-printer.c gsd_printer-gsd-printer.obj: gsd-printer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_printer_CFLAGS) $(CFLAGS) -MT gsd_printer-gsd-printer.obj -MD -MP -MF $(DEPDIR)/gsd_printer-gsd-printer.Tpo -c -o gsd_printer-gsd-printer.obj `if test -f 'gsd-printer.c'; then $(CYGPATH_W) 'gsd-printer.c'; else $(CYGPATH_W) '$(srcdir)/gsd-printer.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_printer-gsd-printer.Tpo $(DEPDIR)/gsd_printer-gsd-printer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-printer.c' object='gsd_printer-gsd-printer.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-printer.c' object='gsd_printer-gsd-printer.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_printer_CFLAGS) $(CFLAGS) -c -o gsd_printer-gsd-printer.obj `if test -f 'gsd-printer.c'; then $(CYGPATH_W) 'gsd-printer.c'; else $(CYGPATH_W) '$(srcdir)/gsd-printer.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_printer_CFLAGS) $(CFLAGS) -c -o gsd_printer-gsd-printer.obj `if test -f 'gsd-printer.c'; then $(CYGPATH_W) 'gsd-printer.c'; else $(CYGPATH_W) '$(srcdir)/gsd-printer.c'; fi` test_print_notifications-gsd-print-notifications-manager.o: gsd-print-notifications-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -MT test_print_notifications-gsd-print-notifications-manager.o -MD -MP -MF $(DEPDIR)/test_print_notifications-gsd-print-notifications-manager.Tpo -c -o test_print_notifications-gsd-print-notifications-manager.o `test -f 'gsd-print-notifications-manager.c' || echo '$(srcdir)/'`gsd-print-notifications-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_print_notifications-gsd-print-notifications-manager.Tpo $(DEPDIR)/test_print_notifications-gsd-print-notifications-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-print-notifications-manager.c' object='test_print_notifications-gsd-print-notifications-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-print-notifications-manager.c' object='test_print_notifications-gsd-print-notifications-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-gsd-print-notifications-manager.o `test -f 'gsd-print-notifications-manager.c' || echo '$(srcdir)/'`gsd-print-notifications-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-gsd-print-notifications-manager.o `test -f 'gsd-print-notifications-manager.c' || echo '$(srcdir)/'`gsd-print-notifications-manager.c test_print_notifications-gsd-print-notifications-manager.obj: gsd-print-notifications-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -MT test_print_notifications-gsd-print-notifications-manager.obj -MD -MP -MF $(DEPDIR)/test_print_notifications-gsd-print-notifications-manager.Tpo -c -o test_print_notifications-gsd-print-notifications-manager.obj `if test -f 'gsd-print-notifications-manager.c'; then $(CYGPATH_W) 'gsd-print-notifications-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-print-notifications-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_print_notifications-gsd-print-notifications-manager.Tpo $(DEPDIR)/test_print_notifications-gsd-print-notifications-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-print-notifications-manager.c' object='test_print_notifications-gsd-print-notifications-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-print-notifications-manager.c' object='test_print_notifications-gsd-print-notifications-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-gsd-print-notifications-manager.obj `if test -f 'gsd-print-notifications-manager.c'; then $(CYGPATH_W) 'gsd-print-notifications-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-print-notifications-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-gsd-print-notifications-manager.obj `if test -f 'gsd-print-notifications-manager.c'; then $(CYGPATH_W) 'gsd-print-notifications-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-print-notifications-manager.c'; fi` test_print_notifications-test-print-notifications.o: test-print-notifications.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -MT test_print_notifications-test-print-notifications.o -MD -MP -MF $(DEPDIR)/test_print_notifications-test-print-notifications.Tpo -c -o test_print_notifications-test-print-notifications.o `test -f 'test-print-notifications.c' || echo '$(srcdir)/'`test-print-notifications.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_print_notifications-test-print-notifications.Tpo $(DEPDIR)/test_print_notifications-test-print-notifications.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-print-notifications.c' object='test_print_notifications-test-print-notifications.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-print-notifications.c' object='test_print_notifications-test-print-notifications.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-test-print-notifications.o `test -f 'test-print-notifications.c' || echo '$(srcdir)/'`test-print-notifications.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-test-print-notifications.o `test -f 'test-print-notifications.c' || echo '$(srcdir)/'`test-print-notifications.c test_print_notifications-test-print-notifications.obj: test-print-notifications.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -MT test_print_notifications-test-print-notifications.obj -MD -MP -MF $(DEPDIR)/test_print_notifications-test-print-notifications.Tpo -c -o test_print_notifications-test-print-notifications.obj `if test -f 'test-print-notifications.c'; then $(CYGPATH_W) 'test-print-notifications.c'; else $(CYGPATH_W) '$(srcdir)/test-print-notifications.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_print_notifications-test-print-notifications.Tpo $(DEPDIR)/test_print_notifications-test-print-notifications.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-print-notifications.c' object='test_print_notifications-test-print-notifications.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-print-notifications.c' object='test_print_notifications-test-print-notifications.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-test-print-notifications.obj `if test -f 'test-print-notifications.c'; then $(CYGPATH_W) 'test-print-notifications.c'; else $(CYGPATH_W) '$(srcdir)/test-print-notifications.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_print_notifications_CPPFLAGS) $(CPPFLAGS) $(test_print_notifications_CFLAGS) $(CFLAGS) -c -o test_print_notifications-test-print-notifications.obj `if test -f 'test-print-notifications.c'; then $(CYGPATH_W) 'test-print-notifications.c'; else $(CYGPATH_W) '$(srcdir)/test-print-notifications.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -674,7 +673,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -775,15 +776,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/smartcard/Makefile.in gnome-settings-daemon-3.4.1/plugins/smartcard/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/smartcard/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/smartcard/Makefile.in 2012-04-16 12:37:19.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -82,8 +76,8 @@ libsmartcard_la-gsd-smartcard.lo \ libsmartcard_la-gsd-smartcard-manager.lo libsmartcard_la_OBJECTS = $(am_libsmartcard_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libsmartcard_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -99,21 +93,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libsmartcard_la_SOURCES) DIST_SOURCES = $(libsmartcard_la_SOURCES) @@ -199,10 +193,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -310,8 +300,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -444,7 +432,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libsmartcard.la: $(libsmartcard_la_OBJECTS) $(libsmartcard_la_DEPENDENCIES) $(EXTRA_libsmartcard_la_DEPENDENCIES) +libsmartcard.la: $(libsmartcard_la_OBJECTS) $(libsmartcard_la_DEPENDENCIES) $(AM_V_CCLD)$(libsmartcard_la_LINK) -rpath $(plugindir) $(libsmartcard_la_OBJECTS) $(libsmartcard_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -460,44 +448,50 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libsmartcard_la-gsd-smartcard-plugin.lo: gsd-smartcard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -MT libsmartcard_la-gsd-smartcard-plugin.lo -MD -MP -MF $(DEPDIR)/libsmartcard_la-gsd-smartcard-plugin.Tpo -c -o libsmartcard_la-gsd-smartcard-plugin.lo `test -f 'gsd-smartcard-plugin.c' || echo '$(srcdir)/'`gsd-smartcard-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsmartcard_la-gsd-smartcard-plugin.Tpo $(DEPDIR)/libsmartcard_la-gsd-smartcard-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-smartcard-plugin.c' object='libsmartcard_la-gsd-smartcard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-smartcard-plugin.c' object='libsmartcard_la-gsd-smartcard-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -c -o libsmartcard_la-gsd-smartcard-plugin.lo `test -f 'gsd-smartcard-plugin.c' || echo '$(srcdir)/'`gsd-smartcard-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -c -o libsmartcard_la-gsd-smartcard-plugin.lo `test -f 'gsd-smartcard-plugin.c' || echo '$(srcdir)/'`gsd-smartcard-plugin.c libsmartcard_la-gsd-smartcard.lo: gsd-smartcard.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -MT libsmartcard_la-gsd-smartcard.lo -MD -MP -MF $(DEPDIR)/libsmartcard_la-gsd-smartcard.Tpo -c -o libsmartcard_la-gsd-smartcard.lo `test -f 'gsd-smartcard.c' || echo '$(srcdir)/'`gsd-smartcard.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsmartcard_la-gsd-smartcard.Tpo $(DEPDIR)/libsmartcard_la-gsd-smartcard.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-smartcard.c' object='libsmartcard_la-gsd-smartcard.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-smartcard.c' object='libsmartcard_la-gsd-smartcard.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -c -o libsmartcard_la-gsd-smartcard.lo `test -f 'gsd-smartcard.c' || echo '$(srcdir)/'`gsd-smartcard.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -c -o libsmartcard_la-gsd-smartcard.lo `test -f 'gsd-smartcard.c' || echo '$(srcdir)/'`gsd-smartcard.c libsmartcard_la-gsd-smartcard-manager.lo: gsd-smartcard-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -MT libsmartcard_la-gsd-smartcard-manager.lo -MD -MP -MF $(DEPDIR)/libsmartcard_la-gsd-smartcard-manager.Tpo -c -o libsmartcard_la-gsd-smartcard-manager.lo `test -f 'gsd-smartcard-manager.c' || echo '$(srcdir)/'`gsd-smartcard-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsmartcard_la-gsd-smartcard-manager.Tpo $(DEPDIR)/libsmartcard_la-gsd-smartcard-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-smartcard-manager.c' object='libsmartcard_la-gsd-smartcard-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-smartcard-manager.c' object='libsmartcard_la-gsd-smartcard-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -c -o libsmartcard_la-gsd-smartcard-manager.lo `test -f 'gsd-smartcard-manager.c' || echo '$(srcdir)/'`gsd-smartcard-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsmartcard_la_CPPFLAGS) $(CPPFLAGS) $(libsmartcard_la_CFLAGS) $(CFLAGS) -c -o libsmartcard_la-gsd-smartcard-manager.lo `test -f 'gsd-smartcard-manager.c' || echo '$(srcdir)/'`gsd-smartcard-manager.c mostlyclean-libtool: -rm -f *.lo @@ -521,7 +515,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -622,15 +618,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/sound/Makefile.in gnome-settings-daemon-3.4.1/plugins/sound/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/sound/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/sound/Makefile.in 2012-04-16 12:37:19.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -80,8 +74,8 @@ am_libsound_la_OBJECTS = libsound_la-gsd-sound-plugin.lo \ libsound_la-gsd-sound-manager.lo libsound_la_OBJECTS = $(am_libsound_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libsound_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libsound_la_CFLAGS) \ @@ -96,21 +90,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libsound_la_SOURCES) DIST_SOURCES = $(libsound_la_SOURCES) @@ -196,10 +190,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -307,8 +297,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -436,7 +424,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libsound.la: $(libsound_la_OBJECTS) $(libsound_la_DEPENDENCIES) $(EXTRA_libsound_la_DEPENDENCIES) +libsound.la: $(libsound_la_OBJECTS) $(libsound_la_DEPENDENCIES) $(AM_V_CCLD)$(libsound_la_LINK) -rpath $(plugindir) $(libsound_la_OBJECTS) $(libsound_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -451,37 +439,42 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libsound_la-gsd-sound-plugin.lo: gsd-sound-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsound_la_CPPFLAGS) $(CPPFLAGS) $(libsound_la_CFLAGS) $(CFLAGS) -MT libsound_la-gsd-sound-plugin.lo -MD -MP -MF $(DEPDIR)/libsound_la-gsd-sound-plugin.Tpo -c -o libsound_la-gsd-sound-plugin.lo `test -f 'gsd-sound-plugin.c' || echo '$(srcdir)/'`gsd-sound-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsound_la-gsd-sound-plugin.Tpo $(DEPDIR)/libsound_la-gsd-sound-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-sound-plugin.c' object='libsound_la-gsd-sound-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-sound-plugin.c' object='libsound_la-gsd-sound-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsound_la_CPPFLAGS) $(CPPFLAGS) $(libsound_la_CFLAGS) $(CFLAGS) -c -o libsound_la-gsd-sound-plugin.lo `test -f 'gsd-sound-plugin.c' || echo '$(srcdir)/'`gsd-sound-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsound_la_CPPFLAGS) $(CPPFLAGS) $(libsound_la_CFLAGS) $(CFLAGS) -c -o libsound_la-gsd-sound-plugin.lo `test -f 'gsd-sound-plugin.c' || echo '$(srcdir)/'`gsd-sound-plugin.c libsound_la-gsd-sound-manager.lo: gsd-sound-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsound_la_CPPFLAGS) $(CPPFLAGS) $(libsound_la_CFLAGS) $(CFLAGS) -MT libsound_la-gsd-sound-manager.lo -MD -MP -MF $(DEPDIR)/libsound_la-gsd-sound-manager.Tpo -c -o libsound_la-gsd-sound-manager.lo `test -f 'gsd-sound-manager.c' || echo '$(srcdir)/'`gsd-sound-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsound_la-gsd-sound-manager.Tpo $(DEPDIR)/libsound_la-gsd-sound-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-sound-manager.c' object='libsound_la-gsd-sound-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-sound-manager.c' object='libsound_la-gsd-sound-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsound_la_CPPFLAGS) $(CPPFLAGS) $(libsound_la_CFLAGS) $(CFLAGS) -c -o libsound_la-gsd-sound-manager.lo `test -f 'gsd-sound-manager.c' || echo '$(srcdir)/'`gsd-sound-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsound_la_CPPFLAGS) $(CPPFLAGS) $(libsound_la_CFLAGS) $(CFLAGS) -c -o libsound_la-gsd-sound-manager.lo `test -f 'gsd-sound-manager.c' || echo '$(srcdir)/'`gsd-sound-manager.c mostlyclean-libtool: -rm -f *.lo @@ -505,7 +498,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -606,15 +601,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/updates/gsd-updates-refresh.c gnome-settings-daemon-3.4.1/plugins/updates/gsd-updates-refresh.c --- gnome-settings-daemon-3.4.0/plugins/updates/gsd-updates-refresh.c 2011-06-14 09:08:29.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/updates/gsd-updates-refresh.c 2012-04-12 09:54:14.000000000 +0000 @@ -616,6 +616,8 @@ if (refresh->priv->force_get_updates_login_timeout_id != 0) g_source_remove (refresh->priv->force_get_updates_login_timeout_id); + g_signal_handlers_disconnect_by_data (refresh->priv->client, refresh); + g_object_unref (refresh->priv->control); g_object_unref (refresh->priv->settings); g_object_unref (refresh->priv->client); diff -Nru gnome-settings-daemon-3.4.0/plugins/updates/Makefile.in gnome-settings-daemon-3.4.1/plugins/updates/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/updates/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/updates/Makefile.in 2012-04-16 12:37:19.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -68,12 +68,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" \ "$(DESTDIR)$(introspectiondir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) @@ -85,8 +79,8 @@ libupdates_la-gsd-updates-firmware.lo \ libupdates_la-gsd-updates-manager.lo libupdates_la_OBJECTS = $(am_libupdates_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libupdates_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libupdates_la_CFLAGS) \ @@ -101,21 +95,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libupdates_la_SOURCES) DIST_SOURCES = $(libupdates_la_SOURCES) @@ -201,10 +195,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -312,8 +302,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -454,7 +442,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libupdates.la: $(libupdates_la_OBJECTS) $(libupdates_la_DEPENDENCIES) $(EXTRA_libupdates_la_DEPENDENCIES) +libupdates.la: $(libupdates_la_OBJECTS) $(libupdates_la_DEPENDENCIES) $(AM_V_CCLD)$(libupdates_la_LINK) -rpath $(plugindir) $(libupdates_la_OBJECTS) $(libupdates_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -471,51 +459,58 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libupdates_la-gsd-updates-plugin.lo: gsd-updates-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -MT libupdates_la-gsd-updates-plugin.lo -MD -MP -MF $(DEPDIR)/libupdates_la-gsd-updates-plugin.Tpo -c -o libupdates_la-gsd-updates-plugin.lo `test -f 'gsd-updates-plugin.c' || echo '$(srcdir)/'`gsd-updates-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libupdates_la-gsd-updates-plugin.Tpo $(DEPDIR)/libupdates_la-gsd-updates-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-updates-plugin.c' object='libupdates_la-gsd-updates-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-updates-plugin.c' object='libupdates_la-gsd-updates-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-plugin.lo `test -f 'gsd-updates-plugin.c' || echo '$(srcdir)/'`gsd-updates-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-plugin.lo `test -f 'gsd-updates-plugin.c' || echo '$(srcdir)/'`gsd-updates-plugin.c libupdates_la-gsd-updates-refresh.lo: gsd-updates-refresh.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -MT libupdates_la-gsd-updates-refresh.lo -MD -MP -MF $(DEPDIR)/libupdates_la-gsd-updates-refresh.Tpo -c -o libupdates_la-gsd-updates-refresh.lo `test -f 'gsd-updates-refresh.c' || echo '$(srcdir)/'`gsd-updates-refresh.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libupdates_la-gsd-updates-refresh.Tpo $(DEPDIR)/libupdates_la-gsd-updates-refresh.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-updates-refresh.c' object='libupdates_la-gsd-updates-refresh.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-updates-refresh.c' object='libupdates_la-gsd-updates-refresh.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-refresh.lo `test -f 'gsd-updates-refresh.c' || echo '$(srcdir)/'`gsd-updates-refresh.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-refresh.lo `test -f 'gsd-updates-refresh.c' || echo '$(srcdir)/'`gsd-updates-refresh.c libupdates_la-gsd-updates-firmware.lo: gsd-updates-firmware.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -MT libupdates_la-gsd-updates-firmware.lo -MD -MP -MF $(DEPDIR)/libupdates_la-gsd-updates-firmware.Tpo -c -o libupdates_la-gsd-updates-firmware.lo `test -f 'gsd-updates-firmware.c' || echo '$(srcdir)/'`gsd-updates-firmware.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libupdates_la-gsd-updates-firmware.Tpo $(DEPDIR)/libupdates_la-gsd-updates-firmware.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-updates-firmware.c' object='libupdates_la-gsd-updates-firmware.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-updates-firmware.c' object='libupdates_la-gsd-updates-firmware.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-firmware.lo `test -f 'gsd-updates-firmware.c' || echo '$(srcdir)/'`gsd-updates-firmware.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-firmware.lo `test -f 'gsd-updates-firmware.c' || echo '$(srcdir)/'`gsd-updates-firmware.c libupdates_la-gsd-updates-manager.lo: gsd-updates-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -MT libupdates_la-gsd-updates-manager.lo -MD -MP -MF $(DEPDIR)/libupdates_la-gsd-updates-manager.Tpo -c -o libupdates_la-gsd-updates-manager.lo `test -f 'gsd-updates-manager.c' || echo '$(srcdir)/'`gsd-updates-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libupdates_la-gsd-updates-manager.Tpo $(DEPDIR)/libupdates_la-gsd-updates-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-updates-manager.c' object='libupdates_la-gsd-updates-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-updates-manager.c' object='libupdates_la-gsd-updates-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-manager.lo `test -f 'gsd-updates-manager.c' || echo '$(srcdir)/'`gsd-updates-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libupdates_la_CPPFLAGS) $(CPPFLAGS) $(libupdates_la_CFLAGS) $(CFLAGS) -c -o libupdates_la-gsd-updates-manager.lo `test -f 'gsd-updates-manager.c' || echo '$(srcdir)/'`gsd-updates-manager.c mostlyclean-libtool: -rm -f *.lo @@ -539,7 +534,9 @@ @$(NORMAL_UNINSTALL) @list='$(dist_introspection_DATA)'; test -n "$(introspectiondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(introspectiondir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(introspectiondir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(introspectiondir)" && rm -f $$files install-pluginDATA: $(plugin_DATA) @$(NORMAL_INSTALL) test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)" @@ -557,7 +554,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -658,15 +657,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/wacom/gsd-wacom-manager.c gnome-settings-daemon-3.4.1/plugins/wacom/gsd-wacom-manager.c --- gnome-settings-daemon-3.4.0/plugins/wacom/gsd-wacom-manager.c 2012-03-23 10:22:45.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/wacom/gsd-wacom-manager.c 2012-04-16 12:45:15.000000000 +0000 @@ -543,7 +543,8 @@ type = gsd_wacom_device_get_device_type (device); - if (type == WACOM_TYPE_TOUCH) { + if (type == WACOM_TYPE_TOUCH && + gsd_wacom_device_is_screen_tablet (device) == FALSE) { set_absolute (device, FALSE); return; } diff -Nru gnome-settings-daemon-3.4.0/plugins/wacom/Makefile.in gnome-settings-daemon-3.4.1/plugins/wacom/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/wacom/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/wacom/Makefile.in 2012-04-16 12:37:19.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -70,12 +70,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(libexecdir)" \ "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(polkit_policydir)" LTLIBRARIES = $(plugin_LTLIBRARIES) @@ -87,8 +81,8 @@ libgsdwacom_la-gsd-wacom-manager.lo \ libgsdwacom_la-gsd-wacom-device.lo libgsdwacom_la_OBJECTS = $(am_libgsdwacom_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libgsdwacom_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -136,21 +130,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libgsdwacom_la_SOURCES) $(gsd_wacom_led_helper_SOURCES) \ $(list_wacom_SOURCES) $(test_wacom_SOURCES) @@ -239,10 +233,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -350,8 +340,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -551,7 +539,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libgsdwacom.la: $(libgsdwacom_la_OBJECTS) $(libgsdwacom_la_DEPENDENCIES) $(EXTRA_libgsdwacom_la_DEPENDENCIES) +libgsdwacom.la: $(libgsdwacom_la_OBJECTS) $(libgsdwacom_la_DEPENDENCIES) $(AM_V_CCLD)$(libgsdwacom_la_LINK) -rpath $(plugindir) $(libgsdwacom_la_OBJECTS) $(libgsdwacom_la_LIBADD) $(LIBS) install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @@ -605,13 +593,13 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -gsd-wacom-led-helper$(EXEEXT): $(gsd_wacom_led_helper_OBJECTS) $(gsd_wacom_led_helper_DEPENDENCIES) $(EXTRA_gsd_wacom_led_helper_DEPENDENCIES) +gsd-wacom-led-helper$(EXEEXT): $(gsd_wacom_led_helper_OBJECTS) $(gsd_wacom_led_helper_DEPENDENCIES) @rm -f gsd-wacom-led-helper$(EXEEXT) $(AM_V_CCLD)$(gsd_wacom_led_helper_LINK) $(gsd_wacom_led_helper_OBJECTS) $(gsd_wacom_led_helper_LDADD) $(LIBS) -list-wacom$(EXEEXT): $(list_wacom_OBJECTS) $(list_wacom_DEPENDENCIES) $(EXTRA_list_wacom_DEPENDENCIES) +list-wacom$(EXEEXT): $(list_wacom_OBJECTS) $(list_wacom_DEPENDENCIES) @rm -f list-wacom$(EXEEXT) $(AM_V_CCLD)$(list_wacom_LINK) $(list_wacom_OBJECTS) $(list_wacom_LDADD) $(LIBS) -test-wacom$(EXEEXT): $(test_wacom_OBJECTS) $(test_wacom_DEPENDENCIES) $(EXTRA_test_wacom_DEPENDENCIES) +test-wacom$(EXEEXT): $(test_wacom_OBJECTS) $(test_wacom_DEPENDENCIES) @rm -f test-wacom$(EXEEXT) $(AM_V_CCLD)$(test_wacom_LINK) $(test_wacom_OBJECTS) $(test_wacom_LDADD) $(LIBS) @@ -634,128 +622,146 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libgsdwacom_la-gsd-wacom-plugin.lo: gsd-wacom-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -MT libgsdwacom_la-gsd-wacom-plugin.lo -MD -MP -MF $(DEPDIR)/libgsdwacom_la-gsd-wacom-plugin.Tpo -c -o libgsdwacom_la-gsd-wacom-plugin.lo `test -f 'gsd-wacom-plugin.c' || echo '$(srcdir)/'`gsd-wacom-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgsdwacom_la-gsd-wacom-plugin.Tpo $(DEPDIR)/libgsdwacom_la-gsd-wacom-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-plugin.c' object='libgsdwacom_la-gsd-wacom-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-plugin.c' object='libgsdwacom_la-gsd-wacom-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -c -o libgsdwacom_la-gsd-wacom-plugin.lo `test -f 'gsd-wacom-plugin.c' || echo '$(srcdir)/'`gsd-wacom-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -c -o libgsdwacom_la-gsd-wacom-plugin.lo `test -f 'gsd-wacom-plugin.c' || echo '$(srcdir)/'`gsd-wacom-plugin.c libgsdwacom_la-gsd-wacom-manager.lo: gsd-wacom-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -MT libgsdwacom_la-gsd-wacom-manager.lo -MD -MP -MF $(DEPDIR)/libgsdwacom_la-gsd-wacom-manager.Tpo -c -o libgsdwacom_la-gsd-wacom-manager.lo `test -f 'gsd-wacom-manager.c' || echo '$(srcdir)/'`gsd-wacom-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgsdwacom_la-gsd-wacom-manager.Tpo $(DEPDIR)/libgsdwacom_la-gsd-wacom-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-manager.c' object='libgsdwacom_la-gsd-wacom-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-manager.c' object='libgsdwacom_la-gsd-wacom-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -c -o libgsdwacom_la-gsd-wacom-manager.lo `test -f 'gsd-wacom-manager.c' || echo '$(srcdir)/'`gsd-wacom-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -c -o libgsdwacom_la-gsd-wacom-manager.lo `test -f 'gsd-wacom-manager.c' || echo '$(srcdir)/'`gsd-wacom-manager.c libgsdwacom_la-gsd-wacom-device.lo: gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -MT libgsdwacom_la-gsd-wacom-device.lo -MD -MP -MF $(DEPDIR)/libgsdwacom_la-gsd-wacom-device.Tpo -c -o libgsdwacom_la-gsd-wacom-device.lo `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgsdwacom_la-gsd-wacom-device.Tpo $(DEPDIR)/libgsdwacom_la-gsd-wacom-device.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-device.c' object='libgsdwacom_la-gsd-wacom-device.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-device.c' object='libgsdwacom_la-gsd-wacom-device.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -c -o libgsdwacom_la-gsd-wacom-device.lo `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgsdwacom_la_CPPFLAGS) $(CPPFLAGS) $(libgsdwacom_la_CFLAGS) $(CFLAGS) -c -o libgsdwacom_la-gsd-wacom-device.lo `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c gsd_wacom_led_helper-gsd-wacom-led-helper.o: gsd-wacom-led-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_wacom_led_helper_CFLAGS) $(CFLAGS) -MT gsd_wacom_led_helper-gsd-wacom-led-helper.o -MD -MP -MF $(DEPDIR)/gsd_wacom_led_helper-gsd-wacom-led-helper.Tpo -c -o gsd_wacom_led_helper-gsd-wacom-led-helper.o `test -f 'gsd-wacom-led-helper.c' || echo '$(srcdir)/'`gsd-wacom-led-helper.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_wacom_led_helper-gsd-wacom-led-helper.Tpo $(DEPDIR)/gsd_wacom_led_helper-gsd-wacom-led-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-led-helper.c' object='gsd_wacom_led_helper-gsd-wacom-led-helper.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-led-helper.c' object='gsd_wacom_led_helper-gsd-wacom-led-helper.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_wacom_led_helper_CFLAGS) $(CFLAGS) -c -o gsd_wacom_led_helper-gsd-wacom-led-helper.o `test -f 'gsd-wacom-led-helper.c' || echo '$(srcdir)/'`gsd-wacom-led-helper.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_wacom_led_helper_CFLAGS) $(CFLAGS) -c -o gsd_wacom_led_helper-gsd-wacom-led-helper.o `test -f 'gsd-wacom-led-helper.c' || echo '$(srcdir)/'`gsd-wacom-led-helper.c gsd_wacom_led_helper-gsd-wacom-led-helper.obj: gsd-wacom-led-helper.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_wacom_led_helper_CFLAGS) $(CFLAGS) -MT gsd_wacom_led_helper-gsd-wacom-led-helper.obj -MD -MP -MF $(DEPDIR)/gsd_wacom_led_helper-gsd-wacom-led-helper.Tpo -c -o gsd_wacom_led_helper-gsd-wacom-led-helper.obj `if test -f 'gsd-wacom-led-helper.c'; then $(CYGPATH_W) 'gsd-wacom-led-helper.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-led-helper.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gsd_wacom_led_helper-gsd-wacom-led-helper.Tpo $(DEPDIR)/gsd_wacom_led_helper-gsd-wacom-led-helper.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-led-helper.c' object='gsd_wacom_led_helper-gsd-wacom-led-helper.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-led-helper.c' object='gsd_wacom_led_helper-gsd-wacom-led-helper.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_wacom_led_helper_CFLAGS) $(CFLAGS) -c -o gsd_wacom_led_helper-gsd-wacom-led-helper.obj `if test -f 'gsd-wacom-led-helper.c'; then $(CYGPATH_W) 'gsd-wacom-led-helper.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-led-helper.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gsd_wacom_led_helper_CFLAGS) $(CFLAGS) -c -o gsd_wacom_led_helper-gsd-wacom-led-helper.obj `if test -f 'gsd-wacom-led-helper.c'; then $(CYGPATH_W) 'gsd-wacom-led-helper.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-led-helper.c'; fi` list_wacom-list-wacom.o: list-wacom.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -MT list_wacom-list-wacom.o -MD -MP -MF $(DEPDIR)/list_wacom-list-wacom.Tpo -c -o list_wacom-list-wacom.o `test -f 'list-wacom.c' || echo '$(srcdir)/'`list-wacom.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/list_wacom-list-wacom.Tpo $(DEPDIR)/list_wacom-list-wacom.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='list-wacom.c' object='list_wacom-list-wacom.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='list-wacom.c' object='list_wacom-list-wacom.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-list-wacom.o `test -f 'list-wacom.c' || echo '$(srcdir)/'`list-wacom.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-list-wacom.o `test -f 'list-wacom.c' || echo '$(srcdir)/'`list-wacom.c list_wacom-list-wacom.obj: list-wacom.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -MT list_wacom-list-wacom.obj -MD -MP -MF $(DEPDIR)/list_wacom-list-wacom.Tpo -c -o list_wacom-list-wacom.obj `if test -f 'list-wacom.c'; then $(CYGPATH_W) 'list-wacom.c'; else $(CYGPATH_W) '$(srcdir)/list-wacom.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/list_wacom-list-wacom.Tpo $(DEPDIR)/list_wacom-list-wacom.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='list-wacom.c' object='list_wacom-list-wacom.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='list-wacom.c' object='list_wacom-list-wacom.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-list-wacom.obj `if test -f 'list-wacom.c'; then $(CYGPATH_W) 'list-wacom.c'; else $(CYGPATH_W) '$(srcdir)/list-wacom.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-list-wacom.obj `if test -f 'list-wacom.c'; then $(CYGPATH_W) 'list-wacom.c'; else $(CYGPATH_W) '$(srcdir)/list-wacom.c'; fi` list_wacom-gsd-wacom-device.o: gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -MT list_wacom-gsd-wacom-device.o -MD -MP -MF $(DEPDIR)/list_wacom-gsd-wacom-device.Tpo -c -o list_wacom-gsd-wacom-device.o `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/list_wacom-gsd-wacom-device.Tpo $(DEPDIR)/list_wacom-gsd-wacom-device.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-device.c' object='list_wacom-gsd-wacom-device.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-device.c' object='list_wacom-gsd-wacom-device.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-gsd-wacom-device.o `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-gsd-wacom-device.o `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c list_wacom-gsd-wacom-device.obj: gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -MT list_wacom-gsd-wacom-device.obj -MD -MP -MF $(DEPDIR)/list_wacom-gsd-wacom-device.Tpo -c -o list_wacom-gsd-wacom-device.obj `if test -f 'gsd-wacom-device.c'; then $(CYGPATH_W) 'gsd-wacom-device.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-device.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/list_wacom-gsd-wacom-device.Tpo $(DEPDIR)/list_wacom-gsd-wacom-device.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-device.c' object='list_wacom-gsd-wacom-device.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-device.c' object='list_wacom-gsd-wacom-device.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-gsd-wacom-device.obj `if test -f 'gsd-wacom-device.c'; then $(CYGPATH_W) 'gsd-wacom-device.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-device.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(list_wacom_CPPFLAGS) $(CPPFLAGS) $(list_wacom_CFLAGS) $(CFLAGS) -c -o list_wacom-gsd-wacom-device.obj `if test -f 'gsd-wacom-device.c'; then $(CYGPATH_W) 'gsd-wacom-device.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-device.c'; fi` test_wacom-test-wacom.o: test-wacom.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -MT test_wacom-test-wacom.o -MD -MP -MF $(DEPDIR)/test_wacom-test-wacom.Tpo -c -o test_wacom-test-wacom.o `test -f 'test-wacom.c' || echo '$(srcdir)/'`test-wacom.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_wacom-test-wacom.Tpo $(DEPDIR)/test_wacom-test-wacom.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-wacom.c' object='test_wacom-test-wacom.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-wacom.c' object='test_wacom-test-wacom.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-test-wacom.o `test -f 'test-wacom.c' || echo '$(srcdir)/'`test-wacom.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-test-wacom.o `test -f 'test-wacom.c' || echo '$(srcdir)/'`test-wacom.c test_wacom-test-wacom.obj: test-wacom.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -MT test_wacom-test-wacom.obj -MD -MP -MF $(DEPDIR)/test_wacom-test-wacom.Tpo -c -o test_wacom-test-wacom.obj `if test -f 'test-wacom.c'; then $(CYGPATH_W) 'test-wacom.c'; else $(CYGPATH_W) '$(srcdir)/test-wacom.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_wacom-test-wacom.Tpo $(DEPDIR)/test_wacom-test-wacom.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-wacom.c' object='test_wacom-test-wacom.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-wacom.c' object='test_wacom-test-wacom.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-test-wacom.obj `if test -f 'test-wacom.c'; then $(CYGPATH_W) 'test-wacom.c'; else $(CYGPATH_W) '$(srcdir)/test-wacom.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-test-wacom.obj `if test -f 'test-wacom.c'; then $(CYGPATH_W) 'test-wacom.c'; else $(CYGPATH_W) '$(srcdir)/test-wacom.c'; fi` test_wacom-gsd-wacom-manager.o: gsd-wacom-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -MT test_wacom-gsd-wacom-manager.o -MD -MP -MF $(DEPDIR)/test_wacom-gsd-wacom-manager.Tpo -c -o test_wacom-gsd-wacom-manager.o `test -f 'gsd-wacom-manager.c' || echo '$(srcdir)/'`gsd-wacom-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_wacom-gsd-wacom-manager.Tpo $(DEPDIR)/test_wacom-gsd-wacom-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-manager.c' object='test_wacom-gsd-wacom-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-manager.c' object='test_wacom-gsd-wacom-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-manager.o `test -f 'gsd-wacom-manager.c' || echo '$(srcdir)/'`gsd-wacom-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-manager.o `test -f 'gsd-wacom-manager.c' || echo '$(srcdir)/'`gsd-wacom-manager.c test_wacom-gsd-wacom-manager.obj: gsd-wacom-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -MT test_wacom-gsd-wacom-manager.obj -MD -MP -MF $(DEPDIR)/test_wacom-gsd-wacom-manager.Tpo -c -o test_wacom-gsd-wacom-manager.obj `if test -f 'gsd-wacom-manager.c'; then $(CYGPATH_W) 'gsd-wacom-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_wacom-gsd-wacom-manager.Tpo $(DEPDIR)/test_wacom-gsd-wacom-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-manager.c' object='test_wacom-gsd-wacom-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-manager.c' object='test_wacom-gsd-wacom-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-manager.obj `if test -f 'gsd-wacom-manager.c'; then $(CYGPATH_W) 'gsd-wacom-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-manager.obj `if test -f 'gsd-wacom-manager.c'; then $(CYGPATH_W) 'gsd-wacom-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-manager.c'; fi` test_wacom-gsd-wacom-device.o: gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -MT test_wacom-gsd-wacom-device.o -MD -MP -MF $(DEPDIR)/test_wacom-gsd-wacom-device.Tpo -c -o test_wacom-gsd-wacom-device.o `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_wacom-gsd-wacom-device.Tpo $(DEPDIR)/test_wacom-gsd-wacom-device.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-device.c' object='test_wacom-gsd-wacom-device.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-device.c' object='test_wacom-gsd-wacom-device.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-device.o `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-device.o `test -f 'gsd-wacom-device.c' || echo '$(srcdir)/'`gsd-wacom-device.c test_wacom-gsd-wacom-device.obj: gsd-wacom-device.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -MT test_wacom-gsd-wacom-device.obj -MD -MP -MF $(DEPDIR)/test_wacom-gsd-wacom-device.Tpo -c -o test_wacom-gsd-wacom-device.obj `if test -f 'gsd-wacom-device.c'; then $(CYGPATH_W) 'gsd-wacom-device.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-device.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_wacom-gsd-wacom-device.Tpo $(DEPDIR)/test_wacom-gsd-wacom-device.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-wacom-device.c' object='test_wacom-gsd-wacom-device.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-wacom-device.c' object='test_wacom-gsd-wacom-device.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-device.obj `if test -f 'gsd-wacom-device.c'; then $(CYGPATH_W) 'gsd-wacom-device.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-device.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_wacom_CPPFLAGS) $(CPPFLAGS) $(test_wacom_CFLAGS) $(CFLAGS) -c -o test_wacom-gsd-wacom-device.obj `if test -f 'gsd-wacom-device.c'; then $(CYGPATH_W) 'gsd-wacom-device.c'; else $(CYGPATH_W) '$(srcdir)/gsd-wacom-device.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -779,7 +785,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files install-polkit_policyDATA: $(polkit_policy_DATA) @$(NORMAL_INSTALL) test -z "$(polkit_policydir)" || $(MKDIR_P) "$(DESTDIR)$(polkit_policydir)" @@ -797,7 +805,9 @@ @$(NORMAL_UNINSTALL) @list='$(polkit_policy_DATA)'; test -n "$(polkit_policydir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(polkit_policydir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(polkit_policydir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(polkit_policydir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -898,15 +908,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/xrandr/gsd-xrandr-manager.c gnome-settings-daemon-3.4.1/plugins/xrandr/gsd-xrandr-manager.c --- gnome-settings-daemon-3.4.0/plugins/xrandr/gsd-xrandr-manager.c 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/xrandr/gsd-xrandr-manager.c 2012-04-12 09:54:14.000000000 +0000 @@ -2026,6 +2026,7 @@ } if (manager->priv->upower_client != NULL) { + g_signal_handlers_disconnect_by_data (manager->priv->upower_client, manager); g_object_unref (manager->priv->upower_client); manager->priv->upower_client = NULL; } diff -Nru gnome-settings-daemon-3.4.0/plugins/xrandr/Makefile.in gnome-settings-daemon-3.4.1/plugins/xrandr/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/xrandr/Makefile.in 2012-03-26 16:16:50.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/xrandr/Makefile.in 2012-04-16 12:37:19.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -67,12 +67,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -83,8 +77,8 @@ am_libxrandr_la_OBJECTS = libxrandr_la-gsd-xrandr-plugin.lo \ libxrandr_la-gsd-xrandr-manager.lo libxrandr_la_OBJECTS = $(am_libxrandr_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libxrandr_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libxrandr_la_CFLAGS) \ @@ -99,21 +93,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libxrandr_la_SOURCES) DIST_SOURCES = $(libxrandr_la_SOURCES) @@ -199,10 +193,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -310,8 +300,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -447,7 +435,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libxrandr.la: $(libxrandr_la_OBJECTS) $(libxrandr_la_DEPENDENCIES) $(EXTRA_libxrandr_la_DEPENDENCIES) +libxrandr.la: $(libxrandr_la_OBJECTS) $(libxrandr_la_DEPENDENCIES) $(AM_V_CCLD)$(libxrandr_la_LINK) -rpath $(plugindir) $(libxrandr_la_OBJECTS) $(libxrandr_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -462,37 +450,42 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libxrandr_la-gsd-xrandr-plugin.lo: gsd-xrandr-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxrandr_la_CPPFLAGS) $(CPPFLAGS) $(libxrandr_la_CFLAGS) $(CFLAGS) -MT libxrandr_la-gsd-xrandr-plugin.lo -MD -MP -MF $(DEPDIR)/libxrandr_la-gsd-xrandr-plugin.Tpo -c -o libxrandr_la-gsd-xrandr-plugin.lo `test -f 'gsd-xrandr-plugin.c' || echo '$(srcdir)/'`gsd-xrandr-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxrandr_la-gsd-xrandr-plugin.Tpo $(DEPDIR)/libxrandr_la-gsd-xrandr-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xrandr-plugin.c' object='libxrandr_la-gsd-xrandr-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xrandr-plugin.c' object='libxrandr_la-gsd-xrandr-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxrandr_la_CPPFLAGS) $(CPPFLAGS) $(libxrandr_la_CFLAGS) $(CFLAGS) -c -o libxrandr_la-gsd-xrandr-plugin.lo `test -f 'gsd-xrandr-plugin.c' || echo '$(srcdir)/'`gsd-xrandr-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxrandr_la_CPPFLAGS) $(CPPFLAGS) $(libxrandr_la_CFLAGS) $(CFLAGS) -c -o libxrandr_la-gsd-xrandr-plugin.lo `test -f 'gsd-xrandr-plugin.c' || echo '$(srcdir)/'`gsd-xrandr-plugin.c libxrandr_la-gsd-xrandr-manager.lo: gsd-xrandr-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxrandr_la_CPPFLAGS) $(CPPFLAGS) $(libxrandr_la_CFLAGS) $(CFLAGS) -MT libxrandr_la-gsd-xrandr-manager.lo -MD -MP -MF $(DEPDIR)/libxrandr_la-gsd-xrandr-manager.Tpo -c -o libxrandr_la-gsd-xrandr-manager.lo `test -f 'gsd-xrandr-manager.c' || echo '$(srcdir)/'`gsd-xrandr-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxrandr_la-gsd-xrandr-manager.Tpo $(DEPDIR)/libxrandr_la-gsd-xrandr-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xrandr-manager.c' object='libxrandr_la-gsd-xrandr-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xrandr-manager.c' object='libxrandr_la-gsd-xrandr-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxrandr_la_CPPFLAGS) $(CPPFLAGS) $(libxrandr_la_CFLAGS) $(CFLAGS) -c -o libxrandr_la-gsd-xrandr-manager.lo `test -f 'gsd-xrandr-manager.c' || echo '$(srcdir)/'`gsd-xrandr-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxrandr_la_CPPFLAGS) $(CPPFLAGS) $(libxrandr_la_CFLAGS) $(CFLAGS) -c -o libxrandr_la-gsd-xrandr-manager.lo `test -f 'gsd-xrandr-manager.c' || echo '$(srcdir)/'`gsd-xrandr-manager.c mostlyclean-libtool: -rm -f *.lo @@ -516,7 +509,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -617,15 +612,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/plugins/xsettings/Makefile.in gnome-settings-daemon-3.4.1/plugins/xsettings/Makefile.in --- gnome-settings-daemon-3.4.0/plugins/xsettings/Makefile.in 2012-03-26 16:16:51.000000000 +0000 +++ gnome-settings-daemon-3.4.1/plugins/xsettings/Makefile.in 2012-04-16 12:37:19.000000000 +0000 @@ -1,9 +1,9 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. @@ -69,12 +69,6 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } am__installdirs = "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(plugindir)" LTLIBRARIES = $(plugin_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -90,8 +84,8 @@ libxsettings_la-xsettings-manager.lo \ libxsettings_la-fontconfig-monitor.lo $(am__objects_1) libxsettings_la_OBJECTS = $(am_libxsettings_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent libxsettings_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -134,21 +128,21 @@ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libxsettings_la_SOURCES) $(test_gtk_modules_SOURCES) \ $(test_xsettings_SOURCES) @@ -236,10 +230,6 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ -INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ -INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ -INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ KEYBOARD_CFLAGS = @KEYBOARD_CFLAGS@ KEYBOARD_LIBS = @KEYBOARD_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ @@ -347,8 +337,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ -intltool__v_merge_options_ = @intltool__v_merge_options_@ -intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ @@ -533,7 +521,7 @@ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -libxsettings.la: $(libxsettings_la_OBJECTS) $(libxsettings_la_DEPENDENCIES) $(EXTRA_libxsettings_la_DEPENDENCIES) +libxsettings.la: $(libxsettings_la_OBJECTS) $(libxsettings_la_DEPENDENCIES) $(AM_V_CCLD)$(libxsettings_la_LINK) -rpath $(plugindir) $(libxsettings_la_OBJECTS) $(libxsettings_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @@ -544,10 +532,10 @@ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -test-gtk-modules$(EXEEXT): $(test_gtk_modules_OBJECTS) $(test_gtk_modules_DEPENDENCIES) $(EXTRA_test_gtk_modules_DEPENDENCIES) +test-gtk-modules$(EXEEXT): $(test_gtk_modules_OBJECTS) $(test_gtk_modules_DEPENDENCIES) @rm -f test-gtk-modules$(EXEEXT) $(AM_V_CCLD)$(test_gtk_modules_LINK) $(test_gtk_modules_OBJECTS) $(test_gtk_modules_LDADD) $(LIBS) -test-xsettings$(EXEEXT): $(test_xsettings_OBJECTS) $(test_xsettings_DEPENDENCIES) $(EXTRA_test_xsettings_DEPENDENCIES) +test-xsettings$(EXEEXT): $(test_xsettings_OBJECTS) $(test_xsettings_DEPENDENCIES) @rm -f test-xsettings$(EXEEXT) $(AM_V_CCLD)$(test_xsettings_LINK) $(test_xsettings_OBJECTS) $(test_xsettings_LDADD) $(LIBS) @@ -575,177 +563,202 @@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libxsettings_la-gsd-xsettings-plugin.lo: gsd-xsettings-plugin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -MT libxsettings_la-gsd-xsettings-plugin.lo -MD -MP -MF $(DEPDIR)/libxsettings_la-gsd-xsettings-plugin.Tpo -c -o libxsettings_la-gsd-xsettings-plugin.lo `test -f 'gsd-xsettings-plugin.c' || echo '$(srcdir)/'`gsd-xsettings-plugin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxsettings_la-gsd-xsettings-plugin.Tpo $(DEPDIR)/libxsettings_la-gsd-xsettings-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-plugin.c' object='libxsettings_la-gsd-xsettings-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-plugin.c' object='libxsettings_la-gsd-xsettings-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-gsd-xsettings-plugin.lo `test -f 'gsd-xsettings-plugin.c' || echo '$(srcdir)/'`gsd-xsettings-plugin.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-gsd-xsettings-plugin.lo `test -f 'gsd-xsettings-plugin.c' || echo '$(srcdir)/'`gsd-xsettings-plugin.c libxsettings_la-gsd-xsettings-manager.lo: gsd-xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -MT libxsettings_la-gsd-xsettings-manager.lo -MD -MP -MF $(DEPDIR)/libxsettings_la-gsd-xsettings-manager.Tpo -c -o libxsettings_la-gsd-xsettings-manager.lo `test -f 'gsd-xsettings-manager.c' || echo '$(srcdir)/'`gsd-xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxsettings_la-gsd-xsettings-manager.Tpo $(DEPDIR)/libxsettings_la-gsd-xsettings-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-manager.c' object='libxsettings_la-gsd-xsettings-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-manager.c' object='libxsettings_la-gsd-xsettings-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-gsd-xsettings-manager.lo `test -f 'gsd-xsettings-manager.c' || echo '$(srcdir)/'`gsd-xsettings-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-gsd-xsettings-manager.lo `test -f 'gsd-xsettings-manager.c' || echo '$(srcdir)/'`gsd-xsettings-manager.c libxsettings_la-gsd-xsettings-gtk.lo: gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -MT libxsettings_la-gsd-xsettings-gtk.lo -MD -MP -MF $(DEPDIR)/libxsettings_la-gsd-xsettings-gtk.Tpo -c -o libxsettings_la-gsd-xsettings-gtk.lo `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxsettings_la-gsd-xsettings-gtk.Tpo $(DEPDIR)/libxsettings_la-gsd-xsettings-gtk.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-gtk.c' object='libxsettings_la-gsd-xsettings-gtk.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-gtk.c' object='libxsettings_la-gsd-xsettings-gtk.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-gsd-xsettings-gtk.lo `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-gsd-xsettings-gtk.lo `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c libxsettings_la-xsettings-common.lo: xsettings-common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -MT libxsettings_la-xsettings-common.lo -MD -MP -MF $(DEPDIR)/libxsettings_la-xsettings-common.Tpo -c -o libxsettings_la-xsettings-common.lo `test -f 'xsettings-common.c' || echo '$(srcdir)/'`xsettings-common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxsettings_la-xsettings-common.Tpo $(DEPDIR)/libxsettings_la-xsettings-common.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsettings-common.c' object='libxsettings_la-xsettings-common.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xsettings-common.c' object='libxsettings_la-xsettings-common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-xsettings-common.lo `test -f 'xsettings-common.c' || echo '$(srcdir)/'`xsettings-common.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-xsettings-common.lo `test -f 'xsettings-common.c' || echo '$(srcdir)/'`xsettings-common.c libxsettings_la-xsettings-manager.lo: xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -MT libxsettings_la-xsettings-manager.lo -MD -MP -MF $(DEPDIR)/libxsettings_la-xsettings-manager.Tpo -c -o libxsettings_la-xsettings-manager.lo `test -f 'xsettings-manager.c' || echo '$(srcdir)/'`xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxsettings_la-xsettings-manager.Tpo $(DEPDIR)/libxsettings_la-xsettings-manager.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsettings-manager.c' object='libxsettings_la-xsettings-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xsettings-manager.c' object='libxsettings_la-xsettings-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-xsettings-manager.lo `test -f 'xsettings-manager.c' || echo '$(srcdir)/'`xsettings-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-xsettings-manager.lo `test -f 'xsettings-manager.c' || echo '$(srcdir)/'`xsettings-manager.c libxsettings_la-fontconfig-monitor.lo: fontconfig-monitor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -MT libxsettings_la-fontconfig-monitor.lo -MD -MP -MF $(DEPDIR)/libxsettings_la-fontconfig-monitor.Tpo -c -o libxsettings_la-fontconfig-monitor.lo `test -f 'fontconfig-monitor.c' || echo '$(srcdir)/'`fontconfig-monitor.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libxsettings_la-fontconfig-monitor.Tpo $(DEPDIR)/libxsettings_la-fontconfig-monitor.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fontconfig-monitor.c' object='libxsettings_la-fontconfig-monitor.lo' libtool=yes @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fontconfig-monitor.c' object='libxsettings_la-fontconfig-monitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-fontconfig-monitor.lo `test -f 'fontconfig-monitor.c' || echo '$(srcdir)/'`fontconfig-monitor.c +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libxsettings_la_CPPFLAGS) $(CPPFLAGS) $(libxsettings_la_CFLAGS) $(CFLAGS) -c -o libxsettings_la-fontconfig-monitor.lo `test -f 'fontconfig-monitor.c' || echo '$(srcdir)/'`fontconfig-monitor.c test_gtk_modules-gsd-xsettings-gtk.o: gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -MT test_gtk_modules-gsd-xsettings-gtk.o -MD -MP -MF $(DEPDIR)/test_gtk_modules-gsd-xsettings-gtk.Tpo -c -o test_gtk_modules-gsd-xsettings-gtk.o `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_modules-gsd-xsettings-gtk.Tpo $(DEPDIR)/test_gtk_modules-gsd-xsettings-gtk.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-gtk.c' object='test_gtk_modules-gsd-xsettings-gtk.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-gtk.c' object='test_gtk_modules-gsd-xsettings-gtk.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-gsd-xsettings-gtk.o `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-gsd-xsettings-gtk.o `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c test_gtk_modules-gsd-xsettings-gtk.obj: gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -MT test_gtk_modules-gsd-xsettings-gtk.obj -MD -MP -MF $(DEPDIR)/test_gtk_modules-gsd-xsettings-gtk.Tpo -c -o test_gtk_modules-gsd-xsettings-gtk.obj `if test -f 'gsd-xsettings-gtk.c'; then $(CYGPATH_W) 'gsd-xsettings-gtk.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-gtk.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_modules-gsd-xsettings-gtk.Tpo $(DEPDIR)/test_gtk_modules-gsd-xsettings-gtk.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-gtk.c' object='test_gtk_modules-gsd-xsettings-gtk.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-gtk.c' object='test_gtk_modules-gsd-xsettings-gtk.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-gsd-xsettings-gtk.obj `if test -f 'gsd-xsettings-gtk.c'; then $(CYGPATH_W) 'gsd-xsettings-gtk.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-gtk.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-gsd-xsettings-gtk.obj `if test -f 'gsd-xsettings-gtk.c'; then $(CYGPATH_W) 'gsd-xsettings-gtk.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-gtk.c'; fi` test_gtk_modules-test-gtk-modules.o: test-gtk-modules.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -MT test_gtk_modules-test-gtk-modules.o -MD -MP -MF $(DEPDIR)/test_gtk_modules-test-gtk-modules.Tpo -c -o test_gtk_modules-test-gtk-modules.o `test -f 'test-gtk-modules.c' || echo '$(srcdir)/'`test-gtk-modules.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_modules-test-gtk-modules.Tpo $(DEPDIR)/test_gtk_modules-test-gtk-modules.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-modules.c' object='test_gtk_modules-test-gtk-modules.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-modules.c' object='test_gtk_modules-test-gtk-modules.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-test-gtk-modules.o `test -f 'test-gtk-modules.c' || echo '$(srcdir)/'`test-gtk-modules.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-test-gtk-modules.o `test -f 'test-gtk-modules.c' || echo '$(srcdir)/'`test-gtk-modules.c test_gtk_modules-test-gtk-modules.obj: test-gtk-modules.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -MT test_gtk_modules-test-gtk-modules.obj -MD -MP -MF $(DEPDIR)/test_gtk_modules-test-gtk-modules.Tpo -c -o test_gtk_modules-test-gtk-modules.obj `if test -f 'test-gtk-modules.c'; then $(CYGPATH_W) 'test-gtk-modules.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-modules.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_modules-test-gtk-modules.Tpo $(DEPDIR)/test_gtk_modules-test-gtk-modules.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-modules.c' object='test_gtk_modules-test-gtk-modules.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-modules.c' object='test_gtk_modules-test-gtk-modules.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-test-gtk-modules.obj `if test -f 'test-gtk-modules.c'; then $(CYGPATH_W) 'test-gtk-modules.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-modules.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_gtk_modules_CPPFLAGS) $(CPPFLAGS) $(test_gtk_modules_CFLAGS) $(CFLAGS) -c -o test_gtk_modules-test-gtk-modules.obj `if test -f 'test-gtk-modules.c'; then $(CYGPATH_W) 'test-gtk-modules.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-modules.c'; fi` test_xsettings-gsd-xsettings-gtk.o: gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-gsd-xsettings-gtk.o -MD -MP -MF $(DEPDIR)/test_xsettings-gsd-xsettings-gtk.Tpo -c -o test_xsettings-gsd-xsettings-gtk.o `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-gsd-xsettings-gtk.Tpo $(DEPDIR)/test_xsettings-gsd-xsettings-gtk.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-gtk.c' object='test_xsettings-gsd-xsettings-gtk.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-gtk.c' object='test_xsettings-gsd-xsettings-gtk.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-gtk.o `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-gtk.o `test -f 'gsd-xsettings-gtk.c' || echo '$(srcdir)/'`gsd-xsettings-gtk.c test_xsettings-gsd-xsettings-gtk.obj: gsd-xsettings-gtk.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-gsd-xsettings-gtk.obj -MD -MP -MF $(DEPDIR)/test_xsettings-gsd-xsettings-gtk.Tpo -c -o test_xsettings-gsd-xsettings-gtk.obj `if test -f 'gsd-xsettings-gtk.c'; then $(CYGPATH_W) 'gsd-xsettings-gtk.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-gtk.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-gsd-xsettings-gtk.Tpo $(DEPDIR)/test_xsettings-gsd-xsettings-gtk.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-gtk.c' object='test_xsettings-gsd-xsettings-gtk.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-gtk.c' object='test_xsettings-gsd-xsettings-gtk.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-gtk.obj `if test -f 'gsd-xsettings-gtk.c'; then $(CYGPATH_W) 'gsd-xsettings-gtk.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-gtk.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-gtk.obj `if test -f 'gsd-xsettings-gtk.c'; then $(CYGPATH_W) 'gsd-xsettings-gtk.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-gtk.c'; fi` test_xsettings-gsd-xsettings-manager.o: gsd-xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-gsd-xsettings-manager.o -MD -MP -MF $(DEPDIR)/test_xsettings-gsd-xsettings-manager.Tpo -c -o test_xsettings-gsd-xsettings-manager.o `test -f 'gsd-xsettings-manager.c' || echo '$(srcdir)/'`gsd-xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-gsd-xsettings-manager.Tpo $(DEPDIR)/test_xsettings-gsd-xsettings-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-manager.c' object='test_xsettings-gsd-xsettings-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-manager.c' object='test_xsettings-gsd-xsettings-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-manager.o `test -f 'gsd-xsettings-manager.c' || echo '$(srcdir)/'`gsd-xsettings-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-manager.o `test -f 'gsd-xsettings-manager.c' || echo '$(srcdir)/'`gsd-xsettings-manager.c test_xsettings-gsd-xsettings-manager.obj: gsd-xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-gsd-xsettings-manager.obj -MD -MP -MF $(DEPDIR)/test_xsettings-gsd-xsettings-manager.Tpo -c -o test_xsettings-gsd-xsettings-manager.obj `if test -f 'gsd-xsettings-manager.c'; then $(CYGPATH_W) 'gsd-xsettings-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-gsd-xsettings-manager.Tpo $(DEPDIR)/test_xsettings-gsd-xsettings-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsd-xsettings-manager.c' object='test_xsettings-gsd-xsettings-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gsd-xsettings-manager.c' object='test_xsettings-gsd-xsettings-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-manager.obj `if test -f 'gsd-xsettings-manager.c'; then $(CYGPATH_W) 'gsd-xsettings-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-gsd-xsettings-manager.obj `if test -f 'gsd-xsettings-manager.c'; then $(CYGPATH_W) 'gsd-xsettings-manager.c'; else $(CYGPATH_W) '$(srcdir)/gsd-xsettings-manager.c'; fi` test_xsettings-xsettings-common.o: xsettings-common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-xsettings-common.o -MD -MP -MF $(DEPDIR)/test_xsettings-xsettings-common.Tpo -c -o test_xsettings-xsettings-common.o `test -f 'xsettings-common.c' || echo '$(srcdir)/'`xsettings-common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-xsettings-common.Tpo $(DEPDIR)/test_xsettings-xsettings-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsettings-common.c' object='test_xsettings-xsettings-common.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xsettings-common.c' object='test_xsettings-xsettings-common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-common.o `test -f 'xsettings-common.c' || echo '$(srcdir)/'`xsettings-common.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-common.o `test -f 'xsettings-common.c' || echo '$(srcdir)/'`xsettings-common.c test_xsettings-xsettings-common.obj: xsettings-common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-xsettings-common.obj -MD -MP -MF $(DEPDIR)/test_xsettings-xsettings-common.Tpo -c -o test_xsettings-xsettings-common.obj `if test -f 'xsettings-common.c'; then $(CYGPATH_W) 'xsettings-common.c'; else $(CYGPATH_W) '$(srcdir)/xsettings-common.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-xsettings-common.Tpo $(DEPDIR)/test_xsettings-xsettings-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsettings-common.c' object='test_xsettings-xsettings-common.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xsettings-common.c' object='test_xsettings-xsettings-common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-common.obj `if test -f 'xsettings-common.c'; then $(CYGPATH_W) 'xsettings-common.c'; else $(CYGPATH_W) '$(srcdir)/xsettings-common.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-common.obj `if test -f 'xsettings-common.c'; then $(CYGPATH_W) 'xsettings-common.c'; else $(CYGPATH_W) '$(srcdir)/xsettings-common.c'; fi` test_xsettings-xsettings-manager.o: xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-xsettings-manager.o -MD -MP -MF $(DEPDIR)/test_xsettings-xsettings-manager.Tpo -c -o test_xsettings-xsettings-manager.o `test -f 'xsettings-manager.c' || echo '$(srcdir)/'`xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-xsettings-manager.Tpo $(DEPDIR)/test_xsettings-xsettings-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsettings-manager.c' object='test_xsettings-xsettings-manager.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xsettings-manager.c' object='test_xsettings-xsettings-manager.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-manager.o `test -f 'xsettings-manager.c' || echo '$(srcdir)/'`xsettings-manager.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-manager.o `test -f 'xsettings-manager.c' || echo '$(srcdir)/'`xsettings-manager.c test_xsettings-xsettings-manager.obj: xsettings-manager.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-xsettings-manager.obj -MD -MP -MF $(DEPDIR)/test_xsettings-xsettings-manager.Tpo -c -o test_xsettings-xsettings-manager.obj `if test -f 'xsettings-manager.c'; then $(CYGPATH_W) 'xsettings-manager.c'; else $(CYGPATH_W) '$(srcdir)/xsettings-manager.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-xsettings-manager.Tpo $(DEPDIR)/test_xsettings-xsettings-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsettings-manager.c' object='test_xsettings-xsettings-manager.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xsettings-manager.c' object='test_xsettings-xsettings-manager.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-manager.obj `if test -f 'xsettings-manager.c'; then $(CYGPATH_W) 'xsettings-manager.c'; else $(CYGPATH_W) '$(srcdir)/xsettings-manager.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-xsettings-manager.obj `if test -f 'xsettings-manager.c'; then $(CYGPATH_W) 'xsettings-manager.c'; else $(CYGPATH_W) '$(srcdir)/xsettings-manager.c'; fi` test_xsettings-fontconfig-monitor.o: fontconfig-monitor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-fontconfig-monitor.o -MD -MP -MF $(DEPDIR)/test_xsettings-fontconfig-monitor.Tpo -c -o test_xsettings-fontconfig-monitor.o `test -f 'fontconfig-monitor.c' || echo '$(srcdir)/'`fontconfig-monitor.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-fontconfig-monitor.Tpo $(DEPDIR)/test_xsettings-fontconfig-monitor.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fontconfig-monitor.c' object='test_xsettings-fontconfig-monitor.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fontconfig-monitor.c' object='test_xsettings-fontconfig-monitor.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-fontconfig-monitor.o `test -f 'fontconfig-monitor.c' || echo '$(srcdir)/'`fontconfig-monitor.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-fontconfig-monitor.o `test -f 'fontconfig-monitor.c' || echo '$(srcdir)/'`fontconfig-monitor.c test_xsettings-fontconfig-monitor.obj: fontconfig-monitor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-fontconfig-monitor.obj -MD -MP -MF $(DEPDIR)/test_xsettings-fontconfig-monitor.Tpo -c -o test_xsettings-fontconfig-monitor.obj `if test -f 'fontconfig-monitor.c'; then $(CYGPATH_W) 'fontconfig-monitor.c'; else $(CYGPATH_W) '$(srcdir)/fontconfig-monitor.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-fontconfig-monitor.Tpo $(DEPDIR)/test_xsettings-fontconfig-monitor.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fontconfig-monitor.c' object='test_xsettings-fontconfig-monitor.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fontconfig-monitor.c' object='test_xsettings-fontconfig-monitor.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-fontconfig-monitor.obj `if test -f 'fontconfig-monitor.c'; then $(CYGPATH_W) 'fontconfig-monitor.c'; else $(CYGPATH_W) '$(srcdir)/fontconfig-monitor.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-fontconfig-monitor.obj `if test -f 'fontconfig-monitor.c'; then $(CYGPATH_W) 'fontconfig-monitor.c'; else $(CYGPATH_W) '$(srcdir)/fontconfig-monitor.c'; fi` test_xsettings-test-xsettings.o: test-xsettings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-test-xsettings.o -MD -MP -MF $(DEPDIR)/test_xsettings-test-xsettings.Tpo -c -o test_xsettings-test-xsettings.o `test -f 'test-xsettings.c' || echo '$(srcdir)/'`test-xsettings.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-test-xsettings.Tpo $(DEPDIR)/test_xsettings-test-xsettings.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-xsettings.c' object='test_xsettings-test-xsettings.o' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-xsettings.c' object='test_xsettings-test-xsettings.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-test-xsettings.o `test -f 'test-xsettings.c' || echo '$(srcdir)/'`test-xsettings.c +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-test-xsettings.o `test -f 'test-xsettings.c' || echo '$(srcdir)/'`test-xsettings.c test_xsettings-test-xsettings.obj: test-xsettings.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -MT test_xsettings-test-xsettings.obj -MD -MP -MF $(DEPDIR)/test_xsettings-test-xsettings.Tpo -c -o test_xsettings-test-xsettings.obj `if test -f 'test-xsettings.c'; then $(CYGPATH_W) 'test-xsettings.c'; else $(CYGPATH_W) '$(srcdir)/test-xsettings.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_xsettings-test-xsettings.Tpo $(DEPDIR)/test_xsettings-test-xsettings.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-xsettings.c' object='test_xsettings-test-xsettings.obj' libtool=no @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-xsettings.c' object='test_xsettings-test-xsettings.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-test-xsettings.obj `if test -f 'test-xsettings.c'; then $(CYGPATH_W) 'test-xsettings.c'; else $(CYGPATH_W) '$(srcdir)/test-xsettings.c'; fi` +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_xsettings_CPPFLAGS) $(CPPFLAGS) $(test_xsettings_CFLAGS) $(CFLAGS) -c -o test_xsettings-test-xsettings.obj `if test -f 'test-xsettings.c'; then $(CYGPATH_W) 'test-xsettings.c'; else $(CYGPATH_W) '$(srcdir)/test-xsettings.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -769,7 +782,9 @@ @$(NORMAL_UNINSTALL) @list='$(plugin_DATA)'; test -n "$(plugindir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(plugindir)'; $(am__uninstall_files_from_dir) + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(plugindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(plugindir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -870,15 +885,10 @@ installcheck: installcheck-am install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi + $(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: diff -Nru gnome-settings-daemon-3.4.0/po/ca.po gnome-settings-daemon-3.4.1/po/ca.po --- gnome-settings-daemon-3.4.0/po/ca.po 2012-03-19 08:22:36.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/ca.po 2012-04-12 09:54:14.000000000 +0000 @@ -7,19 +7,21 @@ # Xavier Conde Rueda , 2005 # Josep Puigdemont i CasamajĂł , 2005, 2006, 2007. # Joan Duran , 2008-2012. +# Jordi Serratosa , 2012. # msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-19 01:21+0100\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" +"settings-daemon&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2012-04-04 08:43+0000\n" "PO-Revision-Date: 2012-03-05 23:18+0100\n" "Last-Translator: Joan Duran \n" "Language-Team: Catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: ../data/gnome-settings-daemon.desktop.in.in.h:1 @@ -73,8 +75,8 @@ "\"edge-scrolling\", \"two-finger-scrolling\"." msgstr "" "Seleccioneu el mĂštode de desplaçament del ratolĂ­ tĂ ctil. Els valors admesos " -"sĂłn: «disabled» (inhabilitat), «edge-scrolling» (desplaçament a la vora) i " -"«two-finger-scrolling» (desplaçament amb dos dits)." +"sĂłn: «disabled» (inhabilitat), «edge-scrolling» (desplaçament a la vora) i «two-" +"finger-scrolling» (desplaçament amb dos dits)." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 msgid "Enable mouse clicks with touchpad" @@ -232,8 +234,8 @@ "Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " "'ccw' for 90 degree counterclockwise." msgstr "" -"Establiu-ho a «none» (cap), «cw» per 90 graus en sentit horari, «half» per " -"180 graus i «ccw» per 90 graus en sentit antihorari." +"Establiu-ho a «none» (cap), «cw» per 90 graus en sentit horari, «half» per 180 " +"graus i «ccw» per 90 graus en sentit antihorari." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 msgid "Wacom touch feature" @@ -815,7 +817,7 @@ msgstr "" "Si s'haurien d'utilitzar les notificacions basades en el temps. Si " "s'estableix a «false» (fals), llavors s'utilitzarĂ  el canvi de percentatge, " -"que pot solucionar un problema de l'ACPI de la BIOS." +"que pot solucionar un problema de l'ACPI del BIOS." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 msgid "If we should show the recalled battery warning for a broken battery" @@ -1151,8 +1153,8 @@ msgstr "" "El tipus de suavitzat que s'utilitzarĂ  per mostrar els tipus de lletra. Els " "valors possibles sĂłn: «none» (cap) per no aplicar cap suavitzat, " -"«grayscale» (escala de grisos) per a suavitzat d'escala de grisos estĂ ndard " -"i «RGBA» per a suavitzat de subpĂ­xel (nomĂ©s per a pantalles LCD)." +"«grayscale» (escala de grisos) per a suavitzat d'escala de grisos estĂ ndard i " +"«RGBA» per a suavitzat de subpĂ­xel (nomĂ©s per a pantalles LCD)." # FIXME #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 @@ -1166,9 +1168,9 @@ "\" for maximum hinting (may cause distortion of letter forms)." msgstr "" "El tipus de contorn que s'utilitzarĂ  per mostrar els tipus de lletra. Els " -"valors possibles sĂłn: «none» (cap) cap contorn, «slight» (lleu) contorn " -"petit, «medium» (mitjĂ ) contorn moderat i «full» (complet) mĂ xim contorn " -"(pot produir distorsiĂł en les formes de les lletres)." +"valors possibles sĂłn: «none» (cap) cap contorn, «slight» (lleu) contorn petit, " +"«medium» (mitjĂ ) contorn moderat i «full» (complet) mĂ xim contorn (pot produir " +"distorsiĂł en les formes de les lletres)." #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 msgid "RGBA order" @@ -1548,8 +1550,7 @@ #: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." -msgstr "" -"S'hauria de tornar a calibrar la impressora «%s» el mĂ©s aviat possible." +msgstr "S'hauria de tornar a calibrar la impressora «%s» el mĂ©s aviat possible." #. TRANSLATORS: this is the application name #: ../plugins/color/gsd-color-manager.c:2149 @@ -1560,12 +1561,12 @@ #. TRANSLATORS: this is a sound description #: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" -msgstr "S'ha afegit el dispositiu de calibraciĂł del color" +msgstr "S'ha afegit el dispositiu de calibratge del color" #. TRANSLATORS: this is a sound description #: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" -msgstr "S'ha suprimit el dispositiu de calibraciĂł del color" +msgstr "S'ha suprimit el dispositiu de calibratge del color" #: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 msgid "Dummy" @@ -2046,7 +2047,7 @@ #. TRANSLATORS: battery technology #: ../plugins/power/gpm-common.c:686 msgid "Nickel Cadmium" -msgstr "NĂ­quel i cĂ dmi" +msgstr "NĂ­quel i cadmi" #. TRANSLATORS: battery technology #: ../plugins/power/gpm-common.c:690 @@ -2121,7 +2122,7 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:809 msgid "UPS is empty" -msgstr "S'estĂ  descarregat el SAI" +msgstr "El SAI estĂ  descarregat" #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:813 @@ -2186,7 +2187,7 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:892 msgid "PDA is charged" -msgstr "La PDA estĂ  descarregada" +msgstr "La PDA estĂ  carregada" #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:904 @@ -2336,7 +2337,7 @@ #. TRANSLATORS: UPS is starting to get a little low #: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" -msgstr "SAI baixa" +msgstr "SAI baix" #. TRANSLATORS: tell the user how much time they have got #: ../plugins/power/gsd-power-manager.c:1359 @@ -2462,26 +2463,26 @@ #, c-format msgid "Computer will suspend very soon unless it is plugged in." msgstr "" -"L'ordinador s'aturarĂ  temporalment d'aquĂ­ poc a no ser que el connecteu." +"L'ordinador s'aturarĂ  temporalment d'aquĂ­ poc si no el connecteu." #. TRANSLATORS: give the user a ultimatum #: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." -msgstr "L'ordinador hibernarĂ  d'aquĂ­ poc a no ser que el connecteu." +msgstr "L'ordinador hibernarĂ  d'aquĂ­ poc si no el connecteu." #. TRANSLATORS: give the user a ultimatum #: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." -msgstr "L'ordinador s'aturarĂ  d'aquĂ­ poc a no ser que el connecteu." +msgstr "L'ordinador s'aturarĂ  d'aquĂ­ poc si no el connecteu." #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low #: ../plugins/power/gsd-power-manager.c:1519 #: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" -msgstr "SAI crĂ­ticament baixa" +msgstr "SAI crĂ­ticament baix" #. TRANSLATORS: give the user a ultimatum #: ../plugins/power/gsd-power-manager.c:1523 @@ -2616,15 +2617,15 @@ "UPS is below the critical level and this computer will power-off when " "the UPS becomes completely empty." msgstr "" -"La SAI estĂ  per sota del nivell crĂ­tic i l'ordinador s'apagarĂ  quan " -"la SAI estigui completament buida." +"El SAI estĂ  per sota del nivell crĂ­tic i l'ordinador s'apagarĂ  quan " +"el SAI estigui completament buit." #. TRANSLATORS: computer will hibernate #: ../plugins/power/gsd-power-manager.c:1725 msgid "" "UPS is below the critical level and this computer is about to hibernate." msgstr "" -"La SAI estĂ  per sota del nivell crĂ­tic i l'ordinador estĂ  a punt d'hibernar." +"El SAI estĂ  per sota del nivell crĂ­tic i l'ordinador estĂ  a punt d'hibernar." #. TRANSLATORS: computer will just shutdown #: ../plugins/power/gsd-power-manager.c:1730 @@ -2732,12 +2733,12 @@ #. Translators: "marker" is one color bin of the printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 msgid "Marker supply low" -msgstr "Nivell baix del subministra d'un marcador" +msgstr "Nivell baix del subministrament d'un marcador" #. Translators: "marker" is one color bin of the printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 msgid "Out of a marker supply" -msgstr "Sense subministra d'un marcador" +msgstr "Sense subministrament d'un marcador" #. Translators: At least one input tray is low on media (same as in system-config-printer) #: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 @@ -2801,13 +2802,13 @@ #: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 #, c-format msgid "Printer '%s' is low on a marker supply." -msgstr "La impressora «%s» tĂ© poc subministra en un marcador." +msgstr "La impressora «%s» tĂ© poc subministrament en un marcador." #. Translators: "marker" is one color bin of the printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 #, c-format msgid "Printer '%s' is out of a marker supply." -msgstr "La impressora «%s» no tĂ© subministra en un marcador." +msgstr "La impressora «%s» no tĂ© subministrament en un marcador." #. Translators: At least one input tray is low on media (same as in system-config-printer) #: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 @@ -3844,8 +3845,8 @@ #~ msgid "GConf key %s set to type %s but its expected type was %s\n" #~ msgstr "" -#~ "La clau GConf %s s'ha establert com de tipus %s, perĂČ s'esperava que fos " -#~ "%s\n" +#~ "La clau GConf %s s'ha establert com de tipus %s, perĂČ s'esperava que fos %" +#~ "s\n" #~ msgid "Configure hardware clock" #~ msgstr "Configura el rellotge del maquinari" @@ -3884,8 +3885,7 @@ #~ msgid "Set to True to run the screensaver at login." #~ msgstr "" -#~ "Establiu-lo a «True» (cert) per executar l'estalvi de pantalla a " -#~ "l'entrada." +#~ "Establiu-lo a «True» (cert) per executar l'estalvi de pantalla a l'entrada." #~ msgid "Show startup errors" #~ msgstr "Mostra els errors de l'inici" diff -Nru gnome-settings-daemon-3.4.0/po/ca@valencia.po gnome-settings-daemon-3.4.1/po/ca@valencia.po --- gnome-settings-daemon-3.4.0/po/ca@valencia.po 2012-03-19 08:22:36.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/ca@valencia.po 2012-04-16 12:34:35.000000000 +0000 @@ -7,12 +7,13 @@ # Xavier Conde Rueda , 2005 # Josep Puigdemont i CasamajĂł , 2005, 2006, 2007. # Joan Duran , 2008-2012. +# Jordi Serratosa , 2012. # msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-19 01:21+0100\n" +"POT-Creation-Date: 2012-04-11 00:20+0200\n" "PO-Revision-Date: 2012-03-05 23:18+0100\n" "Last-Translator: Joan Duran \n" "Language-Team: Catalan \n" @@ -815,7 +816,7 @@ msgstr "" "Si s'haurien d'utilitzar les notificacions basades en el temps. Si " "s'estableix a «false» (fals), llavors s'utilitzarĂ  el canvi de percentatge, " -"que pot solucionar un problema de l'ACPI de la BIOS." +"que pot solucionar un problema de l'ACPI del BIOS." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 msgid "If we should show the recalled battery warning for a broken battery" @@ -1561,12 +1562,12 @@ #. TRANSLATORS: this is a sound description #: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" -msgstr "S'ha afegit el dispositiu de calibraciĂł del color" +msgstr "S'ha afegit el dispositiu de calibratge del color" #. TRANSLATORS: this is a sound description #: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" -msgstr "S'ha suprimit el dispositiu de calibraciĂł del color" +msgstr "S'ha suprimit el dispositiu de calibratge del color" #: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 msgid "Dummy" @@ -2047,7 +2048,7 @@ #. TRANSLATORS: battery technology #: ../plugins/power/gpm-common.c:686 msgid "Nickel Cadmium" -msgstr "NĂ­quel i cĂ dmi" +msgstr "NĂ­quel i cadmi" #. TRANSLATORS: battery technology #: ../plugins/power/gpm-common.c:690 @@ -2122,7 +2123,7 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:809 msgid "UPS is empty" -msgstr "S'estĂ  descarregat el SAI" +msgstr "El SAI estĂ  descarregat" #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:813 @@ -2187,7 +2188,7 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:892 msgid "PDA is charged" -msgstr "La PDA estĂ  descarregada" +msgstr "La PDA estĂ  carregada" #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:904 @@ -2337,7 +2338,7 @@ #. TRANSLATORS: UPS is starting to get a little low #: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" -msgstr "SAI baixa" +msgstr "SAI baix" #. TRANSLATORS: tell the user how much time they have got #: ../plugins/power/gsd-power-manager.c:1359 @@ -2462,27 +2463,26 @@ #: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." -msgstr "" -"L'ordinador es pararĂ  temporalment d'acĂ­ poc a no ser que el connecteu." +msgstr "L'ordinador es pararĂ  temporalment d'acĂ­ poc si no el connecteu." #. TRANSLATORS: give the user a ultimatum #: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." -msgstr "L'ordinador hibernarĂ  d'acĂ­ poc a no ser que el connecteu." +msgstr "L'ordinador hibernarĂ  d'acĂ­ poc si no el connecteu." #. TRANSLATORS: give the user a ultimatum #: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." -msgstr "L'ordinador es pararĂ  d'acĂ­ poc a no ser que el connecteu." +msgstr "L'ordinador es pararĂ  d'acĂ­ poc si no el connecteu." #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low #: ../plugins/power/gsd-power-manager.c:1519 #: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" -msgstr "SAI crĂ­ticament baixa" +msgstr "SAI crĂ­ticament baix" #. TRANSLATORS: give the user a ultimatum #: ../plugins/power/gsd-power-manager.c:1523 @@ -2617,15 +2617,15 @@ "UPS is below the critical level and this computer will power-off when " "the UPS becomes completely empty." msgstr "" -"La SAI estĂ  per sota del nivell crĂ­tic i l'ordinador s'apagarĂ  quan " -"la SAI estiga completament buida." +"El SAI estĂ  per sota del nivell crĂ­tic i l'ordinador s'apagarĂ  quan " +"el SAI estiga completament buit." #. TRANSLATORS: computer will hibernate #: ../plugins/power/gsd-power-manager.c:1725 msgid "" "UPS is below the critical level and this computer is about to hibernate." msgstr "" -"La SAI estĂ  per sota del nivell crĂ­tic i l'ordinador estĂ  a punt d'hibernar." +"El SAI estĂ  per sota del nivell crĂ­tic i l'ordinador estĂ  a punt d'hibernar." #. TRANSLATORS: computer will just shutdown #: ../plugins/power/gsd-power-manager.c:1730 @@ -2733,12 +2733,12 @@ #. Translators: "marker" is one color bin of the printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 msgid "Marker supply low" -msgstr "Nivell baix del subministra d'un marcador" +msgstr "Nivell baix del subministrament d'un marcador" #. Translators: "marker" is one color bin of the printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 msgid "Out of a marker supply" -msgstr "Sense subministra d'un marcador" +msgstr "Sense subministrament d'un marcador" #. Translators: At least one input tray is low on media (same as in system-config-printer) #: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 @@ -2802,13 +2802,13 @@ #: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 #, c-format msgid "Printer '%s' is low on a marker supply." -msgstr "La impressora «%s» tĂ© poc subministra en un marcador." +msgstr "La impressora «%s» tĂ© poc subministrament en un marcador." #. Translators: "marker" is one color bin of the printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 #, c-format msgid "Printer '%s' is out of a marker supply." -msgstr "La impressora «%s» no tĂ© subministra en un marcador." +msgstr "La impressora «%s» no tĂ© subministrament en un marcador." #. Translators: At least one input tray is low on media (same as in system-config-printer) #: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 diff -Nru gnome-settings-daemon-3.4.0/po/crh.po gnome-settings-daemon-3.4.1/po/crh.po --- gnome-settings-daemon-3.4.0/po/crh.po 2011-02-16 18:39:20.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/crh.po 2012-04-16 12:34:43.000000000 +0000 @@ -1,63 +1,460 @@ # QIRIMTATARCA gnome-control-center. # Copyright (C) 2000-2010 Free Software Foundation, Inc. +# ReƟat SABIQ , 2010, 2011, 2012. # -# ReƟat SABIQ , 2010. msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-07 18:23-0500\n" -"PO-Revision-Date: 2010-04-07 18:23-0500\n" +"POT-Creation-Date: 2012-04-16 00:02-0500\n" +"PO-Revision-Date: 2012-04-15 23:40-0500\n" "Last-Translator: ReƟat SABIQ \n" -"Language-Team: QIRIMTATARCA (Qırım TĂŒrkçesi) \n" +"Language-Team: QIRIMTATARCA \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Content-Transfer-Encoding: UTF-8\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Launchpad-Export-Date: 2011-05-02 07:52+0000\n" +"X-Generator: Launchpad (build 12915)\n" -#: ../data/50-accessibility.xml.in.h:1 -msgid "Accessibility" -msgstr "Ä°riƟilebilirlik" +#: ../data/gnome-settings-daemon.desktop.in.in.h:1 +msgid "GNOME Settings Daemon" +msgstr "GNOME Ayarları Cını" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 +msgid "Command to be run when a device is added or removed." +msgstr "Bir aygıt eklendiğinde veya çıkartıldığında çalÄ±ĆŸtırılacak komut." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 +msgid "Device hotplug custom command" +msgstr "Cihaz takıldığında çalÄ±ĆŸtırılacak özelleƟtirilmiƟ komut" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 +msgid "Disable touchpad while typing" +msgstr "Yazarken touchpad'i devre dÄ±ĆŸÄ± bırak" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 +msgid "Distance before a drag is started." +msgstr "Bir sĂŒrĂŒkleme baƟlamadan önceki mesafe." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 +msgid "Double click time" +msgstr "Çift tıklama sĂŒresi" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 +msgid "Drag threshold" +msgstr "SĂŒrĂŒkleme eƟiği" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 +msgid "Enable horizontal scrolling" +msgstr "Yatay kaydırmayı etkinleƟtir" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 +msgid "Enable mouse clicks with touchpad" +msgstr "Touchpad ile fare tıklamasını etkinleƟtir" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 +msgid "Enable touchpad" +msgstr "TiyĂŒv-Ɵiltesini qabilleƟtir" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 +msgid "" +"Enables middle mouse button emulation through simultaneous left and right " +"button click." +msgstr "" +"Hızlı sol ve sağ tıklama ile orta tıklanmÄ±ĆŸ gibi davranmayı aktif hale " +"getirir" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 +msgid "" +"Highlights the current location of the pointer when the Control key is " +"pressed and released." +msgstr "Ctrl tuƟuna basılıp bırakıldığında imlecin yerini gösterir" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 +msgid "Length of a double click in milliseconds." +msgstr "Milisaniye cinsinden çift tıklama sĂŒresi." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 +msgid "Middle button emulation" +msgstr "Orta tık öykĂŒnĂŒmĂŒ" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 +msgid "Select the touchpad scroll method" +msgstr "Touchpad kaydırma yönetimini seçin" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:15 +msgid "" +"Select the touchpad scroll method. Supported values are: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "" +"Touchpad kaydırma yöntemini seçin. Desteklenen değerler: \"disabled" +"\" (kapalı), \"edge-scrolling\" (kenar kaydırması), \"two-finger-scrolling" +"\" (iki parmak kaydırması)." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:16 +msgid "" +"Set this to TRUE if you have problems with accidentally hitting the touchpad " +"while typing." +msgstr "" +"Eğer yazarken touchpad'e dokunma sorunu yaĆŸÄ±yorsanız bunu doğru olarak " +"atayın." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:17 +msgid "" +"Set this to TRUE to allow horizontal scrolling by the same method selected " +"with the scroll_method key." +msgstr "" +"Eğer scroll_method anahtarında seçili yöntemle aynı Ɵekilde yatay kaydırma " +"istiyorsanız bunu doğru olarak atayın." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 +msgid "" +"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." +msgstr "" +"Touchpad ĂŒzerine vurarak fare tıklamaları göndermek istiyorsanız bunu doğru " +"olarak atayın." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 +msgid "Set this to TRUE to enable all touchpads." +msgstr "" +"Hepsi tiyĂŒv-Ɵiltelerini qabilleƟtirmek iĂ§ĂŒn bunı DOĞRU olaraq tesbit etiñiz." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 +msgid "" +"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " +"action will get performed when the smartcard used for log in is removed." +msgstr "" +"Bunu \"hiçbiri\", \"ekranı kilitle\" veya \"çıkmaya zorla\" seçeneklerinden " +"birine ayarlayın. GiriƟ için kullanılan akıllı kart çıkartıldığında " +"seçtiğiniz eylem gerçekleƟecektir." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 +msgid "Smartcard removal action" +msgstr "Aqıllı-kartnı çetleƟtirĂŒv ameli" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 +msgid "Whether the tablet's orientation is locked, or rotated automatically." +msgstr "" +"Tablet yöneldiriminiñ kilitlimi, yoqsa öz-özĂŒnden aylandırılğanmı olğanı." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 +msgid "Activation of this plugin" +msgstr "Bu eklentinin aktifleƟtirilmesi" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 +msgid "" +"EDID information of monitor to map tablet to. Must be in the format [vendor, " +"product, serial]. [\"\",\"\",\"\"] disables mapping." +msgstr "" +"Tabletniñ haritalanacağı ekran EDID malĂŒmatı. [vendor, product, serial] " +"formatında olmalı. [\"\",\"\",\"\"] haritalamanı ğayrıqabilleƟtirir." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 +msgid "Enable this to move the cursor when the user touches the tablet." +msgstr "" +"Kullanıcı tablete dokunduğunda imleci hareket ettirmek için bunu " +"etkinleƟtirin." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 +msgid "Enable this to only report stylus events when the tip is pressed." +msgstr "" +"Stylus kalemin ucu ile dokunulduğunda, sadece stylus olaylarını bildirmek " +"için bunu etkinleƟtirin." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 +msgid "Enable this to set the tablet to absolute mode." +msgstr "Tabletni mutlaq tarzğa tesbit etmek iĂ§ĂŒn bunı qabilleƟtiriñiz." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 +msgid "Key combination for the custom action" +msgstr "Özel eylem için tuƟ birleƟimi" + +# tĂŒklĂŒ +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 +msgid "Key combinations for an elevator custom action" +msgstr "Bir köterici ƟahsiyleƟtirilgen ameli iĂ§ĂŒn tuƟ kombinatsiyaları" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 +msgid "Priority to use for this plugin" +msgstr "Bu eklenti için kullanım önceliği" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" +msgstr "" +"Bu eklentinin gnome ayarlar servisinin baƟlangıç kuyruğundaki kullanım " +"önceliği" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 +msgid "" +"Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " +"'ccw' for 90 degree counterclockwise." +msgstr "" +"Bunu 'hiçbiri', saat yönĂŒnde 90 derece için 'cw', 180 derece için 'half' ve " +"saat yönĂŒnĂŒn tersinde 90 derece için 'ccw' olarak iƟaretleyin." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 +msgid "Set this to the logical button mapping." +msgstr "Bunu mantıksal buton eƟleƟmesine girin." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 +msgid "" +"Set this to the pressure value at which a stylus click event is generated." +msgstr "" +"Bunu bir staylus tıklaması olayı oluƟturulması için gereken basınç değeri " +"olarak girin." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 +msgid "" +"Set this to the pressure value at which an eraser click event is generated." +msgstr "" +"Bunu bir silgi tıklaması olayı oluƟturulması için gereken basınç değeri " +"olarak girin." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 +msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." +msgstr "" +"Bunı aletler tarafından qullanılabilgen mıntaqanıñ x1, y1 ve x2, y2 " +"degerlerine tesbit etiñiz." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." +msgstr "" +"Bunu silgiye uygulanan basınç eğrisi manasında x1,y1 ve x2,y2 olarak girin." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." +msgstr "" +"Bunu stylusa uygulanan basınç eğrisi manasında x1,y1 ve x2,y2 olarak girin." + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 +msgid "" +"The keyboard shortcut generated when the button is pressed for custom " +"actions." +msgstr "Özel eylemler için tuƟa basıldığında oluƟturulan klavye kısa yolu." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 +msgid "" +"The keyboard shortcuts generated when a touchring or touchstrip is used for " +"custom actions (up followed by down)." +msgstr "" +"ƞahsiyleƟtirilgen ameller iĂ§ĂŒn bir tiyĂŒv alqası yaki tĂŒyiv Ɵeriti " +"qullanılğanda doğurılğan klavye qısqayolları (yuqarı mĂŒetaqiben aƟağı)." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 +msgid "The type of action triggered by the button being pressed." +msgstr "Dögmeniñ basılması tarafından tetiklengen amel tĂŒrĂŒ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 +msgid "Wacom button action type" +msgstr "Wacom dögme ameli tĂŒrĂŒ" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 +msgid "Wacom display mapping" +msgstr "Wacom kösterimi haritalaması" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 +msgid "Wacom eraser button mapping" +msgstr "Wacom silgi buton eƟleƟmesi" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 +msgid "Wacom eraser pressure curve" +msgstr "Wacom silgi basınç eğrisi" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 +msgid "Wacom eraser pressure threshold" +msgstr "Wacom silgi basınç eƟiği" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 +msgid "Wacom stylus absolute mode" +msgstr "Wacom göreli olmayan stylus modu" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 +msgid "Wacom stylus button mapping" +msgstr "Wacom stylus buton eƟleƟmesi" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 +msgid "Wacom stylus pressure curve" +msgstr "Wacom stylus basınç eğrisi" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 +msgid "Wacom stylus pressure threshold" +msgstr "Wacom stylus basınç eƟiği" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 +msgid "Wacom tablet PC feature" +msgstr "Wacom tablet PC özeliği" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 +msgid "Wacom tablet area" +msgstr "Wacom tablet alanı" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 +msgid "Wacom tablet rotation" +msgstr "Wacom tablet rotasyonu" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 +msgid "Wacom touch feature" +msgstr "Wacom dokunma özelliği" + +# tr +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 +msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgstr "" +"Bu eklentinin gnome ayarlar servisi tarafından aktifleƟtirilip " +"aktifleƟtirilmeyeceği" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 +msgid "The duration a display profile is valid" +msgstr "Bir görĂŒntĂŒ profilinin geçerli olacağı sĂŒre" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 +msgid "The duration a printer profile is valid" +msgstr "Bir yazıcı profilinin geçerli olacağı sĂŒre" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 +msgid "" +"This is the number of days after which the display color profile is " +"considered invalid." +msgstr "Renk görĂŒnĂŒm profili geçersiz sayıldıktan sonra kalan gĂŒn sayısı." + +# tr +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 +msgid "" +"This is the number of days after which the printer color profile is " +"considered invalid." +msgstr "Yazıcı renk profili geçersiz sayıldıktan sonra kalan gĂŒn sayısı." # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 msgid "Free percentage notify threshold" msgstr "BoƟ yĂŒzdesi bildirme eƟiği" # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:2 -msgid "Free space no notify threshold" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 +msgid "Free space notify threshold" msgstr "BoƟ alan bildirim eƟiği" # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 msgid "Minimum notify period for repeated warnings" msgstr "Tekrarlanan uyarılar için azami sĂŒre" # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 msgid "Mount paths to ignore" msgstr "Yok sayılacak bağlama yolları" # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 msgid "" "Percentage free space threshold for initial warning of low disk space. If " -"the percentage free space drops below this, a warning will be shown" +"the percentage free space drops below this, a warning will be shown." msgstr "" "Ä°lk dĂŒĆŸĂŒk disk alanı uyarısı boƟ alan yĂŒzdesi eƟiği. Eğer boƟ alan aƟağıdaki " -"yĂŒzdeden daha aƟağıya dĂŒĆŸerse, bir uyarı gösterilir" +"yĂŒzdeden daha aƟağıya dĂŒĆŸerse, bir uyarı gösterilir." # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 msgid "Specify a list of mount paths to ignore when they run low on space." msgstr "" "BoƟ alanı dĂŒĆŸĂŒk olduğunda gözardı edilecek bağlama yollarının listesini " "belirtin." # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 msgid "" "Specify a time in minutes. Subsequent warnings for a volume will not appear " "more often than this period." @@ -66,787 +463,933 @@ "bu dönemden daha sık gösterilmeyecek." # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 msgid "" "Specify an amount in GB. If the amount of free space is more than this, no " -"warning will be shown" +"warning will be shown." msgstr "" "Miktarı GB olarak belirtin. Eğer boƟ alan bu miktardan daha fazla ise, " -"hiçbir uyarı gösterilmeyecek" +"hiçbir uyarı gösterilmeyecek." # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 msgid "" "Specify the percentage that the free disk space should reduce by before " -"issuing a subsequent warning" +"issuing a subsequent warning." msgstr "" -"Bir sonraki uyarı öncesi boƟ alanın azaltılması gereken yĂŒzdeyi belirtin" +"Bir sonraki uyarı öncesi boƟ alanın azaltılması gereken yĂŒzdeyi belirtin." # tr -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:10 -msgid "Subsequent free percentage notify threshold" -msgstr "Ard arda boƟ yĂŒzdesi bildirim eƟiği" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 +msgid "Subsequent free space percentage notify threshold" +msgstr "ArdÄ±ĆŸÄ±k boş alan yüzdesi bildirim eşiği" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 +msgid "Binding" +msgstr "Bağlama" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 +msgid "Binding for the custom binding" +msgstr "Özel bağlama iĂ§ĂŒn bağlama" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 +msgid "Binding for the magnifier to zoom in" +msgstr "BĂŒyĂŒteçle yakınlaƟtırma bağlayıcısı" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 +msgid "Binding for the magnifier to zoom out" +msgstr "BĂŒyĂŒteçle uzaklaƟtırma bağlayıcısı" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:6 +msgid "Binding to copy a screenshot of a window to clipboard." +msgstr "Bir pencerenin ekran görĂŒntĂŒsĂŒnĂŒ panoya kopyalama bağlayıcısı." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:1 -msgid "Binding to eject an optical disk." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:7 +msgid "Binding to copy a screenshot of an area to clipboard." +msgstr "Bir alannın ekran görĂŒntĂŒsĂŒnĂŒ panoya kopyalama bağlayıcısı." + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:8 +msgid "Binding to copy a screenshot to clipboard." +msgstr "Bir ekran görĂŒntĂŒsĂŒnĂŒ panoya kopyalama bağlayıcısı." + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 +msgid "Binding to decrease the text size" +msgstr "Metin boyutunu kĂŒĂ§ĂŒltme bağlayıcısı" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:10 +msgid "Binding to eject an optical disc." msgstr "Bir optik diskin çıkartılması için bağ." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:2 -msgid "Binding to enable or disable the touchpad." -msgstr "TiyĂŒv-Ɵiltesini qabilleƟtirmek yaki ğayrı qabilleƟtirmek iĂ§ĂŒn bağlama." +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:11 +msgid "Binding to increase the text size" +msgstr "Metin boyutunu bĂŒyĂŒtme bağlayıcısı" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:12 msgid "Binding to launch the calculator." -msgstr "Esaplayıcını fırlatma bağlaması." +msgstr "Hesaplayıcını fırlatma bağlaması." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:13 msgid "Binding to launch the email client." msgstr "E-posta istemcisi baƟlatmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:14 msgid "Binding to launch the help browser." msgstr "Yardım tarayıcısı baƟlatmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:15 msgid "Binding to launch the media player." msgstr "Ortam yĂŒrĂŒtĂŒcĂŒsĂŒ baƟlatmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 msgid "Binding to launch the search tool." msgstr "Arama aracını baƟlatmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:17 msgid "Binding to launch the web browser." msgstr "Web tarayıcı baƟlatmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:18 msgid "Binding to lock the screen." msgstr "Ekranı kilitlemek için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:19 msgid "Binding to log out." msgstr "ÇıkÄ±ĆŸ için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:11 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:20 msgid "Binding to lower the system volume." msgstr "Sistem sesini azaltmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:12 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:21 msgid "Binding to mute the system volume." msgstr "Sistem sesini kesmek için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:22 msgid "Binding to open the Home folder." msgstr "BaƟlangıç klasörĂŒnĂŒ açmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:14 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:23 msgid "Binding to pause playback." msgstr "Ses çalmayı duraklatmak için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:15 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:24 msgid "Binding to raise the system volume." msgstr "Sistem sesini arttırmak için bağ." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:25 +msgid "Binding to show the on-screen keyboard" +msgstr "Ekran-ĂŒstĂŒ klavyeni köstermek iĂ§ĂŒn bağlama" + # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:16 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:26 +msgid "Binding to show the screen magnifier" +msgstr "Ekran bĂŒyĂŒtecini gösterme bağlayıcısı" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 msgid "Binding to skip to next track." msgstr "Sonraki parçaya geçmek için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:17 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 msgid "Binding to skip to previous track." msgstr "Önceki parçaya geçmek için bağ." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:18 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:29 msgid "Binding to start playback (or toggle play/pause)." msgstr "Çaldırmayı baƟlatmak için bağ (ya da çaldırma/duraklatma geçisi)." # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:19 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:30 +msgid "Binding to start the screen reader" +msgstr "Ekran okuyucusunu baƟlatma bağlayıcısı" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:31 msgid "Binding to stop playback." msgstr "Çaldırmayı durdurmak için bağ." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:20 +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:32 +msgid "Binding to take a screenshot of a window." +msgstr "Bir pencerenin ekran görĂŒntĂŒsĂŒnĂŒ alma bağlayıcısı." + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:33 +msgid "Binding to take a screenshot of an area." +msgstr "Bir bölgenin ekran görĂŒntĂŒsĂŒnĂŒ alma bağlayıcısı." + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:34 +msgid "Binding to take a screenshot." +msgstr "Ekran görĂŒntĂŒsĂŒ bağlayıcısı." + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:35 +msgid "Binding to toggle the interface contrast" +msgstr "ArayĂŒz karĆŸÄ±tlığını değiƟtirme bağlayıcısı" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:36 +msgid "Command" +msgstr "Emir" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:37 +msgid "Command to run when the binding is invoked" +msgstr "Bağlama çağırılğanda çaptırılacaq emir" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:38 +msgid "Copy a screenshot of a window to clipboard" +msgstr "Bir pencerenin ekran görĂŒntĂŒsĂŒnĂŒ panoya kopyala" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:39 +msgid "Copy a screenshot of an area to clipboard" +msgstr "Bir alanın ekran görĂŒntĂŒsĂŒnĂŒ panoya kopyala" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:40 +msgid "Copy a screenshot to clipboard" +msgstr "Bir ekran görĂŒntĂŒsĂŒnĂŒ panoya kopyala" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:41 +msgid "Custom keybindings" +msgstr "Şahsiyleştirilgen tuƟ-bağlamaları" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:42 +msgid "Decrease text size" +msgstr "Metin boyutunu kĂŒĂ§ĂŒlt" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:43 msgid "Eject" msgstr "Çıqart" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:21 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:44 msgid "Home folder" msgstr "Ev cilbenti" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:22 +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:45 +msgid "Increase text size" +msgstr "Metin boyutunu bĂŒyĂŒt" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:46 msgid "Launch calculator" -msgstr "Esaplayıcını fırlat" +msgstr "Hesaplayıcını fırlat" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:23 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 msgid "Launch email client" msgstr "E-poçta mĂŒĆŸterisini fırlat" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:24 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 msgid "Launch help browser" msgstr "Yardım kezicisini fırlat" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:25 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:49 msgid "Launch media player" msgstr "Vasat oynatıcısını fırlat" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:26 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:50 msgid "Launch web browser" msgstr "Ağ kezicisini fırlat" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:27 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:51 +msgid "List of custom keybindings" +msgstr "ƞahsiyleƟtirilgen tuƟ-bağlamalarınıñ listesi" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:52 msgid "Lock screen" msgstr "Ekrannı kilitle" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:28 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 msgid "Log out" msgstr "TÄ±ĆŸarı imzalan" +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 +msgid "Magnifier zoom in" +msgstr "BĂŒyĂŒteci yakınlaƟtır" + +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 +msgid "Magnifier zoom out" +msgstr "BĂŒyĂŒteci uzaklaƟtır" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 +msgid "Name" +msgstr "Ä°sim" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 +msgid "Name of the custom binding" +msgstr "Özel bağlamanıñ ismi" + # tĂŒklĂŒ -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:29 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 msgid "Next track" msgstr "Soñraki parça" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:30 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:59 msgid "Pause playback" msgstr "Oynatımnı tınÄ±ĆŸlat" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:31 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:60 msgid "Play (or play/pause)" msgstr "Oynat (yaki çal/tınÄ±ĆŸla)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:32 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:61 msgid "Previous track" msgstr "Evelki parça" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:33 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:64 msgid "Search" msgstr "Qıdır" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:34 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:65 msgid "Stop playback" msgstr "Oynatımnı toqtat" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:35 -msgid "Toggle touchpad" -msgstr "TiyĂŒv-Ɵiltesini döndĂŒr" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:66 +msgid "Take a screenshot" +msgstr "Bir ekran körĂŒntisini al" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:36 -msgid "Volume down" -msgstr "DavuƟ quveti aƟağı" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 +msgid "Take a screenshot of a window" +msgstr "Bir pencereniñ bir ekran körĂŒntisini al" -# tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:37 -msgid "Volume mute" -msgstr "Sesi kes" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 +msgid "Take a screenshot of an area" +msgstr "Bir mıntıqanıñ bir ekran körĂŒntisini al" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 +msgid "Toggle contrast" +msgstr "Tezatnı tönter" # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:38 -msgid "Volume step" -msgstr "Ses basamağı" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 +msgid "Toggle magnifier" +msgstr "BĂŒyĂŒteci seç" # tr -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:39 -msgid "Volume step as percentage of volume." -msgstr "YĂŒzde olarak ses basamağı." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 +msgid "Toggle on-screen keyboard" +msgstr "Ekran-ĂŒstĂŒ klavyeni tönter" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:40 -msgid "Volume up" -msgstr "DavuƟ quveti yuqarı" +# tr +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 +msgid "Toggle screen reader" +msgstr "Ekran okuyucusunu seç" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:1 -msgid "File for default configuration for RANDR" -msgstr "RANDR iĂ§ĂŒn ögbelgilengen yapılandırÄ±ĆŸ dosyesi" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 +msgid "Volume down" +msgstr "DavuƟ gĂŒrlĂŒgi aƟağı" # tr -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:2 -msgid "" -"If a notification icon with display related things should be shown in the " -"panel." -msgstr "" -"Ekran ile ilgili Ɵeyler için bir uyarı simgesinin panelde gösterilmesi." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:74 +msgid "Volume mute" +msgstr "DavuƟsızlandır" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:3 -msgid "Show Displays in Notification Area" -msgstr "Bildirim Mıntıqasında Ekranlarnı Köster" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:75 +msgid "Volume up" +msgstr "DavuƟ gĂŒrlĂŒgi yuqarı" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:4 +# tr +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 msgid "" -"The XRANDR plugin will look for a default configuration in the file " -"specified by this key. This is similar to the ~/.config/monitors.xml that " -"normally gets stored in users' home directories. If a user does not have " -"such a file, or has one that does not match the user's setup of monitors, " -"then the file specified by this key will be used instead." +"If time based notifications should be used. If set to false, then the " +"percentage change is used instead, which may fix a broken ACPI BIOS." msgstr "" -"XRANDR plagini bir ögbelgilengen yapılandırÄ±ĆŸ iĂ§ĂŒn bu anahtar tarafından " -"belirtilgen dosyede baqar. Bu, adetince qullanıcılarnıñ ev cilbentlerinde " -"mağazlanğan ~/.config/monitors.xml dosyesine beñzerdir. Bir qullanıcınıñ " -"böyle bir dosyesi yoq ise, ya da qullanıcınıñ ekranlarınıñ ayarlaması ile " -"eƟleƟmegen biri bar ise, o zaman bu anahtar tarafından belirtilgen dosye " -"qullanılır." +"Zaman temelli bildirimlerin kullanılıp kullanılmayacağı. YanlÄ±ĆŸ (false) " +"olarak ayarlanırsa, yerine yĂŒzde değiƟimi kullanılır; bu, sorunlu bir ACPI " +"BIOS'u için yararlı olabilir." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:5 -msgid "Turn on external monitor after system boot" -msgstr "Sistem baƟlattırmasından soñra hariciy ekrannı yaq" +# tr +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 +msgid "If we should show the recalled battery warning for a broken battery" +msgstr "Bozuk bir pil için hatırlatıcı pil geri çağırılma uyarısı gösterilsin" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:6 +# tr +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 msgid "" -"Turn on external monitor after system boot if user plugin external monitor " -"when system boot." +"If we should show the recalled battery warning for a broken battery. Set " +"this to false only if you know your battery is okay." msgstr "" -"Sistem baƟlattırılğanda qullanıcı hariciy ekran tıqsa,sistem " -"baƟlattırmasından soñra hariciy ekrannı yaq." +"Bozuk bir pil için hatırlatıcı pil geri çağırılma uyarısı gösterilsin. Bu " +"seçeneği sadece pilinizin dĂŒzgĂŒn olduğundan eminseniz yanlÄ±ĆŸ olarak " +"iƟaretleyin." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:7 -msgid "Turn on laptop monitor after system boot" -msgstr "Sistem baƟlattırmasından soñra tizĂŒstĂŒ ekranını yaq" +# tr +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 +msgid "Percentage action is taken" +msgstr "Eylemin gerçekleƟtirileceği yĂŒzde" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:8 -msgid "" -"Turn on laptop monitor after system boot if user plugin external monitor " -"when system boot." -msgstr "" -"Sistem baƟlattırılğanda qullanıcı hariciy ekran tıqsa, sistem " -"baƟlattırmasından soñra tizĂŒstĂŒ ekranını yaq." +# tr +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 +msgid "Percentage considered critical" +msgstr "Tehlikeli biçimde dĂŒĆŸĂŒk sayılan yĂŒzde" # tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:1 -msgid "Antialiasing" -msgstr "YumuƟatma" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +msgid "Percentage considered low" +msgstr "DĂŒĆŸĂŒk sayılan yĂŒzde" # tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:2 -msgid "DPI" -msgstr "DPI" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +msgid "" +"The percentage of the battery when it is considered critical. Only valid " +"when use-time-for-policy is false." +msgstr "" +"Pil, kritik sayıldığındaki oranı. Yalnızca, kullanım-zamanı-kuralı " +"uygulanmazken geçerlidir." # tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:3 -msgid "Hinting" -msgstr "DĂŒzeltme" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +msgid "" +"The percentage of the battery when it is considered low. Only valid when use-" +"time-for-policy is false." +msgstr "" +"Pil, dĂŒĆŸĂŒk sayıldığındaki oranı. Yalnızca, kullanım-zamanı-kuralı " +"uygulanmazken geçersizdir." # tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:4 -msgid "RGBA order" -msgstr "RGBA sırası" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 +msgid "" +"The percentage of the battery when the critical action is performed. Only " +"valid when use-time-for-policy is false." +msgstr "" +"Pil, kritik sayıldığındaki oranı. Yalnızca, kullanım-zamanı-kuralı " +"uygulanmazken geçerlidir." # tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 msgid "" -"The order of subpixel elements on an LCD screen; only used when antialiasing " -"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " -"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " -"on bottom." +"The time remaining in seconds of the battery when critical action is taken. " +"Only valid when use-time-for-policy is true." msgstr "" -"LCD ekranında kullanılacak alt piksel Ă¶ÄŸelerinin sırası; sadece yumuƟatma " -"\"rgba\" olarak atandığında kullanılır. Geçerli değerler: \"rgb\" - kırmızı " -"solda (en yaygın), \"bgr\" - mavi solda. \"vrgb\"- kırmızı yukarıda. \"vbgr" -"\" - kırmızı aƟağıda." +"Pilin, kritik eylem uygulanırken saniye olarak kalan zamanı. Yalnızca, " +"kullanım-zamanı-kuralı uygulanırken geçerlidir." # tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 msgid "" -"The resolution used for converting font sizes to pixel sizes, in dots per " -"inch." +"The time remaining in seconds of the battery when it is considered critical. " +"Only valid when use-time-for-policy is true." msgstr "" -"Yazıtipi boyutlarını piksel boyutlarına çevirmek için kullanılan çözĂŒnĂŒrlĂŒk, " -"inç baĆŸÄ±na nokta olarak." +"Pil, kritik sayıldığında saniye olarak kalan zaman. Yalnızca, kullanım-" +"zamanı-kuralı uygulanırken geçerlidir." # tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 msgid "" -"The type of antialiasing to use when rendering fonts. Possible values are: " -"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " -"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." -msgstr "" -"Yazıtipleri taranırken kullanılacak yumuƟatma tĂŒrĂŒ. Geçerli değerler: \"none" -"\" - yumuƟatma yok. \"grayscale\" - standart gri ölçek yumuƟatma ve \"rgba" -"\" - alt piksel yumuƟatma (sadece LCD ekranlar)." - -# tr -#: ../data/desktop_gnome_font_rendering.schemas.in.h:8 -msgid "" -"The type of hinting to use when rendering fonts. Possible values are: \"none" -"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" -"\" for maximum hinting (may cause distortion of letter forms)." -msgstr "" -"Yazıtiplerinde kullanılacak dĂŒzeltme tĂŒrĂŒ. Geçerli değerler \"none\" - " -"dĂŒzeltme yok, \"slight\", \"medium\", ve \"full\" - mĂŒmkĂŒn olduğunca çok " -"dĂŒzeltme (harf biçimlerinde bozulmalara sebep olabilir)." - -# tr -#: ../data/desktop_gnome_keybindings.schemas.in.h:1 -msgid "Allowed keys" -msgstr "Ä°zin verilen tuƟlar" - -# tr -#: ../data/desktop_gnome_keybindings.schemas.in.h:2 -msgid "" -"If non-empty, keybindings will be ignored unless their GConf directory is in " -"the list. This is useful for lockdown." +"The time remaining in seconds of the battery when it is considered low. Only " +"valid when use-time-for-policy is true." msgstr "" -"Eğer boƟ değilse, kendi GConf dizini listede olmadığı sĂŒrece tuƟ bağı yok " -"sayılır. Bu kilitleme için kullanÄ±ĆŸlıdır." +"Pil, dĂŒĆŸĂŒk sayıldığında saniye olarak kalan zaman. Yalnızca, kullanım-" +"zamanı-kuralı uygulanırken geçerlidir." # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:1 -msgid "Disable touchpad while typing" -msgstr "Yazarken touchpad'i devre dÄ±ĆŸÄ± bırak" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 +msgid "The time remaining when action is taken" +msgstr "Eylem uygulanacağı zaman kalan zaman" # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:2 -msgid "Enable horizontal scrolling" -msgstr "Yatay kaydırmayı etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 +msgid "The time remaining when critical" +msgstr "Tehlikeli biçimde dĂŒĆŸĂŒkken kalan zaman" # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:3 -msgid "Enable mouse clicks with touchpad" -msgstr "Touchpad ile fare tıklamasını etkinleƟtir" - -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:4 -msgid "Enable touchpad" -msgstr "TiyĂŒv-Ɵiltesini qabilleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 +msgid "The time remaining when low" +msgstr "DĂŒĆŸĂŒkken kalan zaman" # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:5 -msgid "Select the touchpad scroll method" -msgstr "Touchpad kaydırma yönetimini seçin" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 +msgid "Whether to use time-based notifications" +msgstr "Zaman temelli bildirimlerin kullanılıp kullanılmayacağı" # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:6 -msgid "" -"Select the touchpad scroll method. Supported values are: 0 - disabled, 1 - " -"edge scrolling, 2 - two-finger scrolling" -msgstr "" -"Touchpad kaydırma yöntemini seçin. Desteklenen değerler: 0 - kapalı, 1 - " -"kenar kaydırması, 2 - iki parmak kaydırması" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 +msgid "Ask the user if additional firmware should be installed" +msgstr "Ek aygıt yazılımlarının yĂŒklenilip yĂŒklenilmeyeceğini kullanıcıya sor" # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 msgid "" -"Set this to TRUE if you have problems with accidentally hitting the touchpad " -"while typing." +"Ask the user if additional firmware should be installed if it is available." msgstr "" -"Eğer yazarken touchpad'e dokunma sorunu yaĆŸÄ±yorsanız bunu doğru olarak " -"atayın." +"Eğer kullanılabilir durumdaysa, ek aygıt yazılımlarının yĂŒklenilip " +"yĂŒklenilmeyeceğini kullanıcıya sor." # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:8 -msgid "" -"Set this to TRUE to allow horizontal scrolling by the same method selected " -"with the scroll_method key." -msgstr "" -"Eğer scroll_method anahtarında seçili yöntemle aynı Ɵekilde yatay kaydırma " -"istiyorsanız bunu doğru olarak atayın." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +msgid "Automatically download updates in the background without confirmation" +msgstr "GĂŒncellemeleri onay almadan arka planda otomatik olarak indir" # tr -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 msgid "" -"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." -msgstr "" -"Touchpad ĂŒzerine vurarak fare tıklamaları göndermek istiyorsanız bunu doğru " -"olarak atayın." - -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:10 -msgid "Set this to TRUE to enable all touchpads." +"Automatically download updates in the background without confirmation. " +"Updates will be auto-downloaded when using wired network connnections, and " +"also WiFi if 'connection-use-wifi' is enabled and mobile broadband if " +"'connection-use-mobile' is enabled." msgstr "" -"Episi tiyĂŒv-Ɵiltelerini qabilleƟtirmek iĂ§ĂŒn bunı DOĞRU olaraq tesbit etiñiz." - -#: ../data/gnome-settings-daemon.desktop.in.in.h:1 -msgid "GNOME Settings Daemon" -msgstr "GNOME Ayarları Cını" - -# tr -#: ../data/gnome-settings-daemon.schemas.in.h:1 -msgid "Binding to toggle the magnifier." -msgstr "BĂŒyĂŒtece geçiƟ yapmak için bağ." +"GĂŒncellemeleri onay almaksızın arkaplanda otomatik olarak indir. " +"GĂŒncellemeler, kablolu bağlantıda, eğer 'connection-use-wifi' aktifse, WiFi " +"ĂŒzerinden, eğer 'connection-use-mobile' aktifse, mobil geniƟbant hizmeti " +"ĂŒzerinden otomatik olarak indirilecektir." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:2 -msgid "Binding to toggle the on-screen keyboard." -msgstr "Ekran klavyesine geçiƟ yapmak için bağ" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 +msgid "Automatically install these types of updates" +msgstr "Bu tĂŒr gĂŒncellemeleri otomatik olarak kur" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:3 -msgid "Binding to toggle the screen reader." -msgstr "Ekran okuyucuya geçiƟ yapmak için bağ." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 +msgid "Automatically install these types of updates." +msgstr "Bu tĂŒr gĂŒncellemeleri otomatik olarak kur." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:4 -msgid "Bounce keys" -msgstr "Sıçrama tuƟları" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 +msgid "Devices that should be ignored" +msgstr "Gözardı edilmesi gereken aygıtlar" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:5 -msgid "Command used to turn the magnifier on or off." -msgstr "BĂŒyĂŒteci açmak veya kapatmak için kullanılan komut." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 +msgid "" +"Devices that should be ignored, separated by commas. These can include '*' " +"and '?' characters." +msgstr "" +"Gözardı edilmesi gereken aygıtlar, virgĂŒlle ayrılmÄ±ĆŸ olarak. Bunlar '*' ve " +"'?' karakterlerini de içerebilir." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:6 -msgid "Command used to turn the on-screen keyboard on or off." -msgstr "Ekran klavyesini açmak veya kapatmak için kullanılan komut." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 +msgid "Firmware files that should not be searched for" +msgstr "Aranması gerekmeyen aygıt yazılımı dosyaları" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:7 -msgid "Command used to turn the screen reader on or off." -msgstr "Ekran okuyucu açmak veya kapatmak için kullanılan komut." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 +msgid "" +"Firmware files that should not be searched for, separated by commas. These " +"can include '*' and '?' characters." +msgstr "" +"Aranması gerekmeyen aygıt yazılımı dosyaları, virgĂŒlle ayrılmÄ±ĆŸ olarak. " +"Bunlar '*' ve '?' karakterlerini de içerebilir." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:8 -msgid "Enable accessibility keyboard plugin" -msgstr "EriƟilebilirlik klavyesi eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 +msgid "Get the update list when the session starts" +msgstr "Oturum baƟladığında gĂŒncelleme listesini al" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:9 -msgid "Enable background plugin" -msgstr "Arkaplan eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 +msgid "Get the update list when the session starts, even if not scheduled to." +msgstr "" +"Oturum baƟladığında gĂŒncelleme listesini al, buna zamanlanmÄ±ĆŸ olmasa bile." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:10 -msgid "Enable clipboard plugin" -msgstr "Pano eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 +msgid "How often to check for distribution upgrades" +msgstr "Dağıtım gĂŒncellemelerinin ne sıklıkla kontrol edileceği" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:11 -msgid "Enable font plugin" -msgstr "Yazıtipi eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 +msgid "How often to check for distribution upgrades. Value is in seconds." +msgstr "" +"Dağıtım gĂŒncellemelerinin saniye cinsinden ne sıklıkla kontrol edileceği." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:12 -msgid "Enable housekeeping plugin" -msgstr "Ev bakımı eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 +msgid "How often to check for updates" +msgstr "GĂŒncellemeler ne sıklıkla kontrol edilsin" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:13 -msgid "Enable keybindings plugin" -msgstr "TuƟ bağları eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 +msgid "" +"How often to check for updates. Value is in seconds. This is a maximum " +"amount of time that can pass between a security update being published, and " +"the update being automatically installed or the user notified." +msgstr "" +"Dağıtım gĂŒncellemelerinin saniye cinsinden ne sıklıkla kontrol edileceği. " +"Bu, bir gĂŒvenlik gĂŒncellemesinin çıkması ile bu gĂŒncellemenin otomatik " +"olarak yĂŒklenmesı veya kullanıcının bu gĂŒncellemeden haberdar edilmesi " +"arasında geçebilecek maksimum zamandır." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:14 -msgid "Enable keyboard plugin" -msgstr "Klavye eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 +msgid "How often to notify the user that non-critical updates are available" +msgstr "" +"Kullanıcının kritik olmayan gĂŒncellemelerden ne sıklıkla haberdar edileceği" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:15 -msgid "Enable media keys plugin" -msgstr "Ortam tuƟları eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 +msgid "How often to refresh the package cache" +msgstr "Paket önbelleğinin ne sıklıkla yenileneceği" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:16 -msgid "Enable mouse plugin" -msgstr "Fare eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 +msgid "How often to refresh the package cache. Value is in seconds." +msgstr "Paket önbelleğinin saniye cinsinden ne sıklıkla yenileneceği." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:17 -msgid "Enable sound plugin" -msgstr "Ses eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 +msgid "" +"How often to tell the user there are non-critical updates. Value is in " +"seconds. Security update notifications are always shown after the check for " +"updates, but non-critical notifications should be shown a lot less " +"frequently." +msgstr "" +"Kullanıcıya kritik-gĂŒncelleme olmadığının saniye cinsinden ne sıklıkla " +"söyleneceği. GĂŒvenlik gĂŒncellemeleri uyarıları her zaman gĂŒncelleme kontrol " +"edildikten sonra gösterilir, fakat kritik olmayan uyarılar bundan biraz daha " +"az sıklıkla gösterilmelidir." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:18 -msgid "Enable typing breaks plugin" -msgstr "Yazım molası eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 +msgid "Install updates automatically when running on battery power" +msgstr "Pil devredeyken gĂŒncellemeleri otomatik olarak yĂŒkle" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:19 -msgid "Enable xrandr plugin" -msgstr "Xrandr eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 +msgid "Install updates automatically when running on battery power." +msgstr "Pil devredeyken gĂŒncellemeleri otomatik olarak yĂŒkle" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:20 -msgid "Enable xrdb plugin" -msgstr "Xrdb eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 +msgid "Notify the user for completed updates" +msgstr "Kullanıcıyı tamamlanmÄ±ĆŸ gĂŒncellemelerden haberdar et" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:21 -msgid "Enable xsettings plugin" -msgstr "Xsettings eklentisini etkinleƟtir" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 +msgid "Notify the user for completed updates where the user needs to restart" +msgstr "" +"Kuullanıcıyı yeniden baƟlatma gerektirecek tamamlanmÄ±ĆŸ gĂŒncellemelerden " +"haberdar et" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:22 -msgid "Mouse keys" -msgstr "Fare tuƟları" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 +msgid "Notify the user for completed updates where the user needs to restart." +msgstr "" +"Kuullanıcıyı yeniden baƟlatma gerektirecek tamamlanmÄ±ĆŸ gĂŒncellemelerden " +"haberdar et" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:23 -msgid "On-screen keyboard" -msgstr "Ekran klavyesi" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 +msgid "" +"Notify the user for completed updates. This may be a useful notification for " +"some users as installing updates prevents shutdown." +msgstr "" +"TamamlanmÄ±ĆŸ gĂŒncellemelerden kullanıcıyı haberdar et. GĂŒncellemeleri " +"yĂŒklemek bilgisayarı kapatmayı engellediğinden bu kullanÄ±ĆŸlı bir uyarı " +"olabilir." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:24 -msgid "Screen magnifier" -msgstr "Ekran bĂŒyĂŒteci" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 +msgid "Notify the user when distribution upgrades are available" +msgstr "Dağıtım gĂŒncellemeleri çıktığında kullanıcıyı haberdar et" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:25 -msgid "Screen reader" -msgstr "Ekran okuyucu" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 +msgid "Notify the user when distribution upgrades are available." +msgstr "Dağıtım gĂŒncellemeleri çıktığında kullanıcıyı haberdar et" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:26 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 msgid "" -"Set to True to enable the housekeeping plugin, to prune transient file " -"caches." +"Notify the user when the automatic update was not started on battery power" msgstr "" -"Ev bakımı eklentisini etkinleƟtirmek, geçici dosya önbelleği budamak için " -"True Ɵekilde ayarlayın." - -# tr -#: ../data/gnome-settings-daemon.schemas.in.h:27 -msgid "Set to True to enable the plugin to manage clipboard settings." -msgstr "" -"Pano ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." - -# tr -#: ../data/gnome-settings-daemon.schemas.in.h:28 -msgid "Set to True to enable the plugin to manage desktop background settings." -msgstr "" -"Arkaplan ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." +"Pil gĂŒcĂŒ kullanılıyorken otomatik gĂŒncelleme baƟlatılamadığında kullanıcıyı " +"uyar" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:29 -msgid "Set to True to enable the plugin to manage font settings." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 +msgid "" +"Notify the user when the update was not automatically started because the " +"machine is running on battery power." msgstr "" -"Yazıtipi ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." +"Makine pil gĂŒcĂŒnde çalÄ±ĆŸtığı için gĂŒncellemeler otomatik olarak " +"baƟlatılamadığında kullanıcıyı uyar." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:30 -msgid "Set to True to enable the plugin to manage keyboard settings." -msgstr "" -"Klavye ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 +msgid "Notify the user when the update was started" +msgstr "GĂŒncelleme baƟlatılamadığında kullanıcıyı uyar" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:31 -msgid "Set to True to enable the plugin to manage mouse settings." -msgstr "" -"Fare ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 +msgid "Notify the user when the update was started." +msgstr "GĂŒncelleme baƟlatılamadığında kullanıcıyı uyar" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:32 -msgid "Set to True to enable the plugin to manage multimedia keys settings." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 +msgid "The filenames on removable media that designate it a software source." msgstr "" -"Çokluortam tuƟları ayarlarını yönetmek için eklentiyi etkinleƟtirmek için " -"doğru olarak atayın." +"Yazılım kaynağı olarak tayin edilmiƟ, çıkarılabilir ortam ĂŒzerindeki dosya " +"isimleri." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:33 -msgid "Set to True to enable the plugin to manage sound sample caches." -msgstr "" -"Ses örnek önbellekleri yönetmek için eklentiyi etkinleƟtirmek için True " -"Ɵekilde ayarlayın." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 +msgid "The install root to use when adding and removing packages" +msgstr "Paket eklerken ve çıkartırkenki kök yĂŒkleme yolu" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:34 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 msgid "" -"Set to True to enable the plugin to manage the accessibility keyboard " -"settings." +"The install root to use when processing packages, which is changed when " +"using LTSP or when testing." msgstr "" -"Klavye eriƟebilirlik ayarlarını yönetmek için eklentiyi etkinleƟtirmek için " -"doğru olarak atayın." +"Paket iƟlemleri yapılırken, ITSP kullanırken veya test yaparken değiƟebilen, " +"kullanılacak kök yol." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:35 -msgid "Set to True to enable the plugin to manage the keybindings." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 +msgid "" +"The last time we notified the user about non-critical updates. Value is in " +"seconds since the epoch, or zero for never." msgstr "" -"TuƟbağlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak atayın." +"Saniye cinsinden, en son kullanıcının kritik olmayan gĂŒncellemelerden ne " +"zaman haberdar edildiği. Hiçbir zaman için bu değer sıfırdır." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:36 -msgid "Set to True to enable the plugin to manage typing breaks." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 +msgid "The last time we told the user about non-critical notifications" msgstr "" -"Yazım molalarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." +"Kritik olmayan uyarılardan en son ne zaman kullanıcının haberdar edildiği." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:37 -msgid "Set to True to enable the plugin to manage xrandr settings." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 +msgid "" +"The number of seconds at session startup to wait before checking for updates" msgstr "" -"Xrandr ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." +"GĂŒncellemeleri kontrol etmek için oturum baƟlangıcında kaç saniye " +"bekleneceği." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:38 -msgid "Set to True to enable the plugin to manage xrdb settings." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 +msgid "" +"The number of seconds at session startup to wait before checking for " +"updates. Value is in seconds." msgstr "" -"Xrdb ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " -"atayın." +"GĂŒncellemeleri kontrol etmek için oturum baƟlangıcında saniye cinsinden ne " +"kadar sĂŒre bekleneceği." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:39 -msgid "Set to True to enable the plugin to manage xsettings." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 +msgid "" +"Use WiFi (wireless LAN) connections to check for updates. It may be faster " +"to download packages when on a wired connection, and the VPN or proxy " +"required may also only be available on wired connections." msgstr "" -"Xsettings ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru " -"olarak atayın." +"GĂŒncellemeleri kontrol etmek için WiFi (kablosuz ağ) kullan. Kablolu " +"bağlantı kullanmak paketleri indirirken daha hızlı olabilir. Ayrıca gereken " +"VPN veya proxy sadece kablolu bağlantı ile mevcut olabilir." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:40 -msgid "Slow keys" -msgstr "YavaƟ tuƟlar" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 +msgid "Use WiFi connections" +msgstr "WiFi bağlantısı kullan" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:41 -msgid "Sticky keys" -msgstr "YapÄ±ĆŸkan tuƟlar" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 +msgid "Use mobile broadband connections" +msgstr "Mobil geniƟbant bağlantısı kullan" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:42 -msgid "The name of the keyboard shortcut to toggle the magnifier" -msgstr "BĂŒyĂŒtece geçiƟ yapmak için klavye kısayolunun adı" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 +msgid "" +"Use mobile broadband connections such as GSM and CDMA to check for updates." +msgstr "" +"GĂŒncellemeleri kontrol etmek için GSM veya CDMA gibi mobil geniƟbant " +"bağlantılarını kullan." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:43 -msgid "The name of the keyboard shortcut to toggle the on-screen keyboard" -msgstr "Ekran klavyesine geçiƟ yapmak için klavye kısayolunun adı" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 +msgid "" +"When removable media is inserted, it is checked to see if it contains any " +"important filenames in the root directory. If the filename matches, then an " +"updates check is performed. This allows post-install disks to be used to " +"update running systems." +msgstr "" +"Bilgisayara bir çıkarılabilir ortam takıldığında, bunun kök klasörĂŒnĂŒn " +"içindeki dosyalarda önemli dosya isimleri olup olmadığı kontrol edilir. Eğer " +"varsa, bir gĂŒncelleme kontrolĂŒ yapılır. Bu yĂŒkleme sonrası diskleri ile " +"mevcut sistemi gĂŒncellemek için kullanılır." -# tr -#: ../data/gnome-settings-daemon.schemas.in.h:44 -msgid "The name of the keyboard shortcut to toggle the screen reader" -msgstr "Ekran okuyucusuna geçiƟ yapmak için klavye kısayolunun adı" +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 +msgid "" +"'clone' will display the same thing on all monitors, 'dock' will switch off " +"the internal monitor, 'do-nothing' will use the default Xorg behaviour " +"(extend the desktop in recent versions)" +msgstr "" +"'clone' ekranlarnıñ hepsinde aynı Ɵeyni kösterecek, 'dock' dahiliy ekrannı " +"söndĂŒrecek, 'do-nothing' ögbelgilengen Xorg davranÄ±ĆŸÄ±nı qullanacaq (deminki " +"sĂŒrĂŒmlerde masaĂŒstĂŒni uzat)" + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 +msgid "File for default configuration for RandR" +msgstr "RandR iĂ§ĂŒn ögbelgilengen yapılandırÄ±ĆŸ dosyesi" -# tr -#: ../data/gnome-settings-daemon.schemas.in.h:45 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 msgid "" -"This is the name of the keyboard shortcut to toggle the magnifier. This name " -"will be shown in the keyboard shortcut preferences dialog." +"The XRandR plugin will look for a default configuration in the file " +"specified by this key. This is similar to the ~/.config/monitors.xml that " +"normally gets stored in users' home directories. If a user does not have " +"such a file, or has one that does not match the user's setup of monitors, " +"then the file specified by this key will be used instead." msgstr "" -"Bu bĂŒyĂŒtece geçiƟ yapmak için klavye kısayolunun adıdır. Bu isim, klavye " -"kısayol tercihleri penceresinde gösterilir." +"XRandR plagini ögbelgilengen bir yapılandırÄ±ĆŸ iĂ§ĂŒn bu anahtar tarafından " +"belirtilgen dosyede baqar. Bu, adetince qullanıcılarnıñ ev cilbentlerinde " +"mağazlanğan ~/.config/monitors.xml dosyesine beñzerdir. Bir qullanıcınıñ " +"böyle bir dosyesi yoq ise, ya da qullanıcınıñ ekranlarınıñ ayarlaması ile " +"eƟleƟmegen biri bar ise, o zaman bu anahtar tarafından belirtilgen dosye " +"qullanılır." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:46 -msgid "" -"This is the name of the keyboard shortcut to toggle the on-screen keyboard. " -"This name will be shown in the keyboard shortcut preferences dialog." +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +msgid "Whether to turn off specific monitors after boot" msgstr "" -"Bu ekran klavyesine geçiƟ yapmak için klavye kısayolunun adıdır. Bu isim, " -"klavye kısayol tercihleri penceresinde gösterilir." +"Sistemi baƟlattıktan sonra belirli monitörlerin kapatılıp kapatılmayacağı" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:47 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 msgid "" -"This is the name of the keyboard shortcut to toggle the screen reader. This " -"name will be shown in the keyboard shortcut preferences dialog." +"A list of strings representing the GTK+ modules that will be loaded, usually " +"in addition to conditional and forcibly disabled ones." msgstr "" -"Bu ekran okuyucuya geçiƟ yapmak için klavye kısayolunun adıdır. Bu isim, " -"klavye kısayol tercihleri penceresinde gösterilir." - -# tr -#: ../data/gnome-settings-daemon.schemas.in.h:48 -msgid "Toggle magnifier" -msgstr "BĂŒyĂŒteci seç" +"YĂŒklenecek GTK+ modĂŒllerini temsil eden karakter katarlarını tutan liste; " +"Genellikle ek olarak durumsal veya zorla kapatılmÄ±ĆŸ olanları." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:49 -msgid "Toggle on-screen keyboard" -msgstr "Ekran klavyesini seç" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +msgid "" +"A list of strings representing the GTK+ modules that will not be loaded, " +"even if enabled by default in their configuration." +msgstr "" +"YĂŒklenmeyecek GTK+ modĂŒllerini temsil eden karakter katarlarını tutan liste; " +"kendi yapılandırmalarında öntanımlı olarak etkin hale getirilecek olsalar " +"bile." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:50 -msgid "Toggle screen reader" -msgstr "Ekran okuyucusunu seç" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +msgid "Antialiasing" +msgstr "YumuƟatma" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:51 -msgid "Whether the bounce keys keyboard accessibility feature is turned on." -msgstr "Sıçrama tuƟları klavye eriƟilebilirlik özelliğinin açık olması." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 +msgid "Hinting" +msgstr "DĂŒzeltme" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:52 -msgid "Whether the mouse keys keyboard accessibility feature is turned on." -msgstr "Fare tuƟları klavye eriƟilebilirlik özelliğinin açık olması." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 +msgid "List of explicitly disabled GTK+ modules" +msgstr "Alenen devredÄ±ĆŸÄ± bırakılmÄ±ĆŸ GTK+ modĂŒllerinin listesi" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:53 -msgid "Whether the on-screen keyboard is turned on." -msgstr "Ekran klavyesinin açık olması." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 +msgid "List of explicitly enabled GTK+ modules" +msgstr "Alenen etkinleƟtirilmiƟ GTK+ modĂŒllerinin listesi" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:54 -msgid "Whether the screen magnifier is turned on." -msgstr "Ekran bĂŒyĂŒtecinin açık olması." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 +msgid "RGBA order" +msgstr "RGBA sırası" # tr -#: ../data/gnome-settings-daemon.schemas.in.h:55 -msgid "Whether the screen reader is turned on." -msgstr "Ekran okuyucusunun açık olması." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 +msgid "" +"The order of subpixel elements on an LCD screen; only used when antialiasing " +"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " +"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " +"on bottom." +msgstr "" +"LCD ekranında kullanılacak alt piksel Ă¶ÄŸelerinin sırası; sadece yumuƟatma " +"\"rgba\" olarak atandığında kullanılır. Geçerli değerler: \"rgb\" - kırmızı " +"solda (en yaygın), \"bgr\" - mavi solda. \"vrgb\"- kırmızı yukarıda. \"vbgr" +"\" - kırmızı aƟağıda." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:56 -msgid "Whether the slow keys keyboard accessibility feature is turned on." -msgstr "YavaƟ tuƟların klavye eriƟilebilirlik özelliğinin açık olması." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 +msgid "" +"The type of antialiasing to use when rendering fonts. Possible values are: " +"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " +"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +msgstr "" +"Yazıtipleri taranırken kullanılacak yumuƟatma tĂŒrĂŒ. Geçerli değerler: \"none" +"\" - yumuƟatma yok. \"grayscale\" - standart gri ölçek yumuƟatma ve \"rgba" +"\" - alt piksel yumuƟatma (sadece LCD ekranlar)." # tr -#: ../data/gnome-settings-daemon.schemas.in.h:57 -msgid "Whether the sticky keys keyboard accessibility feature is turned on." -msgstr "YapÄ±ĆŸkan tuƟların klavye eriƟilebilirlik özelliğinin açık olması." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 +msgid "" +"The type of hinting to use when rendering fonts. Possible values are: \"none" +"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" +"\" for maximum hinting (may cause distortion of letter forms)." +msgstr "" +"Yazıtiplerinde kullanılacak dĂŒzeltme tĂŒrĂŒ. Geçerli değerler \"none\" - " +"dĂŒzeltme yok, \"slight\", \"medium\", ve \"full\" - mĂŒmkĂŒn olduğunca çok " +"dĂŒzeltme (harf biçimlerinde bozulmalara sebep olabilir)." # tr -#: ../gnome-settings-daemon/main.c:55 +#: ../gnome-settings-daemon/main.c:54 msgid "Enable debugging code" msgstr "Hata ayıklama kodunu etkinleƟtir" -# tr -#: ../gnome-settings-daemon/main.c:56 -msgid "Don't become a daemon" -msgstr "Bir servis olma" - -# tr -#: ../gnome-settings-daemon/main.c:57 -msgid "GConf prefix from which to load plugin settings" -msgstr "Eklenti ayarları yĂŒklemek için GConf öneki" - -#: ../gnome-settings-daemon/main.c:58 -msgid "Exit after a time - for debugging" -msgstr "Bir aradan soñra çıq - illetsizlendirmek iĂ§ĂŒn" +#: ../gnome-settings-daemon/main.c:55 +msgid "Exit after a time (for debugging)" +msgstr "Bir aradan soñra çıq (illetsizlendirmek iĂ§ĂŒn)" # tr #: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:1 msgid "Accessibility Keyboard" -msgstr "EriƟilebilirlik Klavyesi" +msgstr "Ä°riƟilebilirlik Klavyesi" # tr #: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:2 msgid "Accessibility keyboard plugin" -msgstr "EriƟilebilirlik klavyesi eklentisi" +msgstr "Ä°riƟilebilirlik klavyesi plagini" # tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:388 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:383 #, c-format msgid "There was an error displaying help: %s" msgstr "Yardım dosyasının görĂŒntĂŒlenmesinde bir hata oluƟtu: %s" # tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:519 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:585 -msgid "Do you want to activate Slow Keys?" -msgstr "TuƟ YavaƟlatmasını aktif hale getirmek istiyor musunuz?" +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:508 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:572 +msgid "Slow Keys Turned On" +msgstr "YavaƟ TuƟlar Etkin" # tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:520 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:586 -msgid "Do you want to deactivate Slow Keys?" -msgstr "TuƟ YavaƟlatmasını kapatmak istiyor musunuz?" +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 +msgid "Slow Keys Turned Off" +msgstr "YavaƟ TuƟlar Devre DÄ±ĆŸÄ±" # tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:521 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:587 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 msgid "" "You just held down the Shift key for 8 seconds. This is the shortcut for " "the Slow Keys feature, which affects the way your keyboard works." @@ -854,74 +1397,66 @@ "Sadece Shift tuƟunu 8 saniye basılı tutun. Bu klavyenizin çalÄ±ĆŸma biçimini " "etkileyecek TuƟ YavaƟlatması özelliği için bir kısayoldur." -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:546 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:685 -msgid "Don't activate" -msgstr "EtkinleƟtirme" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:546 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:685 -msgid "Don't deactivate" -msgstr "Devre dÄ±ĆŸÄ± bırakma" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:552 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:691 -msgid "Activate" -msgstr "EtkinleƟtir" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:552 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:691 -msgid "Deactivate" -msgstr "Devre dÄ±ĆŸÄ± bırak" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:608 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:749 -msgid "Do_n't activate" -msgstr "_EtkinleƟtirme" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:608 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:749 -msgid "Do_n't deactivate" -msgstr "Etki_sizleƟtirme" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:611 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:752 -msgid "_Activate" -msgstr "_EtkinleƟtir" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:611 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:752 -msgid "_Deactivate" -msgstr "E_tkisizleƟtir" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:615 -msgid "Slow Keys Alert" -msgstr "TuƟ YavaƟlatması Uyarısı" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:655 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:723 -msgid "Do you want to activate Sticky Keys?" -msgstr "YapÄ±ĆŸkan TuƟlar özelliğini aktif hale getirmek istiyor musunuz?" +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 +#: ../plugins/mouse/gsd-mouse-manager.c:867 +msgid "Universal Access" +msgstr "CihanĆŸĂŒmul Ä°riƟim" -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:656 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:724 -msgid "Do you want to deactivate Sticky Keys?" -msgstr "YapÄ±ĆŸkan TuƟları kapatmak istiyor musunuz?" +# tĂŒklĂŒ +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn Off" +msgstr "SöndĂŒr" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn On" +msgstr "Aç" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave On" +msgstr "Açıq qalsın" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave Off" +msgstr "SöndĂŒrilgen qalsın" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn Off" +msgstr "_SöndĂŒr" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn On" +msgstr "_Aç" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave On" +msgstr "_Açıq qalsın" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave Off" +msgstr "_Söndürilgen qalsın" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:641 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:707 +msgid "Sticky Keys Turned On" +msgstr "YapÄ±ĆŸaq TuƟlar Açıq" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 +msgid "Sticky Keys Turned Off" +msgstr "YapÄ±ĆŸaq TuƟlar Qapalı" # tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:658 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:726 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 msgid "" "You just pressed the Shift key 5 times in a row. This is the shortcut for " "the Sticky Keys feature, which affects the way your keyboard works." @@ -930,8 +1465,8 @@ "etkileyecek YapÄ±ĆŸkan TuƟlar özelliği için bir kısayoldur." # tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:660 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:728 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:646 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:712 msgid "" "You just pressed two keys at once, or pressed the Shift key 5 times in a " "row. This turns off the Sticky Keys feature, which affects the way your " @@ -941,12 +1476,7 @@ "klavyenizin çalÄ±ĆŸma biçimini etkileyecek YapÄ±ĆŸkan TuƟlar özelliğini kapatır." # tr -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:756 -msgid "Sticky Keys Alert" -msgstr "YapÄ±ĆŸkan TuƟ Uyarısı" - -# tr -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:920 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 msgid "Universal Access Preferences" msgstr "Evrensel EriƟim Tercihleri" @@ -969,7 +1499,7 @@ # tr #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 msgid "Use on-screen _keyboard" -msgstr "Ekran _klavyesini kullan" +msgstr "Ekran-ĂŒstĂŒ _klavyeni qullan" # tr #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 @@ -989,7 +1519,148 @@ # tr #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" -msgstr "_Klavye kısayollarına bir kerede bir tuƟa bas (YapÄ±ĆŸken TuƟlar)" +msgstr "_Klavye qısqayolları iĂ§ĂŒn tuƟlarğa birer-birer bas (YapÄ±ĆŸaq TuƟlar)" + +#: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:1 +msgid "Accessibility settings" +msgstr "Ä°riƟilebilirlik ayarları" + +#: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:2 +msgid "Accessibility settings plugin" +msgstr "Ä°riƟilebilirlik ayarları plagini" + +# tr +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 +msgid "Automount and autorun plugged devices" +msgstr "Takılı aygıtları kendiliğinden bağla ve çalÄ±ĆŸtır" + +# tr +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 +msgid "Mount Helper" +msgstr "Bağlama Yardımcısı" + +#: ../plugins/automount/gsd-automount-manager.c:151 +#, c-format +msgid "Unable to mount %s" +msgstr "%s taqılalmay" + +#: ../plugins/automount/gsd-automount-manager.c:264 +#, c-format +msgid "Unable to open a folder for %s" +msgstr "%s iĂ§ĂŒn bir cilbent açılalmay" + +#: ../plugins/automount/gsd-autorun.c:340 +msgid "Ask what to do" +msgstr "Ne yapılacağını sora" + +#: ../plugins/automount/gsd-autorun.c:346 +msgid "Do Nothing" +msgstr "Hiç Bir ƞey Yapma" + +#: ../plugins/automount/gsd-autorun.c:352 +msgid "Open Folder" +msgstr "Cilbent Aç" + +#: ../plugins/automount/gsd-autorun.c:495 +#, c-format +msgid "Unable to eject %p" +msgstr "%p çıqartılalmay" + +# tr +#: ../plugins/automount/gsd-autorun.c:497 +#, c-format +msgid "Unable to unmount %p" +msgstr "%p çıkartılamıyor" + +#: ../plugins/automount/gsd-autorun.c:702 +msgid "You have just inserted an Audio CD." +msgstr "ƞimdiçik bir DavuƟ CDsi qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:704 +msgid "You have just inserted an Audio DVD." +msgstr "ƞimdiçik bir DavuƟ DVDsi qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:706 +msgid "You have just inserted a Video DVD." +msgstr "Şimdiçik bir Video DVD qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:708 +msgid "You have just inserted a Video CD." +msgstr "Şimdiçik bir Video CD qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:710 +msgid "You have just inserted a Super Video CD." +msgstr "Şimdiçik bir Super Video CD qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:712 +msgid "You have just inserted a blank CD." +msgstr "Şimdiçik boƟ bir CD qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:714 +msgid "You have just inserted a blank DVD." +msgstr "Şimdiçik boş bir DVD qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:716 +msgid "You have just inserted a blank Blu-Ray disc." +msgstr "Şimdiçik boş bir Blu-Ray disk qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:718 +msgid "You have just inserted a blank HD DVD." +msgstr "Şimdiçik boş bir HD DVD qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:720 +msgid "You have just inserted a Photo CD." +msgstr "Şimdiçik bir Foto CD qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:722 +msgid "You have just inserted a Picture CD." +msgstr "Şimdiçik bir Resim CDsi qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:724 +msgid "You have just inserted a medium with digital photos." +msgstr "Şimdiçik bir raqamsal fotolar ile bir vasat qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:726 +msgid "You have just inserted a digital audio player." +msgstr "Şimdiçik bir raqamsal davuƟ çalar qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:728 +msgid "" +"You have just inserted a medium with software intended to be automatically " +"started." +msgstr "" +"Şimdiçik avtomatik olaraq baƟlatılması qast etilden yazılım ile bir vasat " +"qıstırdıñız." + +#. fallback to generic greeting +#: ../plugins/automount/gsd-autorun.c:731 +msgid "You have just inserted a medium." +msgstr "Şimdiçik bir vasat qıstırdıñız." + +#: ../plugins/automount/gsd-autorun.c:733 +msgid "Choose what application to launch." +msgstr "Hangi uyğulamanıñ baƟlatılacağını sayla." + +#: ../plugins/automount/gsd-autorun.c:742 +#, c-format +msgid "" +"Select how to open \"%s\" and whether to perform this action in the future " +"for other media of type \"%s\"." +msgstr "" +"\"%s\" vasatınıñ nasıl açılacağını ve \"%s\" tĂŒrĂŒndeki diger vasatlar iĂ§ĂŒn " +"de kelecekte aynı amelniñ icra etilip etilmeycegini saylañız." + +#: ../plugins/automount/gsd-autorun.c:769 +msgid "_Always perform this action" +msgstr "_Her zaman bu amelni icra et" + +#: ../plugins/automount/gsd-autorun.c:785 +msgid "_Eject" +msgstr "_Çıqart" + +#: ../plugins/automount/gsd-autorun.c:790 +msgid "_Unmount" +msgstr "Taqıl_mağan Yap" # tr #: ../plugins/background/background.gnome-settings-plugin.in.h:1 @@ -1011,79 +1682,174 @@ msgid "Clipboard plugin" msgstr "Pano eklentisi" +#: ../plugins/color/color.gnome-settings-plugin.in.h:1 +#: ../plugins/color/gsd-color-manager.c:1757 +msgid "Color" +msgstr "TĂŒs" + +#: ../plugins/color/color.gnome-settings-plugin.in.h:2 +msgid "Color plugin" +msgstr "Renk plagini" + # tr -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 -msgid "Dummy" -msgstr "Aptal" +#: ../plugins/color/gsd-color-manager.c:1762 +msgid "Recalibrate now" +msgstr "ƞimdi yeniden dĂŒzelt" # tr -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 -msgid "Dummy plugin" -msgstr "Aptal eklentisi" +#. TRANSLATORS: this is when the device has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1804 +msgid "Recalibration required" +msgstr "Yeniden dĂŒzeltme gerekiyor" # tr -#: ../plugins/font/font.gnome-settings-plugin.in.h:1 -msgid "Font" -msgstr "Yazıtipi" +#. TRANSLATORS: this is when the display has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1816 +#, c-format +msgid "The display '%s' should be recalibrated soon." +msgstr "'%s' ekranının yakında yeniden dĂŒzeltilmesi gerekiyor." # tr -#: ../plugins/font/font.gnome-settings-plugin.in.h:2 -msgid "Font plugin" -msgstr "Yazıtipi eklentisi" +#. TRANSLATORS: this is when the printer has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1825 +#, c-format +msgid "The printer '%s' should be recalibrated soon." +msgstr "'%s' yazıcısının yakında yeniden dĂŒzeltilmesi gerekiyor." # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:64 -msgid "Don't show any warnings again for this filesystem" -msgstr "Bu dosya sistemi için hiçbir uyarı gösterme" +#. TRANSLATORS: this is the application name +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 +msgid "GNOME Settings Daemon Color Plugin" +msgstr "GNOME Ayarlar Servisi Renk Eklentisi" # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 -msgid "Don't show any warnings again" -msgstr "_Bir daha hiçbir uyarı gösterme" +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2151 +msgid "Color calibration device added" +msgstr "Renk dĂŒzeltme aygıtı eklendi" # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:79 -#, c-format -msgid "The volume \"%s\" has only %s disk space remaining." -msgstr "Birim \"%s\" ĂŒzerinde sadece %s disk alanı kaldı." +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2167 +msgid "Color calibration device removed" +msgstr "Renk dĂŒzeltme aygıtı kaldırıldı" + +# tr +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 +msgid "Dummy" +msgstr "Aptal" # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:82 +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 +msgid "Dummy plugin" +msgstr "Aptal eklentisi" + +#: ../plugins/housekeeping/gsd-disk-space.c:332 #, c-format -msgid "This computer has only %s disk space remaining." -msgstr "Bu bilgisayarda sadece %s disk alanı kaldı." +msgid "Low Disk Space on \"%s\"" +msgstr "\"%s\" ĂŒzerinde TĂŒĆŸĂŒk Disk Fezası" # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:98 +#: ../plugins/housekeeping/gsd-disk-space.c:334 +#, c-format msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to another disk or partition." +"The volume \"%s\" has only %s disk space remaining. You may free up some " +"space by emptying the trash." msgstr "" -"Çöp'ĂŒ boƟaltarak, kullanmadığınız programları ya da dosyaları silerek ya da " -"dosyaları baƟka bir diske veya bölĂŒmlemeye taĆŸÄ±yarak disk boƟ alanınızı " -"arttırabilirsiniz." +"Birim \"%s\" ĂŒzerinde sadece %s disk alanı kaldı. ÇöpĂŒ boƟaltarak biraz yer " +"açabilirsiniz." # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:101 -msgid "" -"You can free up disk space by removing unused programs or files, or by " -"moving files to another disk or partition." -msgstr "" -"Kullanmadığınız programları ya da dosyaları silerek ya da dosyaları baƟka " -"bir diske veya bölĂŒmlemeye taĆŸÄ±yarak disk boƟ alanınızı arttırabilirsiniz." +#: ../plugins/housekeeping/gsd-disk-space.c:338 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 +#, c-format +msgid "The volume \"%s\" has only %s disk space remaining." +msgstr "Birim \"%s\" ĂŒzerinde sadece %s disk alanı kaldı." + +#. Set up all the window stuff here +#: ../plugins/housekeeping/gsd-disk-space.c:343 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:205 +msgid "Low Disk Space" +msgstr "TĂŒĆŸĂŒk Disk Fezası" # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:106 +#: ../plugins/housekeeping/gsd-disk-space.c:345 +#, c-format msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to an external disk." +"This computer has only %s disk space remaining. You may free up some space " +"by emptying the trash." +msgstr "" +"Bu bilgisayarda sadece %s disk alanı kaldı. ÇöpĂŒ boƟaltarak biraz yer " +"açabilirsiniz." + +# tr +#: ../plugins/housekeeping/gsd-disk-space.c:348 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 +#, c-format +msgid "This computer has only %s disk space remaining." +msgstr "Bu bilgisayarda sadece %s disk alanı kaldı." + +#: ../plugins/housekeeping/gsd-disk-space.c:363 +msgid "Disk space" +msgstr "Disk fezası" + +# tr +#: ../plugins/housekeeping/gsd-disk-space.c:370 +msgid "Examine" +msgstr "Ä°ncele" + +#: ../plugins/housekeeping/gsd-disk-space.c:378 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:437 +msgid "Empty Trash" +msgstr "Çöpni BoƟat" + +#: ../plugins/housekeeping/gsd-disk-space.c:385 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:452 +msgid "Ignore" +msgstr "Ä°hmal Et" + +# tr +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 +msgid "Don't show any warnings again for this file system" +msgstr "Bu dosya sistemi için hiçbir uyarı gösterme" + +# tr +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:68 +msgid "Don't show any warnings again" +msgstr "_Bir daha hiçbir uyarı gösterme" + +# tr +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to another disk or partition." +msgstr "" +"Çöp'ĂŒ boƟaltarak, kullanmadığınız programları ya da dosyaları silerek ya da " +"dosyaları baƟka bir diske veya bölĂŒmlemeye taĆŸÄ±yarak disk boƟ alanınızı " +"arttırabilirsiniz." + +# tr +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to another disk or partition." +msgstr "" +"Kullanmadığınız programları ya da dosyaları silerek ya da dosyaları baƟka " +"bir diske veya bölĂŒmlemeye taĆŸÄ±yarak disk boƟ alanınızı arttırabilirsiniz." + +# tr +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to an external disk." msgstr "" "Çöp'ĂŒ boƟaltarak, kullanmadığınız programları ya da dosyaları silerek ya da " "dosyaları baƟka bir harici diske taĆŸÄ±yarak disk boƟ alanınızı " "arttırabilirsiniz." # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:109 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 msgid "" "You can free up disk space by removing unused programs or files, or by " "moving files to an external disk." @@ -1091,450 +1857,2511 @@ "Kullanmadığınız programları ya da dosyaları silerek ya da dosyaları baƟka " "bir harici diske taĆŸÄ±yarak disk boƟ alanınızı arttırabilirsiniz." -#. Set up all the window stuff here -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:204 -msgid "Low Disk Space" -msgstr "TĂŒĆŸĂŒk Disk Fezası" +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:445 +msgid "Examine
" +msgstr "Ä°mtihan Et
" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:439 -msgid "Empty Trash" -msgstr "Çöpni BoƟat" +#: ../plugins/keyboard/gsd-keyboard-xkb.c:87 +#, c-format +msgid "" +"Error activating XKB configuration.\n" +"There can be various reasons for that.\n" +"\n" +"If you report this situation as a bug, include the results of\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" +msgstr "" +"XKB endamlandırışını faalleştirgende hata.\n" +"Bunıñ deñişik sebepleri olabilir:\n" +"\n" +"Bu vaziyetni bir illet olaraq maruza etseñiz, lütfen aşağıdakilerniñ " +"neticelerini dahil etiñiz:\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:242 +msgid "_Layouts" +msgstr "_Tizilimler" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:248 +msgid "Show _Keyboard Layout..." +msgstr "_Klavye Tizilimini Köster..." + +#. translators note: +#. * This is the name of the gnome-control-center "region" panel +#: ../plugins/keyboard/gsd-keyboard-xkb.c:255 +msgid "Region and Language Settings" +msgstr "Bölge ve Til Ayarları" + +# tĂŒklĂŒ +#. TRANSLATORS: wireless keyboard with internal battery +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:585 ../plugins/power/gpm-common.c:872 +msgid "Keyboard" +msgid_plural "Keyboards" +msgstr[0] "Klavye(ler)" # tr -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:447 -msgid "Examine..." -msgstr "Ä°ncele..." +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 +msgid "Keyboard plugin" +msgstr "Klavye plagini" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:454 -msgid "Ignore" -msgstr "Ä°hmal Et" +# tr +#. translators: +#. * The device has been disabled +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1087 +msgid "Disabled" +msgstr "ĞayrıqabilleƟtirilgen" # tr -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:96 +#. translators: +#. * The number of sound outputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1094 #, c-format -msgid "Removing item %lu of %lu" -msgstr "Silinen Ă¶ÄŸe %lu / %lu" +msgid "%u Output" +msgid_plural "%u Outputs" +msgstr[0] "%u Çıqtı" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:116 +# tr +#. translators: +#. * The number of sound inputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1104 #, c-format -msgid "Removing: %s" -msgstr "ÇetleƟtirile: %s" +msgid "%u Input" +msgid_plural "%u Inputs" +msgstr[0] "%u Kirdi" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:244 -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:293 -msgid "Emptying the trash" -msgstr "Çöp boƟatıla" +# tr +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1402 +msgid "System Sounds" +msgstr "Sistem Sesleri" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:269 -msgid "Preparing to empty trash..." -msgstr "Çöp boƟatılmağa azırlana..." +# tr +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 +msgid "Media keys" +msgstr "Ortam tuƟları" -#. Translators: "Emptying trash from " -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:296 -msgid "From: " -msgstr "Qaydan:" +# tr +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 +msgid "Media keys plugin" +msgstr "Ortam tuƟları eklentisi" # tr -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:357 -msgid "Empty all of the items from the trash?" -msgstr "Çöpten tĂŒm Ă¶ÄŸeler boƟaltılsın mı?" +#: ../plugins/mouse/gsd-mouse-manager.c:863 +msgid "Could not enable mouse accessibility features" +msgstr "Klavye eriƟilebilirlik özelliklerini etkinleƟtirilemedi" # tr -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:360 +#: ../plugins/mouse/gsd-mouse-manager.c:865 msgid "" -"If you choose to empty the trash, all items in it will be permanently lost. " -"Please note that you can also delete them separately." +"Mouse accessibility requires Mousetweaks to be installed on your system." msgstr "" -"Eğer çöpĂŒ boƟaltmayı seçerseniz, içindeki tĂŒm Ă¶ÄŸeler kalıcı olarak " -"silinecek. LĂŒtfen onları ayrı ayrı da silebileceğinizi unutmayın." +"Fare eriƟilebilirliği Mousetweaks'in sisteminizde yĂŒklĂŒ olmasını gerektirir." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:367 -msgid "_Empty Trash" -msgstr "Çöpni _BoƟat" +# tr +#. TRANSLATORS: wireless mice with internal batteries +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:581 ../plugins/power/gpm-common.c:848 +msgid "Mouse" +msgid_plural "Mice" +msgstr[0] "Fare" # tr -#: ../plugins/keybindings/gsd-keybindings-manager.c:139 +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 +msgid "Mouse plugin" +msgstr "Fare eklentisi" + +#: ../plugins/power/gpm-common.c:47 +msgid "Unknown time" +msgstr "Bilinmegen vaqıt" + +#: ../plugins/power/gpm-common.c:52 #, c-format -msgid "Key binding (%s) is invalid" -msgstr "TuƟ bağı (%s) geçersiz" +msgid "%i minute" +msgid_plural "%i minutes" +msgstr[0] "%i daqqa" -# tr -#: ../plugins/keybindings/gsd-keybindings-manager.c:197 +#: ../plugins/power/gpm-common.c:62 +#, c-format +msgid "%i hour" +msgid_plural "%i hours" +msgstr[0] "%i saat" + +#. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" +#. * Swap order with "%2$s %2$i %1$s %1$i if needed +#: ../plugins/power/gpm-common.c:68 #, c-format -msgid "Key binding (%s) is incomplete" -msgstr "TuƟ bağı (%s) eksik" +msgid "%i %s %i %s" +msgstr "%i %s %i %s" -# tr -#: ../plugins/keybindings/gsd-keybindings-manager.c:493 +#: ../plugins/power/gpm-common.c:69 +msgid "hour" +msgid_plural "hours" +msgstr[0] "saat" + +#: ../plugins/power/gpm-common.c:70 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "daqqa" + +#. TRANSLATORS: The laptop battery is charged, and we know a time. +#. * The parameter is the time, e.g. 7 hours 6 minutes +#: ../plugins/power/gpm-common.c:317 #, c-format -msgid "" -"Error while trying to run (%s)\n" -"which is linked to the key (%s)" -msgstr "" -"(%s) çalÄ±ĆŸtırırken hata\n" -"(%s) tuƟu ile bağlı" +msgid "provides %s laptop runtime" +msgstr "%s tizĂŒstĂŒ çapma zamanı temin eter" + +#. TRANSLATORS: the device is discharging, and we have a time remaining +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. 7 hours 6 minutes +#: ../plugins/power/gpm-common.c:328 +#, c-format +msgid "%s %s remaining" +msgstr "%s %s qala" + +#. TRANSLATORS: device is charging, and we have a time to full and a percentage +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. "7 hours 6 minutes" +#. TRANSLATORS: device is charging, and we have a time to full and a percentage. +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. "7 hours 6 minutes" +#: ../plugins/power/gpm-common.c:349 ../plugins/power/gpm-common.c:366 +#, c-format +msgid "%s %s until charged" +msgstr "%s yĂŒkletilgence %s" + +#. TRANSLATORS: the device is charging, and we have a time to full and empty. +#. * The parameter is a time string, e.g. "7 hours 6 minutes" +#: ../plugins/power/gpm-common.c:356 +#, c-format +msgid "provides %s battery runtime" +msgstr "%s pil çapma zamanı temin eter" + +#. TRANSLATORS: the type of data, e.g. Laptop battery +#: ../plugins/power/gpm-common.c:447 +msgid "Product:" +msgstr "Mahsul:" + +#. TRANSLATORS: device is missing +#. TRANSLATORS: device is charged +#. TRANSLATORS: device is charging +#. TRANSLATORS: device is discharging +#: ../plugins/power/gpm-common.c:451 ../plugins/power/gpm-common.c:454 +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:460 +msgid "Status:" +msgstr "Status:" + +#: ../plugins/power/gpm-common.c:451 +msgid "Missing" +msgstr "Eksik" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:454 ../plugins/power/gpm-common.c:723 +msgid "Charged" +msgstr "YĂŒklengen" # tr -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:1 -msgid "Keybindings" -msgstr "TuƟ bağları" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:711 +msgid "Charging" +msgstr "ƞarj Ediliyor" # tr -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:2 -msgid "Keybindings plugin" -msgstr "TuƟ bağları eklentisi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:460 ../plugins/power/gpm-common.c:715 +msgid "Discharging" +msgstr "BoƟalıyor" # tr -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 -msgid "Keyboard" -msgstr "Klavye" +#. TRANSLATORS: percentage +#: ../plugins/power/gpm-common.c:465 +msgid "Percentage charge:" +msgstr "Dolum yĂŒzdesi:" + +#. TRANSLATORS: manufacturer +#: ../plugins/power/gpm-common.c:469 +msgid "Vendor:" +msgstr "Ä°stihsalcı:" # tr -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 -msgid "Keyboard plugin" -msgstr "Klavye eklentisi" +#. TRANSLATORS: how the battery is made, e.g. Lithium Ion +#: ../plugins/power/gpm-common.c:474 +msgid "Technology:" +msgstr "Teknoloji:" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:117 -#, c-format -msgid "" -"Error activating XKB configuration.\n" -"It can happen under various circumstances:\n" -"- a bug in libxklavier library\n" -"- a bug in X server (xkbcomp, xmodmap utilities)\n" -"- X server with incompatible libxkbfile implementation\n" -"\n" -"X server version data:\n" -"%s\n" -"%d\n" -"%s\n" -"If you report this situation as a bug, please include:\n" -"- The result of %s\n" -"- The result of %s" -msgstr "" -"XKB yapılandırÄ±ĆŸÄ±nı faalleƟtirgende hata.\n" -"Bu, deñiƟik hususlarda sudur etebilir:\n" -"- libxklavier kĂŒtĂŒphanesinde bir illet\n" -"- X sunucısında (xkbcomp, xmodmap aletleri) bir illet\n" -"- ğayrı qabili telif libxkbfile edası ile bir X sunucısı\n" -"\n" -"X sunucısı sĂŒrĂŒm verileri:\n" -"%s\n" -"%d\n" -"%s\n" -"Bu vaziyetni bir illet olaraq maruza etseñiz, lĂŒtfen dahil etiñiz:\n" -"- %s neticesi\n" -"- %s neticesi" +# tr +#. TRANSLATORS: serial number of the battery +#: ../plugins/power/gpm-common.c:478 +msgid "Serial number:" +msgstr "Seri numarası:" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:131 -msgid "" -"You are using XFree 4.3.0.\n" -"There are known problems with complex XKB configurations.\n" -"Try using a simpler configuration or taking a fresher version of XFree " -"software." -msgstr "" -"XFree 4.3.0 qullanasıñız.\n" -"MĂŒrekkep XKB yapılandırÄ±ĆŸları ile biligen meseleler bar.\n" -"Daa basit yapılandırÄ±ĆŸnı qullanuvnı yaki XFree yazılımınıñ daa taze bir " -"sĂŒrĂŒmini aluvnı deñeñiz." +#. TRANSLATORS: model number of the battery +#: ../plugins/power/gpm-common.c:482 +msgid "Model:" +msgstr "Model:" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:203 -msgid "Unknown" -msgstr "NamalĂŒm" +# tr +#. TRANSLATORS: time to fully charged +#: ../plugins/power/gpm-common.c:487 +msgid "Charge time:" +msgstr "Dolum sĂŒresi:" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:272 -#, c-format -msgid "Keyboard Layout \"%s\"" -msgstr "Klavye Tizilimi \"%s\"" +# tr +#. TRANSLATORS: time to empty +#: ../plugins/power/gpm-common.c:493 +msgid "Discharge time:" +msgstr "BoƟalım sĂŒresi:" + +#. TRANSLATORS: Excellent, Good, Fair and Poor are all related to battery Capacity +#: ../plugins/power/gpm-common.c:500 +msgid "Excellent" +msgstr "MĂŒkemmel" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:395 -msgid "_Groups" -msgstr "_ZĂŒmreler" +#: ../plugins/power/gpm-common.c:502 +msgid "Good" +msgstr "Eyi" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:402 -msgid "Keyboard _Preferences" -msgstr "Klavye _Tercihleri" +#: ../plugins/power/gpm-common.c:504 +msgid "Fair" +msgstr "Ortaca" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:408 -msgid "Show Current _Layout" -msgstr "_Cari Tizilimni Köster" +#: ../plugins/power/gpm-common.c:506 +msgid "Poor" +msgstr "Zayıf" # tr -#: ../plugins/keyboard/modmap-dialog.ui.h:1 -msgid "A_vailable files:" -msgstr "_Geçerli dosyalar:" +#: ../plugins/power/gpm-common.c:510 +msgid "Capacity:" +msgstr "Sığa:" + +#: ../plugins/power/gpm-common.c:516 ../plugins/power/gpm-common.c:541 +msgid "Current charge:" +msgstr "Cari yĂŒk:" + +#: ../plugins/power/gpm-common.c:522 +msgid "Last full charge:" +msgstr "Soñki tam yĂŒkleme:" + +#: ../plugins/power/gpm-common.c:528 ../plugins/power/gpm-common.c:546 +msgid "Design charge:" +msgstr "Tasarım yĂŒkĂŒ:" + +#: ../plugins/power/gpm-common.c:533 +msgid "Charge rate:" +msgstr "YĂŒkleme nisbeti:" + +#. TRANSLATORS: system power cord +#: ../plugins/power/gpm-common.c:565 ../plugins/power/gpm-common.c:757 +msgid "AC adapter" +msgid_plural "AC adapters" +msgstr[0] "AlmaĆŸÄ±q Aqım uyarlayıcısı" + +#. TRANSLATORS: laptop primary battery +#: ../plugins/power/gpm-common.c:569 ../plugins/power/gpm-common.c:793 +msgid "Laptop battery" +msgid_plural "Laptop batteries" +msgstr[0] "TizĂŒstĂŒ pili" + +#. TRANSLATORS: battery-backed AC power source +#: ../plugins/power/gpm-common.c:573 ../plugins/power/gpm-common.c:817 +msgid "UPS" +msgid_plural "UPSs" +msgstr[0] "Kesintisiz Qudret Arzı (KQA; UPS)" + +#. TRANSLATORS: a monitor is a device to measure voltage and current +#: ../plugins/power/gpm-common.c:577 ../plugins/power/gpm-common.c:824 +msgid "Monitor" +msgid_plural "Monitors" +msgstr[0] "Közetici" # tr -#: ../plugins/keyboard/modmap-dialog.ui.h:2 -msgid "Load modmap files" -msgstr "Modmap dosyalarını yĂŒkle" +#. TRANSLATORS: portable device +#: ../plugins/power/gpm-common.c:589 ../plugins/power/gpm-common.c:896 +msgid "PDA" +msgid_plural "PDAs" +msgstr[0] "PDA" # tr -#: ../plugins/keyboard/modmap-dialog.ui.h:3 -msgid "Would you like to load the modmap file(s)?" -msgstr "Modmap dosyalarını yĂŒklemek ister misiniz?" +#. TRANSLATORS: cell phone (mobile...) +#: ../plugins/power/gpm-common.c:593 ../plugins/power/gpm-common.c:920 +msgid "Cell phone" +msgid_plural "Cell phones" +msgstr[0] "Cep telefonu" # tr -#: ../plugins/keyboard/modmap-dialog.ui.h:4 -msgid "_Do not show this message again" -msgstr "_Bu mesajı bir daha gösterme" +#. TRANSLATORS: media player, mp3 etc +#: ../plugins/power/gpm-common.c:598 ../plugins/power/gpm-common.c:945 +msgid "Media player" +msgid_plural "Media players" +msgstr[0] "Ortam oynatıcısı" + +#. TRANSLATORS: tablet device +#: ../plugins/power/gpm-common.c:602 ../plugins/power/gpm-common.c:969 +msgid "Tablet" +msgid_plural "Tablets" +msgstr[0] "Tablet" + +#. TRANSLATORS: tablet device +#: ../plugins/power/gpm-common.c:606 ../plugins/power/gpm-common.c:993 +msgid "Computer" +msgid_plural "Computers" +msgstr[0] "Bilgisayar" # tr -#: ../plugins/keyboard/modmap-dialog.ui.h:5 -msgid "_Load" -msgstr "_YĂŒkle" +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:670 +msgid "Lithium Ion" +msgstr "Lityum Ä°yon" # tr -#: ../plugins/keyboard/modmap-dialog.ui.h:6 -msgid "_Loaded files:" -msgstr "_YĂŒklenen dosyalar:" +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:674 +msgid "Lithium Polymer" +msgstr "Lityum Polimer" -#: ../plugins/keyboard/show-layout.ui.h:1 -msgid "Keyboard Layout" -msgstr "Klavye Tizilimi" +# tr +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:678 +msgid "Lithium Iron Phosphate" +msgstr "Lityum Demir Fosfat" # tr -#: ../plugins/media-keys/gsd-media-keys-manager.c:195 -msgid "" -"Could not get default terminal. Verify that your default terminal command is " -"set and points to a valid application." -msgstr "" -"Öntanımlı uçbirim alınamadı. Öntanımlı uçbirim komutunuzun atandığını ve " -"geçerli bir uygulamayı iƟaret ettiğini kontrol edin." +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:682 +msgid "Lead acid" +msgstr "KurƟun asit" # tr -#: ../plugins/media-keys/gsd-media-keys-manager.c:235 -#, c-format -msgid "" -"Couldn't execute command: %s\n" -"Verify that this is a valid command." -msgstr "" -"Komut çalÄ±ĆŸtırılamadı: %s\n" -"Bu komutun geçerli olup olmadığını kontrol edin." +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:686 +msgid "Nickel Cadmium" +msgstr "Nikel Kadmiyum" # tr -#. translators: -#. * The device has been disabled -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:991 -msgid "Disabled" -msgstr "Devre DÄ±ĆŸÄ±" +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:690 +msgid "Nickel metal hydride" +msgstr "Nikel metal hidrit" # tr -#. translators: -#. * The number of sound outputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:998 -#, c-format -msgid "%u Output" -msgid_plural "%u Outputs" -msgstr[0] "%u ÇıkÄ±ĆŸ" +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:694 +msgid "Unknown technology" +msgstr "Bilinmeyen teknoloji" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:719 +msgid "Empty" +msgstr "BoƟ" # tr -#. translators: -#. * The number of sound inputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1008 -#, c-format -msgid "%u Input" -msgid_plural "%u Inputs" -msgstr[0] "%u GiriƟ" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:727 +msgid "Waiting to charge" +msgstr "Dolması bekleniyor" # tr -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1304 -msgid "System Sounds" -msgstr "Sistem Sesleri" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:731 +msgid "Waiting to discharge" +msgstr "BoƟalması bekleniyor" # tr -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 -msgid "Media keys" -msgstr "Ortam tuƟları" +#. TRANSLATORS: device not present +#: ../plugins/power/gpm-common.c:765 +msgid "Laptop battery not present" +msgstr "DizĂŒstĂŒ pili takılı değil" # tr -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 -msgid "Media keys plugin" -msgstr "Ortam tuƟları eklentisi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:769 +msgid "Laptop battery is charging" +msgstr "DizĂŒstĂŒ pili Ɵarj oluyor" # tr -#: ../plugins/mouse/gsd-mouse-manager.c:882 -msgid "Could not enable mouse accessibility features" -msgstr "Klavye eriƟilebilirlik özelliklerini etkinleƟtirilemedi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:773 +msgid "Laptop battery is discharging" +msgstr "DizĂŒstĂŒnĂŒn pil yĂŒkĂŒ boƟalıyor" # tr -#: ../plugins/mouse/gsd-mouse-manager.c:884 -msgid "" -"Mouse accessibility requires mousetweaks to be installed on your system." -msgstr "" -"Fare eriƟilebilirliği mousetweaks'in sisteminizde yĂŒklĂŒ olmasını gerektirir." +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:777 +msgid "Laptop battery is empty" +msgstr "DizĂŒstĂŒ bilgisayar bataryası boƟ" # tr -#: ../plugins/mouse/gsd-mouse-manager.c:887 -msgid "Mouse Preferences" -msgstr "Fare Tercihleri" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:781 +msgid "Laptop battery is charged" +msgstr "DizĂŒstĂŒ bilgisayar bataryası Ɵarj oldu" # tr -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 -msgid "Mouse" -msgstr "Fare" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:785 +msgid "Laptop battery is waiting to charge" +msgstr "DizĂŒstĂŒ pili Ɵarj olmayı bekliyor" # tr -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 -msgid "Mouse plugin" -msgstr "Fare eklentisi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:789 +msgid "Laptop battery is waiting to discharge" +msgstr "Bilgisayar pilinin boƟalması bekleniyor" # tr -#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:1 -msgid "Typing Break" -msgstr "Yazım Molası" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:801 +msgid "UPS is charging" +msgstr "KGK (UPS) Ɵarj oluyor" # tr -#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:2 -msgid "Typing break plugin" -msgstr "Yazım molası eklentisi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:805 +msgid "UPS is discharging" +msgstr "UPS boƟalıyor" # tr -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 -msgid "Set up screen size and rotation settings" -msgstr "Ekran boyutu ve döndĂŒrme çevirimi ayarlarını ata" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:809 +msgid "UPS is empty" +msgstr "UPS boƟ" # tr -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 -msgid "XRandR" -msgstr "XRandR" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:813 +msgid "UPS is charged" +msgstr "KGK (UPS) Ɵarj oldu" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:225 -msgid "Could not switch the monitor configuration" -msgstr "Ekran yapılandırması değiƟtirilemedi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:832 +msgid "Mouse is charging" +msgstr "Fare Ɵarj oluyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:249 -msgid "Could not restore the display's configuration" -msgstr "Ekran yapılandırması geri yĂŒklenemedi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:836 +msgid "Mouse is discharging" +msgstr "Farenin pil yĂŒkĂŒ boƟalıyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:274 -msgid "Could not restore the display's configuration from a backup" -msgstr "Ekran yapılandırması bir yedekten geri yĂŒklenemedi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:840 +msgid "Mouse is empty" +msgstr "Farenin pili boƟ" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:295 -#, c-format -msgid "The display will be reset to its previous configuration in %d second" -msgid_plural "" -"The display will be reset to its previous configuration in %d seconds" -msgstr[0] "Ekran bir önceki yapılandırmasına %d saniye içinde sıfırlanacak" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:844 +msgid "Mouse is charged" +msgstr "Fare Ɵarj oldu" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:344 -msgid "Does the display look OK?" -msgstr "Ekran görĂŒnĂŒmĂŒ tamam mı?" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:856 +msgid "Keyboard is charging" +msgstr "Klavye Ɵarj oluyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:350 -msgid "_Restore Previous Configuration" -msgstr "Önceki _Yapılandırmaya Geri Dön" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:860 +msgid "Keyboard is discharging" +msgstr "Klavyenin pil yĂŒkĂŒ boƟalıyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:351 -msgid "_Keep This Configuration" -msgstr "Bu _Yapılandırmayı Tut" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:864 +msgid "Keyboard is empty" +msgstr "Klavyenin pili boƟ" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:432 -msgid "The selected configuration for displays could not be applied" -msgstr "Ekranlar için seçilen yapılandırma uygulanamadı" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:868 +msgid "Keyboard is charged" +msgstr "Klavye Ɵarj oldu" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:970 -#, c-format -msgid "Could not refresh the screen information: %s" -msgstr "Ekran bilgilerini yenilenemedi: %s" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:880 +msgid "PDA is charging" +msgstr "PDA Ɵarj oluyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:973 -msgid "Trying to switch the monitor configuration anyway." -msgstr "Gene de ekran yapılandırmasına geçmeye çalÄ±ĆŸÄ±lıyor." +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:884 +msgid "PDA is discharging" +msgstr "PDA pil yĂŒkĂŒ boƟalıyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1682 -msgid "Rotation not supported" -msgstr "Devir desteklenmiyor" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:888 +msgid "PDA is empty" +msgstr "PDA boƟ" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1736 -msgid "Could not save monitor configuration" -msgstr "Ekran yapılandırması kaydedilemedi" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:892 +msgid "PDA is charged" +msgstr "PDA doldu" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1754 -msgid "Normal" -msgstr "Normal" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:904 +msgid "Cell phone is charging" +msgstr "Cep telefonu Ɵarj oluyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1755 -msgid "Left" -msgstr "Sol" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:908 +msgid "Cell phone is discharging" +msgstr "Cep telefonu pil yĂŒkĂŒ boƟalıyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1756 -msgid "Right" -msgstr "Sağ" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:912 +msgid "Cell phone is empty" +msgstr "Cep telefonunun pili boƟ" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1757 -msgid "Upside Down" -msgstr "Yukarıdan AƟağı" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:916 +msgid "Cell phone is charged" +msgstr "Cep telefonu Ɵarj oldu" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1877 -msgid "_Configure Display Settings ..." -msgstr "_Ekran Ayarları Yapılandır..." +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:929 +msgid "Media player is charging" +msgstr "Ortam oynatıcısı şarj oluyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1918 -msgid "Configure display settings" -msgstr "Ekran ayarlarını yapılandır" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:933 +msgid "Media player is discharging" +msgstr "Ortam oynatıcısının pil yĂŒkĂŒ boƟalıyor" # tr -#: ../plugins/xrandr/gsd-xrandr-manager.c:1978 -msgid "Could not apply the stored configuration for monitors" -msgstr "Ekranlar için kayıtlı yapılandırma uygulanamadı" +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:937 +msgid "Media player is empty" +msgstr "Ortam oynatıcısının pili boƟ" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:941 +msgid "Media player is charged" +msgstr "Ortam oynatıcı doldu" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:953 +msgid "Tablet is charging" +msgstr "Tablet Ɵarj oluyor" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:957 +msgid "Tablet is discharging" +msgstr "Tablet pil yĂŒkĂŒ boƟalıyor" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:961 +msgid "Tablet is empty" +msgstr "Tablet pili boƟ" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:965 +msgid "Tablet is charged" +msgstr "Tablet doldu" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:977 +msgid "Computer is charging" +msgstr "Bilgisayar Ɵarj oluyor" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:981 +msgid "Computer is discharging" +msgstr "Bilgisayar pil yĂŒkĂŒ boƟalıyor" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:985 +msgid "Computer is empty" +msgstr "Bilgisayarın pili boƟ" + +# tr +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:989 +msgid "Computer is charged" +msgstr "Bigisayar Ɵarj oldu" + +# tr +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 +msgid "Battery may be recalled" +msgstr "Pil geri çağırılmÄ±ĆŸ olabilir" + +# tr +#: ../plugins/power/gsd-power-manager.c:994 +#, c-format +msgid "" +"A battery in your computer may have been recalled by %s and you may be at " +"risk." +msgstr "" +"%s tarafından bilgisayar piliniz geri çağrılmÄ±ĆŸ olabilir ve risk altında " +"bulunuyor olabilirsiniz." + +# tr +#: ../plugins/power/gsd-power-manager.c:997 +msgid "For more information visit the battery recall website." +msgstr "Daha fazla bilgi için geri çağırma sitesini ziyaret edin." # tr -#: ../plugins/xrdb/gsd-xrdb-manager.c:255 -#: ../plugins/xrdb/gsd-xrdb-manager.c:324 -msgid "Cannot determine user's home directory" -msgstr "Kullanıcı'nın ana dizini belirlenemedi" +#. TRANSLATORS: button text, visit the manufacturers recall website +#: ../plugins/power/gsd-power-manager.c:1008 +msgid "Visit recall website" +msgstr "Geri çağırma sitesini ziyaret et" # tr -#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:1 -msgid "Manage the X resource database" -msgstr "X kaynak veritabanını yönet" +#. TRANSLATORS: button text, do not show this bubble again +#: ../plugins/power/gsd-power-manager.c:1012 +msgid "Do not show me this again" +msgstr "Bu iletiyi tekrar gösterme" -#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:2 -msgid "X Resource Database" -msgstr "X Menba Veritabanı" +# tr +#. TRANSLATORS: UPS is now discharging +#: ../plugins/power/gsd-power-manager.c:1223 +msgid "UPS Discharging" +msgstr "UPS BoƟalıyor" # tr -#: ../plugins/xsettings/gsd-xsettings-manager.c:596 +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format -msgid "GConf key %s set to type %s but its expected type was %s\n" -msgstr "GConf anahtarı %s, %s tĂŒrĂŒne ayarlanmÄ±ĆŸ, fakat olması gereken tĂŒr %s\n" +msgid "%s of UPS backup power remaining" +msgstr "UPS yedek gĂŒcĂŒ %s kaldı" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 -msgid "Manage X Settings" -msgstr "X Ayarlarını Ä°dare Et" +#. TRANSLATORS: this is the notification application name +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 +#: ../plugins/power/power.gnome-settings-plugin.in.h:1 +msgid "Power" +msgstr "Qudret" + +#. TRANSLATORS: laptop battery low, and we only have one battery +#: ../plugins/power/gsd-power-manager.c:1342 +msgid "Battery low" +msgstr "Pil tĂŒĆŸĂŒk" + +#. TRANSLATORS: laptop battery low, and we have more than one kind of battery +#: ../plugins/power/gsd-power-manager.c:1345 +msgid "Laptop battery low" +msgstr "TizĂŒstĂŒ pili tĂŒĆŸĂŒk" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 -msgid "X Settings" -msgstr "X Ayarları" +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1351 +#, c-format +msgid "Approximately %s remaining (%.0f%%)" +msgstr "Taqriben %s qala (%.0f%%)" -#~ msgid "Binding to suspend the computer." -#~ msgstr "Bilgisayarı beklemeye almak için bağ." +#. TRANSLATORS: UPS is starting to get a little low +#: ../plugins/power/gsd-power-manager.c:1355 +msgid "UPS low" +msgstr "UPS tĂŒĆŸĂŒk" -#~ msgid "Suspend" -#~ msgstr "Bekleme" +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1359 +#, c-format +msgid "Approximately %s of remaining UPS backup power (%.0f%%)" +msgstr "" +"Qalğan Kesintisiz Qudret Arzınıñ (UPS; KQA) Taqribiy vaqtı: %s (%.0f" +"%%)" -#~ msgid "" -#~ "Couldn't put the machine to sleep.\n" -#~ "Verify that the machine is correctly configured." -#~ msgstr "" -#~ "Makine uyku kipine konulamadı.\n" -#~ "Makinenin doğru ayarlanıp ayarlanmadığını kontrol edin." +#. TRANSLATORS: mouse is getting a little low +#. TRANSLATORS: the mouse battery is very low +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 +msgid "Mouse battery low" +msgstr "Sıçan pili tĂŒĆŸĂŒk" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1366 +#, c-format +msgid "Wireless mouse is low in power (%.0f%%)" +msgstr "Kabelsiz sıçannıñ elektrigi tĂŒĆŸĂŒk (%.0f%%)" + +#. TRANSLATORS: keyboard is getting a little low +#. TRANSLATORS: the keyboard battery is very low +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 +msgid "Keyboard battery low" +msgstr "Klavye pili tĂŒĆŸĂŒk" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1373 +#, c-format +msgid "Wireless keyboard is low in power (%.0f%%)" +msgstr "Kabelsiz klavyeniñ elektrigi tüşük (%.0f%%)" + +# tr +#. TRANSLATORS: PDA is getting a little low +#. TRANSLATORS: the PDA battery is very low +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 +msgid "PDA battery low" +msgstr "PDA pili zayıf" + +# tr +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1380 +#, c-format +msgid "PDA is low in power (%.0f%%)" +msgstr "PDA'nın gĂŒĂ§ seviyesi dĂŒĆŸĂŒk (%.0f%%)" + +# tr +#. TRANSLATORS: cell phone (mobile) is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 +msgid "Cell phone battery low" +msgstr "Cep telefonu pili zayıf" + +# tr +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1387 +#, c-format +msgid "Cell phone is low in power (%.0f%%)" +msgstr "Cep telefonunun gĂŒĂ§ seviyesi dĂŒĆŸĂŒk (%.0f%%)" + +# tr +#. TRANSLATORS: media player, e.g. mp3 is getting a little low +#: ../plugins/power/gsd-power-manager.c:1392 +msgid "Media player battery low" +msgstr "Ortam oynatıcısı pili zayıf" + +# tr +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1395 +#, c-format +msgid "Media player is low in power (%.0f%%)" +msgstr "Ortam yĂŒrĂŒtĂŒcĂŒnĂŒn gĂŒĂ§ seviyesi dĂŒĆŸĂŒk (%.0f%%)" + +# tr +#. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 +msgid "Tablet battery low" +msgstr "Tablet pili zayıf" + +# tr +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1402 +#, c-format +msgid "Tablet is low in power (%.0f%%)" +msgstr "Tablet'in gĂŒĂ§ seviyesi dĂŒĆŸĂŒk (%.0f%%)" + +# tr +#. TRANSLATORS: computer, e.g. ipad is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 +msgid "Attached computer battery low" +msgstr "BağlanmÄ±ĆŸ bilgisayar pili zayıf" + +# tr +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1409 +#, c-format +msgid "Attached computer is low in power (%.0f%%)" +msgstr "BağlanmÄ±ĆŸ bilgisayarın gĂŒĂ§ seviyesi dĂŒĆŸĂŒk (%.0f%%)" + +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:1446 +msgid "Battery is low" +msgstr "Pil tĂŒĆŸĂŒktir" + +#. TRANSLATORS: laptop battery critically low, and only have one kind of battery +#: ../plugins/power/gsd-power-manager.c:1488 +msgid "Battery critically low" +msgstr "Pil kritik derece tĂŒĆŸĂŒk" + +#. TRANSLATORS: laptop battery critically low, and we have more than one type of battery +#. TRANSLATORS: laptop battery is really, really, low +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 +msgid "Laptop battery critically low" +msgstr "TizĂŒstĂŒ pili soñ derece tĂŒĆŸĂŒk" + +#. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything +#: ../plugins/power/gsd-power-manager.c:1500 +msgid "Plug in your AC adapter to avoid losing data." +msgstr "" +"Verilerni coymaqtan qaçınmaq iĂ§ĂŒn AlmaĆŸÄ±q Aqım adaptorıñıznı içke tıqıñız." + +# tĂŒklĂŒ +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1504 +#, c-format +msgid "Computer will suspend very soon unless it is plugged in." +msgstr "Rozetke tıqılmağanı tadqirde bilgisayar çoq yaqında sarqıtılacaq." + +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1508 +#, c-format +msgid "Computer will hibernate very soon unless it is plugged in." +msgstr "Rozetke tıqılmağanı tadqirde bilgisayar çoq yaqında yuqlatılacaq." + +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1512 +#, c-format +msgid "Computer will shutdown very soon unless it is plugged in." +msgstr "Rozetke tıqılmağanı tadqirde bilgisayar çoq yaqında söndĂŒrilecek." + +#. TRANSLATORS: the UPS is very low +#. TRANSLATORS: UPS is really, really, low +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 +msgid "UPS critically low" +msgstr "KQA (UPS) soñ derece tüşük" + +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1523 +#, c-format +msgid "" +"Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " +"your computer to avoid losing data." +msgstr "" +"Qalğan Kesintisiz Qudret Arzınıñ (UPS; KQA) Taqribiy vaqtı: %s (%.0f" +"%%). Verilerni coymaqtan qaçınmaq iĂ§ĂŒn bilgisayarıñızğa AlmaĆŸÄ±q Aqım " +"qudretini keri tikleñiz." + +# tr +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1532 +#, c-format +msgid "" +"Wireless mouse is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"Kablosuz farenin gĂŒĂ§ seviyesi çok dĂŒĆŸĂŒk (%.0f%%). Eğer Ɵarj edilmezse, bu " +"aygıt yakında iƟlevselliğini yitirecek." + +# tr +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1540 +#, c-format +msgid "" +"Wireless keyboard is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"Kablosuz klavyenin gĂŒĂ§ seviyesi çok dĂŒĆŸĂŒk (%.0f%%). Eğer Ɵarj edilmezse, bu " +"aygıt yakında iƟlevselliğini yitirecek." + +# tr +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1549 +#, c-format +msgid "" +"PDA is very low in power (%.0f%%). This device will soon stop functioning if " +"not charged." +msgstr "" +"PDA'nın gĂŒĂ§ seviyesi çok dĂŒĆŸĂŒk (%.0f%%). Eğer Ɵarj edilmezse, bu aygıt " +"yakında iƟlevselliğini yitirecek." + +# tr +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1559 +#, c-format +msgid "" +"Cell phone is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"Cep telefonunun gĂŒĂ§ seviyesi çok dĂŒĆŸĂŒk (%.0f%%). Eğer Ɵarj edilmezse, bu " +"aygıt yakında iƟlevselliğini yitirecek." + +# tr +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1570 +#, c-format +msgid "" +"Media player is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"Ortam yĂŒrĂŒtĂŒcĂŒnĂŒn gĂŒĂ§ seviyesi çok dĂŒĆŸĂŒk (%.0f%%). Eğer Ɵarj edilmezse, bu " +"aygıt yakında iƟlevselliğini yitirecek." + +# tr +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1579 +#, c-format +msgid "" +"Tablet is very low in power (%.0f%%). This device will soon stop functioning " +"if not charged." +msgstr "" +"Tablet bilgisayarın gĂŒĂ§ seviyesi çok dĂŒĆŸĂŒk (%.0f%%). Eğer Ɵarj edilmezse, bu " +"aygıt yakında iƟlevselliğini yitirecek." + +# tr +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1588 +#, c-format +msgid "" +"Attached computer is very low in power (%.0f%%). The device will soon " +"shutdown if not charged." +msgstr "" +"BağlanmÄ±ĆŸ bilgisayarın gĂŒĂ§ seviyesi çok dĂŒĆŸĂŒk (%.0f%%). Eğer Ɵarj edilmezse, " +"bu aygıt yakında iƟlevselliğini yitirecek." + +# tr +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 +msgid "Battery is critically low" +msgstr "Pil gĂŒcĂŒ tehlikeli biçimde dĂŒĆŸĂŒk" + +# tr +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1683 +msgid "" +"The battery is below the critical level and this computer will power-off when the battery becomes completely empty." +msgstr "" +"Pil gĂŒcĂŒ tehlikeli sınırın altında ve pil tamamen boƟaldığında bu " +"bilgisayarın gĂŒcĂŒ kesilecek." + +#. TRANSLATORS: computer will suspend +#: ../plugins/power/gsd-power-manager.c:1689 +msgid "" +"The battery is below the critical level and this computer is about to " +"suspend.\n" +"NOTE: A small amount of power is required to keep your computer in a " +"suspended state." +msgstr "" +"Pil kritik seviyeniñ altındadır ve bu bilgisayar sarqıtılmaq ĂŒzredir.\n" +"NOT: Bilgisayarıñıznı sarqıtılğan halette tutmaq iĂ§ĂŒn kiçik miqdarda " +"elektrik Ɵarttır." + +# tr +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1696 +msgid "" +"The battery is below the critical level and this computer is about to " +"hibernate." +msgstr "" +"Pil gĂŒcĂŒ tehlikeli seviyenin altında ve bu bilgisayar beklemeye geçmek ĂŒzere." + +# tr +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1701 +msgid "" +"The battery is below the critical level and this computer is about to " +"shutdown." +msgstr "" +"Pil gĂŒcĂŒ tehlikeli seviyenin altında ve bu bilgisayar kapatılmak ĂŒzere." + +# tr +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1719 +msgid "" +"UPS is below the critical level and this computer will power-off when " +"the UPS becomes completely empty." +msgstr "" +"UPS gĂŒcĂŒ tehlikeli sınırın altında ve UPS tamamen boƟaldığında bu " +"bilgisayarın gĂŒcĂŒ kesilecek." + +# tr +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1725 +msgid "" +"UPS is below the critical level and this computer is about to hibernate." +msgstr "" +"UPS gĂŒcĂŒ tehlikeli sınırın altında ve bu bilgisayar beklemeye alınmak ĂŒzere." + +# tr +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1730 +msgid "UPS is below the critical level and this computer is about to shutdown." +msgstr "UPS gĂŒcĂŒ tehlikeli sınırın altında ve bu bilgisayar kapatılmak ĂŒzere." + +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2224 +msgid "Lid has been opened" +msgstr "Qapak açıldı" + +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2301 +msgid "Lid has been closed" +msgstr "Qapaq qapatıldı" + +#. TRANSLATORS: this is the title of the power manager status icon +#. * that is only shown in fallback mode +#: ../plugins/power/gsd-power-manager.c:3692 +msgid "Power Manager" +msgstr "Qudret Ä°darecisi" + +# tr +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:1 +msgid "Authentication is required to modify the laptop brightness" +msgstr "DizĂŒstĂŒ parlaklığını değƟtirmek için yetkinleƟtirme gerekli" + +# tr +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the backlight brightness. +#. +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +msgid "Modify the laptop brightness" +msgstr "DizĂŒstĂŒ bilgisayar ekran parlaklığını değiƟtir" + +#: ../plugins/power/power.gnome-settings-plugin.in.h:2 +msgid "Power plugin" +msgstr "Qudret plagini" + +# tr +#. Translators: We are configuring new printer +#: ../plugins/print-notifications/gsd-printer.c:883 +msgid "Configuring new printer" +msgstr "Yeni yazıcı yapılandırılıyor" + +#. Translators: Just wait +#: ../plugins/print-notifications/gsd-printer.c:885 +msgid "Please wait..." +msgstr "LĂŒtfen bekleñiz..." + +# tr +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:912 +msgid "Missing printer driver" +msgstr "Yazıcı sĂŒrĂŒcĂŒsĂŒ bulunamadı" + +# tr +#. Translators: We have no driver installed for the device +#: ../plugins/print-notifications/gsd-printer.c:921 +#, c-format +msgid "No printer driver for %s." +msgstr "%s için yazıcı sĂŒrĂŒcĂŒsĂŒ yok." + +# tr +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:926 +msgid "No driver for this printer." +msgstr "Bu yazıcı için yazıcı sĂŒrĂŒcĂŒsĂŒ yok." + +#: ../plugins/print-notifications/gsd-printer.c:1024 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:778 +msgid "Printers" +msgstr "Bastırıcılar" + +#. Translators: The printer is low on toner (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 +msgid "Toner low" +msgstr "Toner ĂŒĆŸĂŒk" + +#. Translators: The printer has no toner left (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:299 +msgid "Toner empty" +msgstr "Toner boƟ" + +#. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:301 +msgid "Not connected?" +msgstr "Bağlanmağanmı?" + +#. Translators: One or more covers on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:303 +msgid "Cover open" +msgstr "Qapaq açıq" + +# tr +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 +msgid "Printer configuration error" +msgstr "Yazıcı yapılandırma hatası" + +# tr +#. Translators: One or more doors on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:307 +msgid "Door open" +msgstr "Kapı açık" + +# tr +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 +msgid "Marker supply low" +msgstr "Marker kaynağı az" + +# tr +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 +msgid "Out of a marker supply" +msgstr "Marker kaynağı tĂŒkenmiƟ" + +# tr +#. Translators: At least one input tray is low on media (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 +msgid "Paper low" +msgstr "Kağıt az" + +# tr +#. Translators: At least one input tray is empty (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:315 +msgid "Out of paper" +msgstr "Kağıt tĂŒkenmiƟ" + +# tr +#. Translators: The printer is offline (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:317 +msgid "Printer off-line" +msgstr "Yazıcı çevrimdÄ±ĆŸÄ±" + +# tr +#. Translators: The printer has detected an error (same as in system-config-printer) +#. Translators: This is a title of an error notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:319 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:721 +msgid "Printer error" +msgstr "Yazıcı hatası" + +# tr +#. Translators: The printer is low on toner (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:323 +#, c-format +msgid "Printer '%s' is low on toner." +msgstr "Yazıcı '%s' de toner az kalmÄ±ĆŸ." + +# tr +#. Translators: The printer has no toner left (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:325 +#, c-format +msgid "Printer '%s' has no toner left." +msgstr "'%s' yazıcısının toneri tĂŒkenmiƟ." + +#. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:327 +#, c-format +msgid "Printer '%s' may not be connected." +msgstr "Bastırıcı '%s' bağlanılalmay." + +# tr +#. Translators: One or more covers on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:329 +#, c-format +msgid "The cover is open on printer '%s'." +msgstr "'%s' yazıcısının kapağı açık." + +# tr +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:331 +#, c-format +msgid "There is a missing print filter for printer '%s'." +msgstr "'%s' yazıcısı için bir yazdırma filitresi eksik." + +# tr +#. Translators: One or more doors on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 +#, c-format +msgid "The door is open on printer '%s'." +msgstr "'%s' yazıcısının kapısı açık." + +# tr +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 +#, c-format +msgid "Printer '%s' is low on a marker supply." +msgstr "'%s' yazıcısının marker kaynaklarından biri azalmÄ±ĆŸ." + +# tr +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 +#, c-format +msgid "Printer '%s' is out of a marker supply." +msgstr "'%s' yazıcısının marker kaynaklarından biri tĂŒkenmiƟ." + +# tr +#. Translators: At least one input tray is low on media (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 +#, c-format +msgid "Printer '%s' is low on paper." +msgstr "'%s' yazıcısında kağıt azalmÄ±ĆŸ." + +# tr +#. Translators: At least one input tray is empty (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 +#, c-format +msgid "Printer '%s' is out of paper." +msgstr "'%s' yazıcısında kağıt tĂŒkenmiƟ" + +# tr +#. Translators: The printer is offline (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:344 +#, c-format +msgid "Printer '%s' is currently off-line." +msgstr "'%s' yazıcısı Ɵu anda çevrim dÄ±ĆŸÄ±." + +# tr +#. Translators: The printer has detected an error (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:346 +#, c-format +msgid "There is a problem on printer '%s'." +msgstr "'%s' yazıcısında bir problem var." + +# tr +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:423 +msgid "Printer added" +msgstr "Yazıcı eklendi" + +# tr +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:431 +msgid "Printer removed" +msgstr "Yazıcı çıkartıldı" + +# tr +#. Translators: A print job has been stopped +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:448 +msgid "Printing stopped" +msgstr "Yazıcı durdu" + +# tr +#. Translators: "print-job xy" on a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:450 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:456 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:462 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:468 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:480 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:500 +#, c-format +msgid "\"%s\" on %s" +msgstr "\"%s\" Ɵunda %s" + +# tr +#. Translators: A print job has been canceled +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:454 +msgid "Printing canceled" +msgstr "Yazdırma iptal edildi" + +# tr +#. Translators: A print job has been aborted +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:460 +msgid "Printing aborted" +msgstr "Yazdırma durduruldu" + +# tr +#. Translators: A print job has been completed +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:466 +msgid "Printing completed" +msgstr "Yazdırma tamamlandı" + +# tr +#. Translators: A job is printing +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:478 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:498 +msgid "Printing" +msgstr "Yazdırılıyor" + +# tr +#. Translators: This is a title of a report notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:715 +msgid "Printer report" +msgstr "Yazıcı raporu" + +# tr +#. Translators: This is a title of a warning notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:718 +msgid "Printer warning" +msgstr "Yazıcı uyarısı" + +# tr +#. Translators: "Printer 'MyPrinterName': 'Description of the report/warning/error from a PPD file'." +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:728 +#, c-format +msgid "Printer '%s': '%s'." +msgstr "Yazıcı '%s': '%s'." + +# tr +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 +msgid "Print-notifications" +msgstr "Yazdırma-uyarıları" + +# tr +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:2 +msgid "Print-notifications plugin" +msgstr "Yazdırma-uyarıları eklentisi" + +# tĂŒklĂŒ +#: ../plugins/smartcard/gsd-smartcard-manager.c:523 +msgid "received error or hang up from event source" +msgstr "vaqia menbasından hata yaki qapama alındı" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:657 +#, c-format +msgid "NSS security system could not be initialized" +msgstr "NSS emniyet sistemi baƟlanÄŸÄ±Ă§landırılamadı" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:785 +#, c-format +msgid "no suitable smartcard driver could be found" +msgstr "uyğun bir aqıllı-kart sürücisi tapılamadı" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:799 +#, c-format +msgid "smartcard driver '%s' could not be loaded" +msgstr "aqıllı-kart sürücisi '%s' yüklenamadı" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:871 +#, c-format +msgid "could not watch for incoming card events - %s" +msgstr "kelici kart vaqiaları içün seyretilamadı - %s" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:1269 +#, c-format +msgid "encountered unexpected error while waiting for smartcard events" +msgstr "aqıllı-kart vaqialarını beklegende beklenmegen hata rastkeldi" + +#. TRANSLATORS: we need to restart so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:240 +msgid "" +"You will need to restart this computer before the hardware will work " +"correctly." +msgstr "" +"Donanım tĂŒzgĂŒn çalÄ±ĆŸmazdan evvel bu bilgisayarnı kene baƟlatmañız kerekecek." + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:243 +#: ../plugins/updates/gsd-updates-firmware.c:268 +#: ../plugins/updates/gsd-updates-firmware.c:293 +msgid "Additional software was installed" +msgstr "Ek yazılım quruldı" + +#: ../plugins/updates/gsd-updates-firmware.c:244 +#: ../plugins/updates/gsd-updates-firmware.c:269 +#: ../plugins/updates/gsd-updates-firmware.c:294 +#: ../plugins/updates/gsd-updates-firmware.c:583 +#: ../plugins/updates/gsd-updates-manager.c:203 +#: ../plugins/updates/gsd-updates-manager.c:328 +#: ../plugins/updates/gsd-updates-manager.c:387 +#: ../plugins/updates/gsd-updates-manager.c:443 +#: ../plugins/updates/gsd-updates-manager.c:575 +#: ../plugins/updates/gsd-updates-manager.c:663 +msgid "Software Updates" +msgstr "Yazılım Yañartmaları" + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:265 +msgid "" +"You will need to remove and then reinsert the hardware before it will work " +"correctly." +msgstr "" +"Donanım tĂŒzgĂŒn çalÄ±ĆŸmazdan evvel onı çetleƟtirip kene qıstırmañız kerekecek." + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:290 +msgid "Your hardware has been set up and is now ready to use." +msgstr "Donanımıñız ayarlanğandır ve Ɵimdi qullanımğa hazırdır." + +# tĂŒklĂŒ +#. TRANSLATORS: we need another package to keep udev quiet +#: ../plugins/updates/gsd-updates-firmware.c:568 +msgid "" +"Additional firmware is required to make hardware in this computer function " +"correctly." +msgstr "" +"Bu bilgisayardaki donanımnı tĂŒzgĂŒn iƟletmek iĂ§ĂŒn ek sabit yazılım Ɵarttır." + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:582 +msgid "Additional firmware required" +msgstr "Ek cihaz yazılımı Ɵarttır" + +# tr +#. TRANSLATORS: button label +#: ../plugins/updates/gsd-updates-firmware.c:588 +msgid "Install firmware" +msgstr "Aygıt yazılımını yĂŒkle" + +# tr +#. TRANSLATORS: we should ignore this device and not ask anymore +#: ../plugins/updates/gsd-updates-firmware.c:591 +msgid "Ignore devices" +msgstr "Aygıtları yoksay" + +#. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 +#: ../plugins/updates/gsd-updates-manager.c:199 +msgid "Distribution upgrades available" +msgstr "Dağıtım ĂŒst-qademelemeleri mevcut" + +#. TRANSLATORS: provides more information about the upgrade +#: ../plugins/updates/gsd-updates-manager.c:208 +msgid "More information" +msgstr "Daha fazla malĂŒmat" + +#. TRANSLATORS: title in the libnotify popup +#: ../plugins/updates/gsd-updates-manager.c:311 +#: ../plugins/updates/gsd-updates-manager.c:370 +msgid "Update" +msgid_plural "Updates" +msgstr[0] "Yañartma(lar)" + +# tĂŒklĂŒ +#. TRANSLATORS: message when there are security updates +#: ../plugins/updates/gsd-updates-manager.c:314 +msgid "An important software update is available" +msgid_plural "Important software updates are available" +msgstr[0] "MĂŒhim yazılım yañartmaları mevcuttır" + +#. TRANSLATORS: button: open the update viewer to install updates +#: ../plugins/updates/gsd-updates-manager.c:333 +#: ../plugins/updates/gsd-updates-manager.c:392 +msgid "Install updates" +msgstr "Yañartmalarnı Qur" + +#. TRANSLATORS: message when there are non-security updates +#: ../plugins/updates/gsd-updates-manager.c:373 +msgid "A software update is available." +msgid_plural "Software updates are available." +msgstr[0] "Yazılım yañartmaları faydalanÄ±ĆŸlıdır." + +# tr +#. TRANSLATORS: policy says update, but we are on battery and so prompt +#: ../plugins/updates/gsd-updates-manager.c:438 +msgid "" +"Automatic updates are not being installed as the computer is running on " +"battery power" +msgstr "" +"Otomatik gĂŒncellemeler bilgisayar batarya gĂŒcĂŒnden beslendiği için " +"yĂŒklenemedi" + +#. TRANSLATORS: informs user will not install by default +#: ../plugins/updates/gsd-updates-manager.c:440 +msgid "Updates not installed" +msgstr "Yañartmalar qurulmay" + +# tr +#. TRANSLATORS: to hell with my battery life, just do it +#: ../plugins/updates/gsd-updates-manager.c:448 +msgid "Install the updates anyway" +msgstr "GĂŒncellemeleri yine de yĂŒkle" + +#: ../plugins/updates/gsd-updates-manager.c:464 +msgid "No restart is required." +msgstr "Kene baƟlatuv Ɵart degildir." + +#: ../plugins/updates/gsd-updates-manager.c:467 +msgid "A restart is required." +msgstr "Bir kene baƟlatma Ɵarttır." + +# tr +#: ../plugins/updates/gsd-updates-manager.c:470 +msgid "You need to log out and log back in." +msgstr "Oturumdan çıkıp tekrar oturuma girmeniz gerekiyor." + +# tr +#: ../plugins/updates/gsd-updates-manager.c:473 +msgid "You need to restart the application." +msgstr "Uygulamayı yeniden baƟlatmanız gerekiyor." + +#: ../plugins/updates/gsd-updates-manager.c:476 +msgid "You need to log out and log back in to remain secure." +msgstr "" +"Emniyetli qalmaq iĂ§ĂŒn, oturımnı qapatmañız ve oturımnı keri açmañız kerek." + +#: ../plugins/updates/gsd-updates-manager.c:479 +msgid "A restart is required to remain secure." +msgstr "Emniyetli qalmaq iĂ§ĂŒn bir kene baƟlatma Ɵarttır." + +# tr +#. TRANSLATORS: we did the update, but some updates were skipped and not applied +#: ../plugins/updates/gsd-updates-manager.c:540 +msgid "One package was skipped:" +msgid_plural "Some packages were skipped:" +msgstr[0] "Bazı paketler atlandı:" + +#. TRANSLATORS: title: system update completed all okay +#: ../plugins/updates/gsd-updates-manager.c:572 +msgid "The system update has completed" +msgstr "Sistem yañartması tamamlanğandır" + +#. TRANSLATORS: restart computer as system packages need update +#: ../plugins/updates/gsd-updates-manager.c:581 +msgid "Restart computer now" +msgstr "Bilgisayarnı Ɵimdi kene baƟlat" + +#. TRANSLATORS: the updates mechanism +#: ../plugins/updates/gsd-updates-manager.c:651 +msgid "Updates" +msgstr "Yañartmalar" + +#. TRANSLATORS: we failed to get the updates multiple times, +#. * and now we need to inform the user that something might be wrong +#: ../plugins/updates/gsd-updates-manager.c:655 +msgid "Unable to access software updates" +msgstr "Yazılım yañartmalarına iriƟilalmay" + +#. TRANSLATORS: try again, this time launching the update viewer +#: ../plugins/updates/gsd-updates-manager.c:658 +msgid "Try again" +msgstr "Yañıdan deñe" + +# tr +#. TRANSLATORS: the reason why we've inhibited it +#: ../plugins/updates/gsd-updates-manager.c:1096 +msgid "A transaction that cannot be interrupted is running" +msgstr "Kesintiye uğratılamayacak bir iƟlem çalÄ±ĆŸÄ±yor" + +#: ../plugins/wacom/gsd-wacom-device.c:909 +#, c-format +msgid "Left Ring Mode #%d" +msgstr "Sol Alqa Tarzı #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:916 +#, c-format +msgid "Right Ring Mode #%d" +msgstr "Oñ Alqa Tarzı #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:944 +#, c-format +msgid "Left Touchstrip Mode #%d" +msgstr "Sol TiyĂŒv ƞeriti Tarzı #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:951 +#, c-format +msgid "Right Touchstrip Mode #%d" +msgstr "Oñ Tiyüv Şeriti Tarzı #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:966 +#, c-format +msgid "Left Touchring Mode Switch" +msgstr "Sol Tiyüv Alqası Tarzı AlmaƟtırÄŸÄ±Ă§Ä±" + +#: ../plugins/wacom/gsd-wacom-device.c:968 +#, c-format +msgid "Right Touchring Mode Switch" +msgstr "Oñ Tiyüv Alqası Tarzı Almaştırğıçı" + +#: ../plugins/wacom/gsd-wacom-device.c:971 +#, c-format +msgid "Left Touchstrip Mode Switch" +msgstr "Sol Tiyüv ƞeriti Tarzı Almaştırğıçı" + +#: ../plugins/wacom/gsd-wacom-device.c:973 +#, c-format +msgid "Right Touchstrip Mode Switch" +msgstr "Oñ Tiyüv Şeriti Tarzı Almaştırğıçı" + +# tr +#: ../plugins/wacom/gsd-wacom-device.c:978 +#, c-format +msgid "Mode Switch #%d" +msgstr "Kip DeğiƟtirme #%d" + +# tr +#: ../plugins/wacom/gsd-wacom-device.c:1050 +#, c-format +msgid "Left Button #%d" +msgstr "Sol TuƟ #%d" + +# tr +#: ../plugins/wacom/gsd-wacom-device.c:1053 +#, c-format +msgid "Right Button #%d" +msgstr "Sağ TuƟ #%d" + +# tr +#: ../plugins/wacom/gsd-wacom-device.c:1056 +#, c-format +msgid "Top Button #%d" +msgstr "Üst TuƟ #%d" + +# tr +#: ../plugins/wacom/gsd-wacom-device.c:1059 +#, c-format +msgid "Bottom Button #%d" +msgstr "Alt TuƟ #%d" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:1 +msgid "Authentication is required to modify the lit LED for a Wacom tablet" +msgstr "" +"Bir Wacom tableti iĂ§ĂŒn Ä±ĆŸÄ±qlı IĆŸÄ±q-Saçqan Diodnı (LED; ISD) baƟqalaƟtırmaq " +"iĂ§ĂŒn sahihlenim Ɵarttır" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "" +"Bir Wacom tableti iĂ§ĂŒn Ä±ĆŸÄ±qlı IĆŸÄ±q-Saçqan Diodnı (LED; ISD) baƟqalaƟtır" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:500 +msgid "Could not switch the monitor configuration" +msgstr "Ekran yapılandırması değiƟtirilemedi" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:524 +msgid "Could not restore the display's configuration" +msgstr "Ekran yapılandırması geri yĂŒklenemedi" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:549 +msgid "Could not restore the display's configuration from a backup" +msgstr "Ekran yapılandırması bir yedekten geri yĂŒklenemedi" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:570 +#, c-format +msgid "The display will be reset to its previous configuration in %d second" +msgid_plural "" +"The display will be reset to its previous configuration in %d seconds" +msgstr[0] "Ekran bir önceki yapılandırmasına %d saniye içinde sıfırlanacak" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:619 +msgid "Does the display look OK?" +msgstr "Ekran görĂŒnĂŒmĂŒ tamam mı?" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:626 +msgid "_Restore Previous Configuration" +msgstr "Önceki _Yapılandırmaya Geri Dön" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:627 +msgid "_Keep This Configuration" +msgstr "Bu _Yapılandırmayı Tut" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:708 +msgid "The selected configuration for displays could not be applied" +msgstr "Ekranlar için seçilen yapılandırma uygulanamadı" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:1358 +#, c-format +msgid "Could not refresh the screen information: %s" +msgstr "Ekran bilgilerini yenilenemedi: %s" + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:1362 +msgid "Trying to switch the monitor configuration anyway." +msgstr "Gene de ekran yapılandırmasına geçmeye çalÄ±ĆŸÄ±lıyor." + +# tr +#: ../plugins/xrandr/gsd-xrandr-manager.c:1793 +msgid "Could not apply the stored configuration for monitors" +msgstr "Ekranlar için kayıtlı yapılandırma uygulanamadı" + +# tr +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 +msgid "Set up screen size and rotation settings" +msgstr "Ekran boyutu ve döndĂŒrme çevirimi ayarlarını ata" + +# tr +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 +msgid "XRandR" +msgstr "XRandR" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 +msgid "Manage X Settings" +msgstr "X Ayarlarını Ä°dare Et" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 +msgid "X Settings" +msgstr "X Ayarları" + +#~ msgid "Accessibility" +#~ msgstr "Ä°riƟilebilirlik" + +# tr +#~ msgid "Free space no notify threshold" +#~ msgstr "BoƟ alan bildirim eƟiği" + +# tr +#~ msgid "Subsequent free percentage notify threshold" +#~ msgstr "Ard arda boƟ yĂŒzdesi bildirim eƟiği" + +#~ msgid "Binding to enable or disable the touchpad." +#~ msgstr "" +#~ "TiyĂŒv-Ɵiltesini qabilleƟtirmek yaki ğayrı qabilleƟtirmek iĂ§ĂŒn bağlama." + +#~ msgid "Toggle touchpad" +#~ msgstr "TiyĂŒv-Ɵiltesini döndĂŒr" + +# tr +#~ msgid "Volume step" +#~ msgstr "Ses basamağı" + +# tr +#~ msgid "Volume step as percentage of volume." +#~ msgstr "YĂŒzde olarak ses basamağı." + +#~ msgid "Do not touch monitor configuration" +#~ msgstr "Ekran yapılandırılÄ±ĆŸÄ±na tiyme" + +#~ msgid "Show Displays in Notification Area" +#~ msgstr "Bildirim Mıntıqasında Ekranlarnı Köster" + +#~ msgid "Turn on external monitor after system boot" +#~ msgstr "Sistem baƟlattırmasından soñra hariciy ekrannı yaq" + +#~ msgid "" +#~ "Turn on external monitor after system boot if user plugs in external " +#~ "monitor on system boot." +#~ msgstr "" +#~ "Sistem baƟlattırılğanda qullanıcı hariciy ekran tıqsa, sistem " +#~ "baƟlattırmasından soñra hariciy ekrannı yaq." + +#~ msgid "Turn on laptop monitor after system boot" +#~ msgstr "Sistem baƟlattırmasından soñra tizĂŒstĂŒ ekranını yaq" + +#~ msgid "" +#~ "Turn on laptop monitor after system boot if user plugs in external " +#~ "monitor on system boot." +#~ msgstr "" +#~ "Sistem baƟlattırılğanda qullanıcı hariciy ekran tıqsa, sistem " +#~ "baƟlattırmasından soñra tizĂŒstĂŒ ekranını yaq." + +#~ msgid "" +#~ "Whether a notification icon with display-related things should be shown " +#~ "in the panel." +#~ msgstr "" +#~ "Ekran ile alĂąqalı Ɵeyler iĂ§ĂŒn bir tebliğ iƟaretçiginiñ panelde kösterilip " +#~ "kösterilmeycegi." + +# tr +#~ msgid "DPI" +#~ msgstr "DPI" + +# tr +#~ msgid "" +#~ "The resolution used for converting font sizes to pixel sizes, in dots per " +#~ "inch." +#~ msgstr "" +#~ "Yazıtipi boyutlarını piksel boyutlarına çevirmek için kullanılan " +#~ "çözĂŒnĂŒrlĂŒk, inç baĆŸÄ±na nokta olarak." + +# tr +#~ msgid "Allowed keys" +#~ msgstr "Ä°zin verilen tuƟlar" + +# tr +#~ msgid "" +#~ "If non-empty, keybindings will be ignored unless their GConf directory is " +#~ "in the list. This is useful for lockdown." +#~ msgstr "" +#~ "Eğer boƟ değilse, kendi GConf dizini listede olmadığı sĂŒrece tuƟ bağı " +#~ "yok sayılır. Bu kilitleme için kullanÄ±ĆŸlıdır." + +# tr +#~ msgid "" +#~ "Select the touchpad scroll method. Supported values are: 0: disabled, 1: " +#~ "edge scrolling, and 2: two-finger scrolling" +#~ msgstr "" +#~ "Touchpad kaydırma yöntemini seçin. Desteklenen değerler: 0: kapalı, 1: " +#~ "kenar kaydırması, 2: iki parmak kaydırması" + +# tr +#~ msgid "Binding to toggle the magnifier." +#~ msgstr "BĂŒyĂŒtece geçiƟ yapmak için bağ." + +# tr +#~ msgid "Binding to toggle the on-screen keyboard." +#~ msgstr "Ekran klavyesine geçiƟ yapmak için bağ" + +# tr +#~ msgid "Binding to toggle the screen reader." +#~ msgstr "Ekran okuyucuya geçiƟ yapmak için bağ." + +# tr +#~ msgid "Bounce keys" +#~ msgstr "Sıçrama tuƟları" + +# tr +#~ msgid "Command used to turn the magnifier on or off." +#~ msgstr "BĂŒyĂŒteci açmak veya kapatmak için kullanılan komut." + +# tr +#~ msgid "Command used to turn the on-screen keyboard on or off." +#~ msgstr "Ekran klavyesini açmak veya kapatmak için kullanılan komut." + +# tr +#~ msgid "Command used to turn the screen reader on or off." +#~ msgstr "Ekran okuyucu açmak veya kapatmak için kullanılan komut." + +#~ msgid "Enable XRandR plugin" +#~ msgstr "XRandR plaginini qabilleƟtir" + +# tr +#~ msgid "Enable accessibility keyboard plugin" +#~ msgstr "EriƟilebilirlik klavyesi eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable background plugin" +#~ msgstr "Arkaplan eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable clipboard plugin" +#~ msgstr "Pano eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable font plugin" +#~ msgstr "Yazıtipi eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable housekeeping plugin" +#~ msgstr "Ev bakımı eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable keybindings plugin" +#~ msgstr "TuƟ bağları eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable keyboard plugin" +#~ msgstr "Klavye eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable media keys plugin" +#~ msgstr "Ortam tuƟları eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable mouse plugin" +#~ msgstr "Fare eklentisini etkinleƟtir" + +#~ msgid "Enable smartcard plugin" +#~ msgstr "Aqıllı-kart plaginini qabilleƟtir" + +# tr +#~ msgid "Enable sound plugin" +#~ msgstr "Ses eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable typing breaks plugin" +#~ msgstr "Yazım molası eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable xrdb plugin" +#~ msgstr "Xrdb eklentisini etkinleƟtir" + +# tr +#~ msgid "Enable xsettings plugin" +#~ msgstr "Xsettings eklentisini etkinleƟtir" + +# tr +#~ msgid "Mouse keys" +#~ msgstr "Fare tuƟları" + +# tr +#~ msgid "On-screen keyboard" +#~ msgstr "Ekran klavyesi" + +# tr +#~ msgid "Screen magnifier" +#~ msgstr "Ekran bĂŒyĂŒteci" + +# tr +#~ msgid "Screen reader" +#~ msgstr "Ekran okuyucu" + +# tr +#~ msgid "" +#~ "Set to True to enable the housekeeping plugin, to prune transient file " +#~ "caches." +#~ msgstr "" +#~ "Ev bakımı eklentisini etkinleƟtirmek, geçici dosya önbelleği budamak için " +#~ "True Ɵekilde ayarlayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage XRandR settings." +#~ msgstr "" +#~ "XRandR ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru " +#~ "olarak atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage clipboard settings." +#~ msgstr "" +#~ "Pano ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " +#~ "atayın." + +# tr +#~ msgid "" +#~ "Set to True to enable the plugin to manage desktop background settings." +#~ msgstr "" +#~ "Arkaplan ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru " +#~ "olarak atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage font settings." +#~ msgstr "" +#~ "Yazıtipi ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru " +#~ "olarak atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage keyboard settings." +#~ msgstr "" +#~ "Klavye ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru " +#~ "olarak atayın." + +# tr +#~ msgid "" +#~ "Set to True to enable the plugin to manage locking the screen on " +#~ "smartcard removal." +#~ msgstr "" +#~ "Yazıtipi ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru " +#~ "olarak atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage mouse settings." +#~ msgstr "" +#~ "Fare ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " +#~ "atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage multimedia keys settings." +#~ msgstr "" +#~ "Çokluortam tuƟları ayarlarını yönetmek için eklentiyi etkinleƟtirmek için " +#~ "doğru olarak atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage sound sample caches." +#~ msgstr "" +#~ "Ses örnek önbellekleri yönetmek için eklentiyi etkinleƟtirmek için True " +#~ "Ɵekilde ayarlayın." + +# tr +#~ msgid "" +#~ "Set to True to enable the plugin to manage the accessibility keyboard " +#~ "settings." +#~ msgstr "" +#~ "Klavye eriƟebilirlik ayarlarını yönetmek için eklentiyi etkinleƟtirmek " +#~ "için doğru olarak atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage the keybindings." +#~ msgstr "" +#~ "TuƟbağlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " +#~ "atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage typing breaks." +#~ msgstr "" +#~ "Yazım molalarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " +#~ "atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage xrdb settings." +#~ msgstr "" +#~ "Xrdb ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru olarak " +#~ "atayın." + +# tr +#~ msgid "Set to True to enable the plugin to manage xsettings." +#~ msgstr "" +#~ "Xsettings ayarlarını yönetmek için eklentiyi etkinleƟtirmek için doğru " +#~ "olarak atayın." + +# tr +#~ msgid "Slow keys" +#~ msgstr "YavaƟ tuƟlar" + +# tr +#~ msgid "Sticky keys" +#~ msgstr "YapÄ±ĆŸkan tuƟlar" + +# tr +#~ msgid "The name of the keyboard shortcut to toggle the magnifier" +#~ msgstr "BĂŒyĂŒtece geçiƟ yapmak için klavye kısayolunun adı" + +# tr +#~ msgid "The name of the keyboard shortcut to toggle the on-screen keyboard" +#~ msgstr "Ekran klavyesine geçiƟ yapmak için klavye kısayolunun adı" + +# tr +#~ msgid "The name of the keyboard shortcut to toggle the screen reader" +#~ msgstr "Ekran okuyucusuna geçiƟ yapmak için klavye kısayolunun adı" + +# tr +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the magnifier. This " +#~ "name will be shown in the keyboard shortcut preferences dialog." +#~ msgstr "" +#~ "Bu bĂŒyĂŒtece geçiƟ yapmak için klavye kısayolunun adıdır. Bu isim, klavye " +#~ "kısayol tercihleri penceresinde gösterilir." + +# tr +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the on-screen " +#~ "keyboard. This name will be shown in the keyboard shortcut preferences " +#~ "dialog." +#~ msgstr "" +#~ "Bu ekran klavyesine geçiƟ yapmak için klavye kısayolunun adıdır. Bu isim, " +#~ "klavye kısayol tercihleri penceresinde gösterilir." + +# tr +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the screen reader. " +#~ "This name will be shown in the keyboard shortcut preferences dialog." +#~ msgstr "" +#~ "Bu ekran okuyucuya geçiƟ yapmak için klavye kısayolunun adıdır. Bu isim, " +#~ "klavye kısayol tercihleri penceresinde gösterilir." + +# tr +#~ msgid "Whether the bounce keys keyboard accessibility feature is turned on." +#~ msgstr "Sıçrama tuƟları klavye eriƟilebilirlik özelliğinin açık olması." + +# tr +#~ msgid "Whether the mouse keys keyboard accessibility feature is turned on." +#~ msgstr "Fare tuƟları klavye eriƟilebilirlik özelliğinin açık olması." + +# tr +#~ msgid "Whether the on-screen keyboard is turned on." +#~ msgstr "Ekran klavyesinin açık olması." + +# tr +#~ msgid "Whether the screen magnifier is turned on." +#~ msgstr "Ekran bĂŒyĂŒtecinin açık olması." + +# tr +#~ msgid "Whether the screen reader is turned on." +#~ msgstr "Ekran okuyucusunun açık olması." + +# tr +#~ msgid "Whether the slow keys keyboard accessibility feature is turned on." +#~ msgstr "YavaƟ tuƟların klavye eriƟilebilirlik özelliğinin açık olması." + +# tr +#~ msgid "Whether the sticky keys keyboard accessibility feature is turned on." +#~ msgstr "YapÄ±ĆŸkan tuƟların klavye eriƟilebilirlik özelliğinin açık olması." + +# tr +#~ msgid "Don't become a daemon" +#~ msgstr "Bir servis olma" + +# tr +#~ msgid "GConf prefix from which to load plugin settings" +#~ msgstr "Eklenti ayarları yĂŒklemek için GConf öneki" + +# tr +#~ msgid "Do you want to activate Slow Keys?" +#~ msgstr "TuƟ YavaƟlatmasını aktif hale getirmek istiyor musunuz?" + +# tr +#~ msgid "Do you want to deactivate Slow Keys?" +#~ msgstr "TuƟ YavaƟlatmasını kapatmak istiyor musunuz?" + +# tr +#~ msgid "Don't activate" +#~ msgstr "EtkinleƟtirme" + +# tr +#~ msgid "Don't deactivate" +#~ msgstr "Devre dÄ±ĆŸÄ± bırakma" + +# tr +#~ msgid "Activate" +#~ msgstr "EtkinleƟtir" + +# tr +#~ msgid "Deactivate" +#~ msgstr "Devre dÄ±ĆŸÄ± bırak" + +# tr +#~ msgid "Do_n't activate" +#~ msgstr "_EtkinleƟtirme" + +# tr +#~ msgid "Do_n't deactivate" +#~ msgstr "Etki_sizleƟtirme" + +# tr +#~ msgid "_Activate" +#~ msgstr "_EtkinleƟtir" + +# tr +#~ msgid "_Deactivate" +#~ msgstr "E_tkisizleƟtir" + +# tr +#~ msgid "Slow Keys Alert" +#~ msgstr "TuƟ YavaƟlatması Uyarısı" + +# tr +#~ msgid "Do you want to activate Sticky Keys?" +#~ msgstr "YapÄ±ĆŸkan TuƟlar özelliğini aktif hale getirmek istiyor musunuz?" + +# tr +#~ msgid "Do you want to deactivate Sticky Keys?" +#~ msgstr "YapÄ±ĆŸkan TuƟları kapatmak istiyor musunuz?" + +# tr +#~ msgid "Sticky Keys Alert" +#~ msgstr "YapÄ±ĆŸkan TuƟ Uyarısı" + +# tr +#~ msgid "Font" +#~ msgstr "Yazıtipi" + +# tr +#~ msgid "Font plugin" +#~ msgstr "Yazıtipi eklentisi" + +# tr +#~ msgid "Removing item %lu of %lu" +#~ msgstr "Silinen Ă¶ÄŸe %lu / %lu" + +#~ msgid "Removing: %s" +#~ msgstr "ÇetleƟtirile: %s" + +#~ msgid "Emptying the trash" +#~ msgstr "Çöp boƟatıla" + +#~ msgid "Preparing to empty trash
" +#~ msgstr "Çöp boƟatılmağa hazırlana
" + +#~ msgid "From: " +#~ msgstr "Qaydan:" + +# tr +#~ msgid "Empty all of the items from the trash?" +#~ msgstr "Çöpten tĂŒm Ă¶ÄŸeler boƟaltılsın mı?" + +# tr +#~ msgid "" +#~ "If you choose to empty the trash, all items in it will be permanently " +#~ "lost. Please note that you can also delete them separately." +#~ msgstr "" +#~ "Eğer çöpĂŒ boƟaltmayı seçerseniz, içindeki tĂŒm Ă¶ÄŸeler kalıcı olarak " +#~ "silinecek. LĂŒtfen onları ayrı ayrı da silebileceğinizi unutmayın." + +#~ msgid "_Empty Trash" +#~ msgstr "Çöpni _BoƟat" + +# tr +#~ msgid "Key binding (%s) is invalid" +#~ msgstr "TuƟ bağı (%s) geçersiz" + +# tr +#~ msgid "Key binding (%s) is incomplete" +#~ msgstr "TuƟ bağı (%s) eksik" + +# tr +#~ msgid "" +#~ "Error while trying to run (%s)\n" +#~ "which is linked to the key (%s)" +#~ msgstr "" +#~ "(%s) çalÄ±ĆŸtırırken hata\n" +#~ "(%s) tuƟu ile bağlı" + +# tr +#~ msgid "Keybindings" +#~ msgstr "TuƟ bağları" + +# tr +#~ msgid "Keybindings plugin" +#~ msgstr "TuƟ bağları eklentisi" + +#~ msgid "" +#~ "Error activating XKB configuration.\n" +#~ "It can happen under various circumstances:\n" +#~ " ‱ a bug in libxklavier library\n" +#~ " ‱ a bug in X server (xkbcomp, xmodmap utilities)\n" +#~ " ‱ X server with incompatible libxkbfile implementation\n" +#~ "\n" +#~ "X server version data:\n" +#~ "%s\n" +#~ "%d\n" +#~ "%s\n" +#~ "If you report this situation as a bug, please include:\n" +#~ " ‱ The result of %s\n" +#~ " ‱ The result of %s" +#~ msgstr "" +#~ "XKB yapılandırÄ±ĆŸÄ±nı faalleƟtirgende hata.\n" +#~ "Bu, deñiƟik hususlarda sudur etebilir:\n" +#~ " ‱ libxklavier kĂŒtĂŒphanesinde bir illet\n" +#~ " ‱ X sunucısında (xkbcomp, xmodmap aletleri) bir illet\n" +#~ " ‱ ğayrı qabili telif libxkbfile edası ile bir X sunucısı\n" +#~ "\n" +#~ "X sunucısı sĂŒrĂŒm verileri:\n" +#~ "%s\n" +#~ "%d\n" +#~ "%s\n" +#~ "Bu vaziyetni bir illet olaraq maruza etseñiz, lĂŒtfen dahil etiñiz:\n" +#~ " ‱ %s neticesi\n" +#~ " ‱ %s neticesi" + +#~ msgid "" +#~ "You are using XFree 4.3.0.\n" +#~ "There are known problems with complex XKB configurations.\n" +#~ "Try using a simpler configuration or using a later version of the XFree " +#~ "software." +#~ msgstr "" +#~ "XFree 4.3.0 qullanasıñız.\n" +#~ "MĂŒrekkep XKB yapılandırÄ±ĆŸları ile biligen meseleler bar.\n" +#~ "Daa basit yapılandırÄ±ĆŸnı qullanuvnı yaki XFree yazılımınıñ daa soñraki " +#~ "bir sĂŒrĂŒmini qullanuvnı deñeñiz." + +#~ msgid "Keyboard _Preferences" +#~ msgstr "Klavye _Tercihleri" + +#~ msgid "Show _Current Layout" +#~ msgstr "_Cari Tizilimni Köster" + +#~ msgid "Show Current _Layout" +#~ msgstr "_Cari Tizilimni Köster" + +# tr +#~ msgid "A_vailable files:" +#~ msgstr "_Geçerli dosyalar:" + +# tr +#~ msgid "Load modmap files" +#~ msgstr "Modmap dosyalarını yĂŒkle" + +# tr +#~ msgid "Would you like to load the modmap files?" +#~ msgstr "Modmap dosyalarını yĂŒklemek ister misiniz?" + +# tr +#~ msgid "_Do not show this message again" +#~ msgstr "_Bu mesajı bir daha gösterme" + +# tr +#~ msgid "_Load" +#~ msgstr "_YĂŒkle" + +# tr +#~ msgid "_Loaded files:" +#~ msgstr "_YĂŒklenen dosyalar:" + +# tr +#~ msgid "" +#~ "Could not get default terminal. Verify that your default terminal command " +#~ "is set and points to a valid application." +#~ msgstr "" +#~ "Öntanımlı uçbirim alınamadı. Öntanımlı uçbirim komutunuzun atandığını ve " +#~ "geçerli bir uygulamayı iƟaret ettiğini kontrol edin." + +# tr +#~ msgid "" +#~ "Couldn't execute command: %s\n" +#~ "Verify that this is a valid command." +#~ msgstr "" +#~ "Komut çalÄ±ĆŸtırılamadı: %s\n" +#~ "Bu komutun geçerli olup olmadığını kontrol edin." + +# tr +#~ msgid "Mouse Preferences" +#~ msgstr "Fare Tercihleri" + +# tr +#~ msgid "Typing Break" +#~ msgstr "Yazım Molası" + +# tr +#~ msgid "Typing break plugin" +#~ msgstr "Yazım molası eklentisi" + +# tr +#~ msgid "Rotation not supported" +#~ msgstr "Devir desteklenmiyor" + +# tr +#~ msgid "Could not save monitor configuration" +#~ msgstr "Ekran yapılandırması kaydedilemedi" + +# tr +#~ msgid "Normal" +#~ msgstr "Normal" + +# tr +#~ msgid "Left" +#~ msgstr "Sol" + +# tr +#~ msgid "Right" +#~ msgstr "Sağ" + +# tr +#~ msgid "Upside Down" +#~ msgstr "Yukarıdan AƟağı" + +#~ msgid "_Configure Display Settings
" +#~ msgstr "_Kösterim Ayarlarını Yapılandır
" + +# tr +#~ msgid "Configure display settings" +#~ msgstr "Ekran ayarlarını yapılandır" + +# tr +#~ msgid "Cannot determine user's home directory" +#~ msgstr "Kullanıcı'nın ana dizini belirlenemedi" + +# tr +#~ msgid "Manage the X resource database" +#~ msgstr "X kaynak veritabanını yönet" + +#~ msgid "X Resource Database" +#~ msgstr "X Menba Veritabanı" + +# tr +#~ msgid "GConf key %s set to type %s but its expected type was %s\n" +#~ msgstr "" +#~ "GConf anahtarı %s, %s tĂŒrĂŒne ayarlanmÄ±ĆŸ, fakat olması gereken tĂŒr %s\n" + +#~ msgid "Module Path" +#~ msgstr "ModĂŒl Yolağı" + +# tĂŒklĂŒ +#~ msgid "path to smartcard PKCS #11 driver" +#~ msgstr "aqıllı-kart PKCS #11 sĂŒrĂŒcisine yolaq" + +# tĂŒklĂŒ +#~ msgid "Slot ID" +#~ msgstr "Yuva Kimligi" + +#~ msgid "The slot the card is in" +#~ msgstr "Kartnıñ bulunğanı yuva" + +# tr +#~ msgid "Slot Series" +#~ msgstr "Yuva Silsilesi" + +#~ msgid "per-slot card identifier" +#~ msgstr "yuvağa-mahsus kart kimligi" + +#~ msgid "name" +#~ msgstr "ad" + +# tr +#~ msgid "Module" +#~ msgstr "ModĂŒl" + +#~ msgid "Change system time and date settings" +#~ msgstr "Sistem vaqıt ve tarih ayarlarını deñiƟtir" + +#~ msgid "Privileges are required to configure time and date settings." +#~ msgstr "Vaqıt ve tarih ayarlarını ayarlamaq iĂ§ĂŒn imtiyazlar zarurdır." + +#~ msgid "smartcard driver" +#~ msgstr "akıllı kart sĂŒrĂŒcĂŒsĂŒ" + +#~ msgid "Unknown" +#~ msgstr "NamalĂŒm" + +#~ msgid "Keyboard Layout \"%s\"" +#~ msgstr "Klavye Tizilimi \"%s\"" + +#~ msgid "_Groups" +#~ msgstr "_ZĂŒmreler" + +#~ msgid "Keyboard Layout" +#~ msgstr "Klavye Tizilimi" + +#~ msgid "Binding to suspend the computer." +#~ msgstr "Bilgisayarı beklemeye almak için bağ." + +#~ msgid "Suspend" +#~ msgstr "Bekleme" + +#~ msgid "" +#~ "Couldn't put the machine to sleep.\n" +#~ "Verify that the machine is correctly configured." +#~ msgstr "" +#~ "Makine uyku kipine konulamadı.\n" +#~ "Makinenin doğru ayarlanıp ayarlanmadığını kontrol edin." + +#~ msgid "Show _Layout Chart" +#~ msgstr "_YerleƟim Çizelgesini Göster" + +#~ msgid "Keyboard Layout _Settings..." +#~ msgstr "Klavye YerleƟim _Ayarları..." + +#~ msgid "Enable this to set the cursor to absolute mode." +#~ msgstr "Ä°mleci, göreli olmayan moda almak için bunu etkinleƟtirin" + +#~ msgid "Enable this to set the eraser to absolute mode." +#~ msgstr "Silgiyi göreli olmayan moda almak için bunu etkinleƟtirin." + +#~ msgid "Enable this to set the stylus to absolute mode." +#~ msgstr "Stylusu göreli olmayan moda almak için bunu etkinleƟtirin." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the cursor." +#~ msgstr "" +#~ "Bunu imleç tarafından kullanılabilen alan manasında x1,y1 ve x2,y2 olarak " +#~ "girin." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the eraser." +#~ msgstr "" +#~ "Bunu silgi tarafından kullanılabilen alan manasında x1,y1 ve x2,y2 olarak " +#~ "girin." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the pad." +#~ msgstr "" +#~ "Bunu pad tarafından kullanılabilen alan manasında x1,y1 ve x2,y2 olarak " +#~ "girin." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the stylus." +#~ msgstr "" +#~ "Bunu stylus tarafından kullanılabilen alan manasında x1,y1 ve x2,y2 " +#~ "olarak girin." + +#~ msgid "Wacom cursor absolute mode" +#~ msgstr "Wacom göreli olmayan imleç modu" + +#~ msgid "Wacom cursor button mapping" +#~ msgstr "Wacom imleç tuƟ eƟleƟmesi" + +#~ msgid "Wacom cursor tablet area" +#~ msgstr "Wacom imleç tablet alanı" + +#~ msgid "Wacom eraser absolute mode" +#~ msgstr "Wacom göreli olmayan silgi modu" + +#~ msgid "Wacom eraser tablet area" +#~ msgstr "Wacom silgi tablet alanı" + +#~ msgid "Wacom pad button mapping" +#~ msgstr "Wacom pad buton eƟleƟmesi" + +#~ msgid "Wacom pad tablet area" +#~ msgstr "Wacom pad tablet alanı" + +#~ msgid "Wacom stylus tablet area" +#~ msgstr "Wacom stylus tablet alanı" + +#~ msgid "Default" +#~ msgstr "Öntanımlı" + +#~ msgid "" +#~ "The battery is below the critical level and this computer is about to " +#~ "suspend.
NOTE: A small amount of power is required to keep your " +#~ "computer in a suspended state." +#~ msgstr "" +#~ "Pil gĂŒcĂŒ tehlikeli sınırın altında ve bu bilgisayar askıya alınmak ĂŒzere." +#~ "
NOT: Bilgisayarınızı askıda tutmak için az miktarda bir gĂŒĂ§ " +#~ "gereklidir." + +#~| msgid "Key binding (%s) is invalid" +#~ msgid "Key binding (%s) is invalid (%d)" +#~ msgstr "TuƟ bağı (%s) geçersiz (%d)" + +#~ msgid "To change time or date settings, you need to authenticate." +#~ msgstr "" +#~ "Saat veya tarih ayarlarını değiƟtirmek için kimlik doğrulaması " +#~ "gerçekleƟtirmelisiniz." diff -Nru gnome-settings-daemon-3.4.0/po/de.po gnome-settings-daemon-3.4.1/po/de.po --- gnome-settings-daemon-3.4.0/po/de.po 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/de.po 2012-04-12 09:54:14.000000000 +0000 @@ -18,16 +18,16 @@ # Christian Kintner , 2007. # Mario BlĂ€ttermann , 2009-2011. # Paul Seyfert , 2010. -# Christian Kirbach , 2010, 2011. +# Christian Kirbach , 2010, 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "settings-daemon&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2011-11-18 19:12+0000\n" -"PO-Revision-Date: 2011-11-18 22:32+0100\n" -"Last-Translator: Mario BlĂ€ttermann \n" +"POT-Creation-Date: 2012-03-30 19:31+0000\n" +"PO-Revision-Date: 2012-04-01 11:55+0100\n" +"Last-Translator: Christian Kirbach \n" "Language-Team: Deutsch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,51 +40,74 @@ msgstr "GNOME-Einstellungsdienst" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 -msgid "Command to be run when a device is added or removed." -msgstr "AuszufĂŒhrender Befehl, wenn ein GerĂ€t hinzugefĂŒgt oder entfernt wird." +msgid "Smartcard removal action" +msgstr "Smartcard-Entfernung" -# Vielleicht noch zu lang fĂŒr einen GConf-SchlĂŒssel. #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 -msgid "Device hotplug custom command" -msgstr "Benutzerdefinierter Befehl bei GerĂ€teanschluss" +msgid "" +"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " +"action will get performed when the smartcard used for log in is removed." +msgstr "" +"Setzen Sie dies auf »none« (nichts tun), »lock-screen« (Bildschirm sperren) " +"oder »force-logout« (Abmelden erzwingen). Die Aktion wird ausgefĂŒhrt, wenn " +"die zum Anmelden benutzte Smartcard entfernt wird." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 msgid "Disable touchpad while typing" msgstr "Touchpad wĂ€hrend des Tippens deaktivieren" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 -msgid "Distance before a drag is started." -msgstr "Distanz bevor das Ziehen einsetzt." +msgid "" +"Set this to TRUE if you have problems with accidentally hitting the touchpad " +"while typing." +msgstr "" +"Setzen Sie dies auf »WAHR«, falls Sie Probleme mit unbeabsichtigtem BerĂŒhren " +"des Touchpads wĂ€hrend des Tippens haben." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 -msgid "Double click time" -msgstr "Doppelklick-Zeit" +msgid "Enable horizontal scrolling" +msgstr "Horizontales Rollen aktivieren" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 -msgid "Drag threshold" -msgstr "Ziehschwellwert" +msgid "" +"Set this to TRUE to allow horizontal scrolling by the same method selected " +"with the scroll_method key." +msgstr "" +"Setzen Sie dies auf »WAHR«, um horizontales Rollen mit der Methode zu " +"erlauben, die im SchlĂŒssel »scroll_method« festgelegt ist." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 -msgid "Enable horizontal scrolling" -msgstr "Horizontales Rollen aktivieren" +msgid "Select the touchpad scroll method" +msgstr "Rollmethode fĂŒr Touchpad auswĂ€hlen" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 -msgid "Enable mouse clicks with touchpad" -msgstr "Mausklicks mit dem Touchpad aktivieren" +msgid "" +"Select the touchpad scroll method. Supported values are: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "" +"WĂ€hlen Sie die Rollmethode fĂŒr das Touchpad aus. Mögliche Werte sind: " +"»disabled« - deaktiviert, »edge-scrolling« - Kantenrollen, »two-finger-" +"scrolling« - Rollen mit zwei Fingern" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 -msgid "Enable touchpad" -msgstr "Touchpad aktivieren" +msgid "Enable mouse clicks with touchpad" +msgstr "Mausklicks mit dem Touchpad aktivieren" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 msgid "" -"Enables middle mouse button emulation through simultaneous left and right " -"button click." +"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." msgstr "" -"Aktiviert Emulation der mittleren Maustaste durch gleichzeitiges DrĂŒcken der " -"linken und rechten Maustaste." +"Setzen Sie dies auf »WAHR«, um Mausklicks mit dem Touchpad auslösen zu können." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 +msgid "Enable touchpad" +msgstr "Touchpad aktivieren" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 +msgid "Set this to TRUE to enable all touchpads." +msgstr "Setzen Sie dies auf »WAHR«, um alle Touchpads zu aktivieren." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 msgid "" "Highlights the current location of the pointer when the Control key is " "pressed and released." @@ -92,72 +115,49 @@ "Hebt die aktuelle Position des Mauszeigers hervor, wenn die Strg-Taste " "gedrĂŒckt und wieder losgelassen wird." -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 -msgid "Length of a double click in milliseconds." -msgstr "Die LĂ€nge des Doppelklicks in Millisekunden." - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 -msgid "Middle button emulation" -msgstr "Emulation der mittleren Maustaste" - #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 -msgid "Select the touchpad scroll method" -msgstr "Rollmethode fĂŒr Touchpad auswĂ€hlen" +msgid "Double click time" +msgstr "Doppelklick-Zeit" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:15 -msgid "" -"Select the touchpad scroll method. Supported values are: \"disabled\", \"edge-" -"scrolling\", \"two-finger-scrolling\"." -msgstr "" -"WĂ€hlen Sie die Rollmethode fĂŒr das Touchpad aus. Mögliche Werte sind: " -"»disabled« - deaktiviert, »edge-scrolling« - Kantenrollen, »two-finger-" -"scrolling« - Rollen mit zwei Fingern" +msgid "Length of a double click in milliseconds." +msgstr "Die LĂ€nge des Doppelklicks in Millisekunden." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:16 -msgid "" -"Set this to TRUE if you have problems with accidentally hitting the touchpad " -"while typing." -msgstr "" -"Setzen Sie dies auf »WAHR«, falls Sie Probleme mit unbeabsichtigtem BerĂŒhren " -"des Touchpads wĂ€hrend des Tippens haben." +msgid "Drag threshold" +msgstr "Ziehschwellwert" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:17 -msgid "" -"Set this to TRUE to allow horizontal scrolling by the same method selected " -"with the scroll_method key." -msgstr "" -"Setzen Sie dies auf »WAHR«, um horizontales Rollen mit der Methode zu " -"erlauben, die im SchlĂŒssel »scroll_method« festgelegt ist." +msgid "Distance before a drag is started." +msgstr "Distanz bevor das Ziehen einsetzt." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 -msgid "" -"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." -msgstr "" -"Setzen Sie dies auf »WAHR«, um Mausklicks mit dem Touchpad auslösen zu können." +msgid "Middle button emulation" +msgstr "Emulation der mittleren Maustaste" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 -msgid "Set this to TRUE to enable all touchpads." -msgstr "Setzen Sie dies auf »WAHR«, um alle Touchpads zu aktivieren." - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 msgid "" -"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The action " -"will get performed when the smartcard used for log in is removed." +"Enables middle mouse button emulation through simultaneous left and right " +"button click." msgstr "" -"Setzen Sie dies auf »none« (nichts tun), »lock-screen« (Bildschirm sperren) " -"oder »force-logout« (Abmelden erzwingen). Die Aktion wird ausgefĂŒhrt, wenn " -"die zum Anmelden benutzte Smartcard entfernt wird." - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 -msgid "Smartcard removal action" -msgstr "Smartcard-Entfernung" +"Aktiviert Emulation der mittleren Maustaste durch gleichzeitiges DrĂŒcken der " +"linken und rechten Maustaste." -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 msgid "Whether the tablet's orientation is locked, or rotated automatically." msgstr "" "Legt fest, ob die Ausrichtung des Tablets gesperrt ist oder automatisch " "gedreht werden kann." +# Vielleicht noch zu lang fĂŒr einen GConf-SchlĂŒssel. +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 +msgid "Device hotplug custom command" +msgstr "Benutzerdefinierter Befehl bei GerĂ€teanschluss" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 +msgid "Command to be run when a device is added or removed." +msgstr "AuszufĂŒhrender Befehl, wenn ein GerĂ€t hinzugefĂŒgt oder entfernt wird." + #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:1 @@ -168,69 +168,83 @@ #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 msgid "Activation of this plugin" msgstr "Aktivierung dieses Plugins" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 -msgid "Enable this to move the cursor when the user touches the tablet." -msgstr "" -"Legt fest, ob die Eingabemarke sich bewegt, wenn der Benutzer das " -"Grafiktablett berĂŒhrt." - -# Stylus ist ein Eingabestift fĂŒr Grafiktabletts -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 -msgid "Enable this to only report stylus events when the tip is pressed." -msgstr "" -"Legt fest, ob nur dann Stylus-Ereignisse verarbeitet werden, wenn die " -"Stiftspitze gedrĂŒckt wird." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 -msgid "Enable this to set the cursor to absolute mode." -msgstr "Legt fest, ob die Eingabemarke im absoluten Modus arbeitet." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 -msgid "Enable this to set the eraser to absolute mode." -msgstr "Legt fest, ob der Radiergummi im absoluten Modus arbeitet." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 -msgid "Enable this to set the stylus to absolute mode." -msgstr "Legt fest, ob der Stylus im absoluten Modus arbeitet." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 -msgid "Priority to use for this plugin" -msgstr "NutzungsprioritĂ€t dieses Plugins" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgstr "" +"Legt fest, ob das Plugin durch den GNOME-Einstellungsdienst aktiviert werden " +"soll oder nicht" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 +msgid "Priority to use for this plugin" +msgstr "NutzungsprioritĂ€t dieses Plugins" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" msgstr "" "PrioritĂ€t dieses Plugins in der Start-Warteschlange des GNOME-" "Einstellungsdienstes" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 +msgid "Wacom stylus absolute mode" +msgstr "Absoluter Modus des Wacom-Stylus" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 +msgid "Enable this to set the tablet to absolute mode." +msgstr "Legt fest, ob das Tablett im absoluten Modus arbeitet." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 +msgid "Wacom tablet area" +msgstr "Tablettbereich des Wacom" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 +msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." +msgstr "" +"Legen Sie hier den durch die Werkzeuge verwendbaren Bereich x1, y1 und x2, " +"y2 fest." + #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 +msgid "Wacom tablet rotation" +msgstr "Drehung des Wacom-Tabletts" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 msgid "" "Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " "'ccw' for 90 degree counterclockwise." @@ -239,52 +253,43 @@ "Grad im Uhrzeigersinn, auf »half« (halb) fĂŒr 180 Grad, oder auf »ccw« (gegen " "Uhrzeigersinn) fĂŒr 90 Grad gegen den Uhrzeigersinn." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 -msgid "Set this to the logical button mapping." -msgstr "Legen Sie hier die logische Tastenabbildung fest." - #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 -msgid "" -"Set this to the pressure value at which a stylus click event is generated." -msgstr "" -"Legen Sie hier den Druck fest, ab dem ein Stylus-Klickereignis ausgelöst wird." +msgid "Wacom touch feature" +msgstr "Funktionsmerkmal fĂŒr Wacom Touch" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 -msgid "" -"Set this to the pressure value at which an eraser click event is generated." +msgid "Enable this to move the cursor when the user touches the tablet." msgstr "" -"Legen Sie hier den Druck fest, ab dem ein Radierer-Klickereignis ausgelöst " -"wird." +"Legt fest, ob die Eingabemarke sich bewegt, wenn der Benutzer das " +"Grafiktablett berĂŒhrt." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the cursor." -msgstr "" -"Legen Sie hier den durch den Benutzer verwendbaren Bereich x1, y1 und x2, y2 " -"fest." +msgid "Wacom tablet PC feature" +msgstr "Funktionsmerkmal fĂŒr Wacom Tablet-PCs" +# Stylus ist ein Eingabestift fĂŒr Grafiktabletts #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the eraser." +msgid "Enable this to only report stylus events when the tip is pressed." msgstr "" -"Legen Sie hier den durch den Radiergummi verwendbaren Bereich x1, y1 und x2, " -"y2 fest." +"Legt fest, ob nur dann Stylus-Ereignisse verarbeitet werden, wenn die " +"Stiftspitze gedrĂŒckt wird." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the pad." -msgstr "" -"Legen Sie hier den durch das Pad verwendbaren Bereich x1, y1 und x2, y2 fest." +msgid "Wacom display mapping" +msgstr "Bildschirmzuordnung des Wacom-Tabletts" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the stylus." +msgid "" +"EDID information of monitor to map tablet to. Must be in the format [vendor, " +"product, serial]. [\"\",\"\",\"\"] disables mapping." msgstr "" -"Legen Sie hier den durch den Stylus verwendbaren Bereich x1, y1 und x2, y2 " -"fest." +"EDID-Informationen des Bildschirms, dem das Tablett zugewiesen werden soll. " +"MĂŒssen im Format [Hersteller, Produkt, Seriennummer] sein. [\"\",\"\",\"\"] " +"deaktiviert die Zuweisung." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 -msgid "" -"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." -msgstr "" -"Legen Sie hier die fĂŒr den Radiergummi gĂŒltige Druckkurve x1, y1 und x2, y2 " -"fest." +msgid "Wacom stylus pressure curve" +msgstr "Druckkurve des Wacom-Stylus" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 msgid "" @@ -293,102 +298,84 @@ "Legen Sie hier die fĂŒr den Stylus gĂŒltige Druckkurve x1, y1 und x2, y2 fest." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 -msgid "Wacom cursor absolute mode" -msgstr "Absoluter Modus der Wacom-Eingabemarke" +msgid "Wacom stylus button mapping" +msgstr "Tastenabbildung des Wacom-Stylus" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 -msgid "Wacom cursor button mapping" -msgstr "Tastenabbildung der Wacom-Eingabemarke" +msgid "Set this to the logical button mapping." +msgstr "Legen Sie hier die logische Tastenabbildung fest." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 -msgid "Wacom cursor tablet area" -msgstr "Tablettbereich der Wacom-Eingabemarke" +msgid "Wacom stylus pressure threshold" +msgstr "Druckschwelle des Wacom-Stylus" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 -msgid "Wacom eraser absolute mode" -msgstr "Absoluter Modus des Wacom-Radiergummi" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 -msgid "Wacom eraser button mapping" -msgstr "Tastenabbildung des Wacom-Radiergummi" +msgid "" +"Set this to the pressure value at which a stylus click event is generated." +msgstr "" +"Legen Sie hier den Druck fest, ab dem ein Stylus-Klickereignis ausgelöst " +"wird." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 msgid "Wacom eraser pressure curve" msgstr "Druckkurve des Wacom-Radiergummi" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." +msgstr "" +"Legen Sie hier die fĂŒr den Radiergummi gĂŒltige Druckkurve x1, y1 und x2, y2 " +"fest." + #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 -msgid "Wacom eraser pressure threshold" -msgstr "Druckschwelle des Wacom-Radiergummi" +msgid "Wacom eraser button mapping" +msgstr "Tastenabbildung des Wacom-Radiergummi" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 -msgid "Wacom eraser tablet area" -msgstr "Tablettbereich des Wacom-Radiergummi" +msgid "Wacom eraser pressure threshold" +msgstr "Druckschwelle des Wacom-Radiergummi" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 -msgid "Wacom pad button mapping" -msgstr "Tastenabbildung des Wacom-Pad" +msgid "" +"Set this to the pressure value at which an eraser click event is generated." +msgstr "" +"Legen Sie hier den Druck fest, ab dem ein Radierer-Klickereignis ausgelöst " +"wird." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 -msgid "Wacom pad tablet area" -msgstr "Tablettbereich des Wacom-Pads" +msgid "Wacom button action type" +msgstr "Aktionstyp des Wacom-Knopfs" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 -msgid "Wacom stylus absolute mode" -msgstr "Absoluter Modus des Wacom-Stylus" +msgid "The type of action triggered by the button being pressed." +msgstr "Der Aktionstyp, welcher durch Knopfdruck ausgelöst wird." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 -msgid "Wacom stylus button mapping" -msgstr "Tastenabbildung des Wacom-Stylus" +msgid "Key combination for the custom action" +msgstr "TastenkĂŒrzel fĂŒr angepasste Aktionen" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 -msgid "Wacom stylus pressure curve" -msgstr "Druckkurve des Wacom-Stylus" +msgid "" +"The keyboard shortcut generated when the button is pressed for custom " +"actions." +msgstr "" +"Die Tastenkombination fĂŒr eigene Aktionen, welche ausgelöst wird, wenn der " +"Knopf gedrĂŒckt wird." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 -msgid "Wacom stylus pressure threshold" -msgstr "Druckschwelle des Wacom-Stylus" +msgid "Key combinations for an elevator custom action" +msgstr "" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 -msgid "Wacom stylus tablet area" -msgstr "Tablettbereich des Wacom-Stylus" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:34 -msgid "Wacom tablet PC feature" -msgstr "Funktionsmerkmal fĂŒr Wacom Tablet-PCs" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:35 -msgid "Wacom tablet rotation" -msgstr "Drehung des Wacom-Tabletts" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:36 -msgid "Wacom touch feature" -msgstr "Funktionsmerkmal fĂŒr Wacom Touch" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:37 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 -#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 -#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 -#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 -#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 -msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgid "" +"The keyboard shortcuts generated when a touchring or touchstrip is used for " +"custom actions (up followed by down)." msgstr "" -"Legt fest, ob das Plugin durch den GNOME-Einstellungsdienst aktiviert werden " -"soll oder nicht" -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 msgid "The duration a display profile is valid" msgstr "Die GĂŒltigkeitsdauer eines Anzeigeprofils" -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 -msgid "The duration a printer profile is valid" -msgstr "Die GĂŒltigkeitsdauer eines Druckerprofils" - #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 msgid "" "This is the number of days after which the display color profile is " @@ -398,6 +385,10 @@ "wird." #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 +msgid "The duration a printer profile is valid" +msgstr "Die GĂŒltigkeitsdauer eines Druckerprofils" + +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 msgid "" "This is the number of days after which the printer color profile is " "considered invalid." @@ -405,46 +396,46 @@ "Die Anzahl der Tage, nachdem ein Drucker-Farbprofil als ungĂŒltig angesehen " "wird." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 -msgid "Free percentage notify threshold" -msgstr "Freier Platz (in Prozent) zum Auslösen einer Warnung" - #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 -msgid "Free space notify threshold" -msgstr "Freier Platz zum Auslösen einer Benachrichtigung" +msgid "Mount paths to ignore" +msgstr "Zu ignorierende EinhĂ€ngepfade" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 -msgid "Minimum notify period for repeated warnings" -msgstr "Minimaler Warnintervall fĂŒr wiederholte Warnungen" +msgid "Specify a list of mount paths to ignore when they run low on space." +msgstr "" +"Geben Sie eine Liste der EinhĂ€ngepfade an, die bei wenig Plattenplatz " +"ignoriert werden sollen." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 -msgid "Mount paths to ignore" -msgstr "Zu ignorierende EinhĂ€ngepfade" +msgid "Free percentage notify threshold" +msgstr "Freier Platz (in Prozent) zum Auslösen einer Warnung" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 msgid "" -"Percentage free space threshold for initial warning of low disk space. If the " -"percentage free space drops below this, a warning will be shown." +"Percentage free space threshold for initial warning of low disk space. If " +"the percentage free space drops below this, a warning will be shown." msgstr "" "Prozentsatz des freien Plattenplatzes als Auslöseschwelle fĂŒr die erstmalige " "Warnung. Falls der Prozentsatz des freien Platzes unter diesen Wert fĂ€llt, " "wird eine Warnung angezeigt." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 -msgid "Specify a list of mount paths to ignore when they run low on space." -msgstr "" -"Geben Sie eine Liste der EinhĂ€ngepfade an, die bei wenig Plattenplatz " -"ignoriert werden sollen." +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +msgid "Subsequent free space percentage notify threshold" +msgstr "Schwellwert in Prozent fĂŒr wiederholte Benachrichtigungen" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 msgid "" -"Specify a time in minutes. Subsequent warnings for a volume will not appear " -"more often than this period." +"Specify the percentage that the free disk space should reduce by before " +"issuing a subsequent warning." msgstr "" -"Geben Sie eine Zeit in Minuten an. Wiederholte Warnungen fĂŒr einen " -"DatentrĂ€ger erscheinen nicht öfter als in diesem Abstand." +"Geben Sie den Prozentsatz des freien Plattenplatzes an, der unterschritten " +"werden muss, um wiederholte Warnungen auszulösen." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 +msgid "Free space notify threshold" +msgstr "Freier Platz zum Auslösen einer Benachrichtigung" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 msgid "" "Specify an amount in GB. If the amount of free space is more than this, no " "warning will be shown." @@ -452,332 +443,341 @@ "Geben Sie eine GrĂ¶ĂŸe in GB an. Falls die Menge des freien Plattenplatzes " "grĂ¶ĂŸer als dieser Wert ist, wird keine Warnung angezeigt." +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 +msgid "Minimum notify period for repeated warnings" +msgstr "Minimaler Warnintervall fĂŒr wiederholte Warnungen" + #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 msgid "" -"Specify the percentage that the free disk space should reduce by before " -"issuing a subsequent warning." +"Specify a time in minutes. Subsequent warnings for a volume will not appear " +"more often than this period." msgstr "" -"Geben Sie den Prozentsatz des freien Plattenplatzes an, der unterschritten " -"werden muss, um wiederholte Warnungen auszulösen." - -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 -msgid "Subsequent free space percentage notify threshold" -msgstr "Schwellwert in Prozent fĂŒr wiederholte Benachrichtigungen" - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 -msgid "Binding" -msgstr "KĂŒrzel" +"Geben Sie eine Zeit in Minuten an. Wiederholte Warnungen fĂŒr einen " +"DatentrĂ€ger erscheinen nicht öfter als in diesem Abstand." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 -#, fuzzy -msgid "Binding for the custom binding" -msgstr "TastenkĂŒrzel zum Verkleinern mit der Bildschirmlupe" +msgid "Custom keybindings" +msgstr "Benutzerdefinierte TastenkĂŒrzel" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 -msgid "Binding for the magnifier to zoom in" -msgstr "TastenkĂŒrzel zum Verkleinern mit der Bildschirmlupe" +msgid "List of custom keybindings" +msgstr "Liste der benutzerdefinierten TastenkĂŒrzel" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 -msgid "Binding for the magnifier to zoom out" -msgstr "TastenkĂŒrzel zum VergrĂ¶ĂŸern mit der Bildschirmlupe" +msgid "Launch calculator" +msgstr "Taschenrechner öffnen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:6 -msgid "Binding to decrease the text size" -msgstr "TastenkĂŒrzel zur Verringerung der SchriftgrĂ¶ĂŸe." +msgid "Binding to launch the calculator." +msgstr "TastenkĂŒrzel um den Taschenrechner zu öffnen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:7 -msgid "Binding to eject an optical disc." -msgstr "TastenkĂŒrzel um ein optisches Medium auszuwerfen." +msgid "Launch email client" +msgstr "E-Mail-Programm öffnen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:8 -msgid "Binding to increase the text size" -msgstr "TastenkĂŒrzel zur Erhöhung der SchriftgrĂ¶ĂŸe." +msgid "Binding to launch the email client." +msgstr "TastenkĂŒrzel um das E-Mail-Programm zu öffnen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 -msgid "Binding to launch the calculator." -msgstr "TastenkĂŒrzel um den Taschenrechner zu öffnen." +msgid "Eject" +msgstr "Auswerfen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:10 -msgid "Binding to launch the email client." -msgstr "TastenkĂŒrzel um das E-Mail-Programm zu öffnen." +msgid "Binding to eject an optical disc." +msgstr "TastenkĂŒrzel um ein optisches Medium auszuwerfen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:11 -msgid "Binding to launch the help browser." -msgstr "TastenkĂŒrzel um den Hilfe-Browser zu öffnen." +msgid "Launch help browser" +msgstr "Hilfe-Browser starten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:12 -msgid "Binding to launch the media player." -msgstr "TastenkĂŒrzel um den Medien-Player zu öffnen." +msgid "Binding to launch the help browser." +msgstr "TastenkĂŒrzel um den Hilfe-Browser zu öffnen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:13 -msgid "Binding to launch the search tool." -msgstr "TastenkĂŒrzel um die Suche zu öffnen." +msgid "Home folder" +msgstr "Persönlicher Ordner" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:14 -msgid "Binding to launch the web browser." -msgstr "TastenkĂŒrzel um den Web-Browser zu öffnen." +msgid "Binding to open the Home folder." +msgstr "TastenkĂŒrzel um den persönlichen Ordner zu öffnen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:15 -msgid "Binding to lock the screen." -msgstr "TastenkĂŒrzel um den Bildschirm zu sperren." +msgid "Launch media player" +msgstr "Medien-Player öffnen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 -msgid "Binding to log out." -msgstr "TastenkĂŒrzel um sich abzumelden." +msgid "Binding to launch the media player." +msgstr "TastenkĂŒrzel um den Medien-Player zu öffnen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:17 -msgid "Binding to lower the system volume." -msgstr "TastenkĂŒrzel um die LautstĂ€rke abzusenken." +msgid "Next track" +msgstr "NĂ€chster Titel" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:18 -msgid "Binding to mute the system volume." -msgstr "TastenkĂŒrzel um die LautstĂ€rke stumm zu schalten." +msgid "Binding to skip to next track." +msgstr "TastenkĂŒrzel um zum nĂ€chsten Titel zu springen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:19 -msgid "Binding to open the Home folder." -msgstr "TastenkĂŒrzel um den persönlichen Ordner zu öffnen." +msgid "Pause playback" +msgstr "Wiedergabe pausieren" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:20 msgid "Binding to pause playback." msgstr "TastenkĂŒrzel um die Wiedergabe zu pausieren." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:21 -msgid "Binding to raise the system volume." -msgstr "TastenkĂŒrzel um die LautstĂ€rke anzuheben." +msgid "Play (or play/pause)" +msgstr "Wiedergabe (bzw. Wiedergabe/Unterbrechen)" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:22 -msgid "Binding to show the on-screen keyboard" -msgstr "TastenkĂŒrzel zum Anzeigen der Bildschirmtastatur." +msgid "Binding to start playback (or toggle play/pause)." +msgstr "" +"TastenkĂŒrzel um die Wiedergabe zu starten (oder zwischen Wiedergabe und " +"Pause umzuschalten)." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:23 -msgid "Binding to show the screen magnifier" -msgstr "TastenkĂŒrzel zum Anzeigen der Bildschirmlupe." +msgid "Log out" +msgstr "Abmelden" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:24 -msgid "Binding to skip to next track." -msgstr "TastenkĂŒrzel um zum nĂ€chsten Titel zu springen." +msgid "Binding to log out." +msgstr "TastenkĂŒrzel um sich abzumelden." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:25 -msgid "Binding to skip to previous track." -msgstr "TastenkĂŒrzel um zum vorherigen Titel zu springen." +msgid "Previous track" +msgstr "Vorheriger Titel" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:26 -msgid "Binding to start playback (or toggle play/pause)." -msgstr "" -"TastenkĂŒrzel um die Wiedergabe zu starten (oder zwischen Wiedergabe und Pause " -"umzuschalten)." - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 -msgid "Binding to start the screen reader" -msgstr "TastenkĂŒrzel zum Starten des Bildschirmlesers." - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 -msgid "Binding to stop playback." -msgstr "TastenkĂŒrzel um die Wiedergabe anzuhalten." +msgid "Binding to skip to previous track." +msgstr "TastenkĂŒrzel um zum vorherigen Titel zu springen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:29 -msgid "Binding to take a screenshot of a window." -msgstr "TastenkĂŒrzel zum Aufnehmen eines Bildschirmfotos eines Fensters." +msgid "Lock screen" +msgstr "Bildschirm sperren" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:30 -msgid "Binding to take a screenshot." -msgstr "TastenkĂŒrzel zum Aufnehmen eines Bildschirmfotos." +msgid "Binding to lock the screen." +msgstr "TastenkĂŒrzel um den Bildschirm zu sperren." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:31 -msgid "Binding to toggle the interface contrast" -msgstr "" -"TastenkĂŒrzel zum Ein- und Ausschalten des Kontrasts der BenutzeroberflĂ€che" +msgid "Search" +msgstr "Suchen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:32 -msgid "Command" -msgstr "Befehl" +msgid "Binding to launch the search tool." +msgstr "TastenkĂŒrzel um die Suche zu öffnen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:33 -msgid "Command to run when the binding is invoked" -msgstr "AuszufĂŒhrender Befehl, wenn das TastenkĂŒrzel aufgerufen wird." +msgid "Stop playback" +msgstr "Wiedergabe anhalten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:34 -msgid "Custom keybindings" -msgstr "Benutzerdefinierte TastenkĂŒrzel" +msgid "Binding to stop playback." +msgstr "TastenkĂŒrzel um die Wiedergabe anzuhalten." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:35 -msgid "Decrease text size" -msgstr "Schrift verkleinern" +msgid "Volume down" +msgstr "Leiser" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:36 -msgid "Eject" -msgstr "Auswerfen" +msgid "Binding to lower the system volume." +msgstr "TastenkĂŒrzel um die LautstĂ€rke abzusenken." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:37 -msgid "Home folder" -msgstr "Persönlicher Ordner" +msgid "Volume mute" +msgstr "Stummschalten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:38 -msgid "Increase text size" -msgstr "Schrift vergrĂ¶ĂŸern" +msgid "Binding to mute the system volume." +msgstr "TastenkĂŒrzel um die LautstĂ€rke stumm zu schalten." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:39 -msgid "Launch calculator" -msgstr "Taschenrechner öffnen" +msgid "Volume up" +msgstr "Lauter" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:40 -msgid "Launch email client" -msgstr "E-Mail-Programm öffnen" +msgid "Binding to raise the system volume." +msgstr "TastenkĂŒrzel um die LautstĂ€rke anzuheben." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:41 -msgid "Launch help browser" -msgstr "Hilfe-Browser starten" +msgid "Take a screenshot" +msgstr "Ein Bildschirmfoto aufnehmen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:42 -msgid "Launch media player" -msgstr "Medien-Player öffnen" +msgid "Binding to take a screenshot." +msgstr "TastenkĂŒrzel zum Aufnehmen eines Bildschirmfotos." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:43 -msgid "Launch web browser" -msgstr "Webbrowser starten" +msgid "Take a screenshot of a window" +msgstr "Ein Bildschirmfoto eines Fensters aufnehmen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:44 -msgid "List of custom keybindings" -msgstr "Liste der benutzerdefinierten TastenkĂŒrzel" +msgid "Binding to take a screenshot of a window." +msgstr "TastenkĂŒrzel zum Aufnehmen eines Bildschirmfotos eines Fensters." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:45 -msgid "Lock screen" -msgstr "Bildschirm sperren" +msgid "Take a screenshot of an area" +msgstr "Ein Bildschirmfoto eines Bereichs aufnehmen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:46 -msgid "Log out" -msgstr "Abmelden" +msgid "Binding to take a screenshot of an area." +msgstr "TastenkĂŒrzel zum Aufnehmen eines Bildschirmfotos eines Bereichs." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 -msgid "Magnifier zoom in" -msgstr "Lupe vergrĂ¶ĂŸert" +msgid "Copy a screenshot to clipboard" +msgstr "Ein Bildschirmfoto in die Zwischenablage kopieren" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 -msgid "Magnifier zoom out" -msgstr "Lupe verkleinert" +msgid "Binding to copy a screenshot to clipboard." +msgstr "TastenkĂŒrzel zum Kopieren eines Bildschirmfotos in die Zwischenablage." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:49 -msgid "Name" -msgstr "Name" +msgid "Copy a screenshot of a window to clipboard" +msgstr "Ein Bildschirmfoto eines Fensters in die Zwischenablage kopieren" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:50 -msgid "Name of the custom binding" -msgstr "Name des benutzerdefinierten TastenkĂŒrzels" +msgid "Binding to copy a screenshot of a window to clipboard." +msgstr "TastenkĂŒrzel zum Kopieren eines Bildschirmfotos in die Zwischenablage." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:51 -msgid "Next track" -msgstr "NĂ€chster Titel" +msgid "Copy a screenshot of an area to clipboard" +msgstr "Ein Bildschirmfoto eines Bereichs in die Zwischenablage kopieren" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:52 -msgid "Pause playback" -msgstr "Wiedergabe pausieren" +msgid "Binding to copy a screenshot of an area to clipboard." +msgstr "" +"TastenkĂŒrzel zum Kopieren eines Bildschirmfotos eines Bereichs in die " +"Zwischenablage." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 -msgid "Play (or play/pause)" -msgstr "Wiedergabe (bzw. Wiedergabe/Unterbrechen)" +msgid "Launch web browser" +msgstr "Webbrowser starten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 -msgid "Previous track" -msgstr "Vorheriger Titel" +msgid "Binding to launch the web browser." +msgstr "TastenkĂŒrzel um den Web-Browser zu öffnen." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 +msgid "Toggle magnifier" +msgstr "Bildschirmlupe ein- oder ausschalten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 +msgid "Binding to show the screen magnifier" +msgstr "TastenkĂŒrzel zum Anzeigen der Bildschirmlupe." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 -msgid "Search" -msgstr "Suchen" +msgid "Toggle screen reader" +msgstr "Bildschirmleser ein- oder ausschalten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 -msgid "Stop playback" -msgstr "Wiedergabe anhalten" +msgid "Binding to start the screen reader" +msgstr "TastenkĂŒrzel zum Starten des Bildschirmlesers." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:59 -msgid "Take a screenshot" -msgstr "Ein Bildschirmfoto aufnehmen" +msgid "Toggle on-screen keyboard" +msgstr "Bildschirmtastatur ein- oder ausschalten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:60 -msgid "Take a screenshot of a window" -msgstr "Ein Bildschirmfoto eines Fensters aufnehmen" +msgid "Binding to show the on-screen keyboard" +msgstr "TastenkĂŒrzel zum Anzeigen der Bildschirmtastatur." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:61 -msgid "Toggle contrast" -msgstr "Kontrast ein-/ausschalten" +msgid "Increase text size" +msgstr "Schrift vergrĂ¶ĂŸern" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 -msgid "Toggle magnifier" -msgstr "Bildschirmlupe ein- oder ausschalten" +msgid "Binding to increase the text size" +msgstr "TastenkĂŒrzel zur Erhöhung der SchriftgrĂ¶ĂŸe." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 -msgid "Toggle on-screen keyboard" -msgstr "Bildschirmtastatur ein- oder ausschalten" +msgid "Decrease text size" +msgstr "Schrift verkleinern" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:64 -msgid "Toggle screen reader" -msgstr "Bildschirmleser ein- oder ausschalten" +msgid "Binding to decrease the text size" +msgstr "TastenkĂŒrzel zur Verringerung der SchriftgrĂ¶ĂŸe." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:65 -msgid "Volume down" -msgstr "Leiser" +msgid "Toggle contrast" +msgstr "Kontrast ein-/ausschalten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:66 -msgid "Volume mute" -msgstr "Stummschalten" +msgid "Binding to toggle the interface contrast" +msgstr "" +"TastenkĂŒrzel zum Ein- und Ausschalten des Kontrasts der BenutzeroberflĂ€che" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 -msgid "Volume up" -msgstr "Lauter" +msgid "Magnifier zoom in" +msgstr "Lupe vergrĂ¶ĂŸert" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 -msgid "" -"If time based notifications should be used. If set to false, then the " -"percentage change is used instead, which may fix a broken ACPI BIOS." -msgstr "" -"Legt fest, ob zeitbasierte Benachrichtigungen verwendet werden sollen. Falls " -"diese Option deaktiviert ist, wird stattdessen die prozentuale Änderung des " -"Ladezustands benutzt, was möglicherweise mit einem defekten ACPI-BIOS besser " -"funktioniert." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 +msgid "Binding for the magnifier to zoom in" +msgstr "TastenkĂŒrzel zum Verkleinern mit der Bildschirmlupe" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 -msgid "If we should show the recalled battery warning for a broken battery" -msgstr "" -"Legt fest, ob die Warnung fĂŒr einen RĂŒckruf bei einem defekten Akku angezeigt " -"werden soll" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 +msgid "Magnifier zoom out" +msgstr "Lupe verkleinert" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 -msgid "" -"If we should show the recalled battery warning for a broken battery. Set this " -"to false only if you know your battery is okay." -msgstr "" -"Legt fest, ob die Warnung fĂŒr einen RĂŒckruf bei einem defekten Akku angezeigt " -"werden soll. Setzen Sie dies nur auf »FALSCH«, wenn Sie sicher sind, dass Ihr " -"Akku in Ordnung ist." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 +msgid "Binding for the magnifier to zoom out" +msgstr "TastenkĂŒrzel zum VergrĂ¶ĂŸern mit der Bildschirmlupe" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 -msgid "Percentage action is taken" -msgstr "Prozentsatz, bei dem eine Aktion durchgefĂŒhrt wird" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 +msgid "Name" +msgstr "Name" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 -msgid "Percentage considered critical" -msgstr "Als kritisch angenommener Prozentsatz" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 +msgid "Name of the custom binding" +msgstr "Name des benutzerdefinierten TastenkĂŒrzels" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 +msgid "Binding" +msgstr "KĂŒrzel" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:74 +#, fuzzy +msgid "Binding for the custom binding" +msgstr "TastenkĂŒrzel zum Verkleinern mit der Bildschirmlupe" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:75 +msgid "Command" +msgstr "Befehl" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 +msgid "Command to run when the binding is invoked" +msgstr "AuszufĂŒhrender Befehl, wenn das TastenkĂŒrzel aufgerufen wird." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 msgid "Percentage considered low" msgstr "Als niedrig angesehener Prozentsatz" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 msgid "" -"The percentage of the battery when it is considered critical. Only valid when " -"use-time-for-policy is false." +"The percentage of the battery when it is considered low. Only valid when use-" +"time-for-policy is false." msgstr "" -"Prozentsatz, bei dem der Akkuladezustand als kritisch eingestuft wird. Wird " +"Prozentsatz, bei dem der Akkuladezustand als niedrig eingestuft wird. Wird " "nur berĂŒcksichtigt, wenn use-time-for-policy den Wert »falsch« hat." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +msgid "Percentage considered critical" +msgstr "Als kritisch angenommener Prozentsatz" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 msgid "" -"The percentage of the battery when it is considered low. Only valid when use-" -"time-for-policy is false." +"The percentage of the battery when it is considered critical. Only valid " +"when use-time-for-policy is false." msgstr "" -"Prozentsatz, bei dem der Akkuladezustand als niedrig eingestuft wird. Wird " +"Prozentsatz, bei dem der Akkuladezustand als kritisch eingestuft wird. Wird " "nur berĂŒcksichtigt, wenn use-time-for-policy den Wert »falsch« hat." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +msgid "Percentage action is taken" +msgstr "Prozentsatz, bei dem eine Aktion durchgefĂŒhrt wird" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 msgid "" "The percentage of the battery when the critical action is performed. Only " "valid when use-time-for-policy is false." @@ -785,14 +785,22 @@ "Prozentsatz, bei dem eine Aktion wegen kritischen Ladezustands durchgefĂŒhrt " "wird. Wird nur berĂŒcksichtigt, wenn use-time-for-policy den Wert »falsch« hat." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +msgid "The time remaining when low" +msgstr "Die verbleibende Zeit bei niedrigem Ladezustand" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 msgid "" -"The time remaining in seconds of the battery when critical action is taken. " -"Only valid when use-time-for-policy is true." +"The time remaining in seconds of the battery when it is considered low. Only " +"valid when use-time-for-policy is true." msgstr "" -"Verbleibende Laufzeit des Akkus in Sekunden, bei der eine Aktion wegen " -"kritischen Akkuladezustands durchgefĂŒhrt wird. Wird nur berĂŒcksichtigt, wenn " -"use-time-for-policy den Wert »wahr« hat." +"Verbleibende Laufzeit des Akkus in Sekunden, bei der sein Ladezustand als " +"niedrig angesehen wird. Wird nur berĂŒcksichtigt, wenn use-time-for-policy " +"den Wert »wahr« hat." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 +msgid "The time remaining when critical" +msgstr "Die verbleibende Laufzeit bei kritischem Ladezustand" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 msgid "" @@ -804,46 +812,93 @@ "den Wert »wahr« hat." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 -msgid "" -"The time remaining in seconds of the battery when it is considered low. Only " -"valid when use-time-for-policy is true." -msgstr "" -"Verbleibende Laufzeit des Akkus in Sekunden, bei der sein Ladezustand als " -"niedrig angesehen wird. Wird nur berĂŒcksichtigt, wenn use-time-for-policy den " -"Wert »wahr« hat." - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 msgid "The time remaining when action is taken" msgstr "Die verbleibende Laufzeit, bei der eine Aktion durchgefĂŒhrt wird" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 +msgid "" +"The time remaining in seconds of the battery when critical action is taken. " +"Only valid when use-time-for-policy is true." +msgstr "" +"Verbleibende Laufzeit des Akkus in Sekunden, bei der eine Aktion wegen " +"kritischen Akkuladezustands durchgefĂŒhrt wird. Wird nur berĂŒcksichtigt, wenn " +"use-time-for-policy den Wert »wahr« hat." + #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 -msgid "The time remaining when critical" -msgstr "Die verbleibende Laufzeit bei kritischem Ladezustand" +msgid "Whether to use time-based notifications" +msgstr "" +"Legt fest, ob Benachrichtigungen sich auf die verbleibende Zeit beziehen " +"sollen" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 -msgid "The time remaining when low" -msgstr "Die verbleibende Zeit bei niedrigem Ladezustand" +msgid "" +"If time based notifications should be used. If set to false, then the " +"percentage change is used instead, which may fix a broken ACPI BIOS." +msgstr "" +"Legt fest, ob zeitbasierte Benachrichtigungen verwendet werden sollen. Falls " +"diese Option deaktiviert ist, wird stattdessen die prozentuale Änderung des " +"Ladezustands benutzt, was möglicherweise mit einem defekten ACPI-BIOS besser " +"funktioniert." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 +msgid "If we should show the recalled battery warning for a broken battery" +msgstr "" +"Legt fest, ob die Warnung fĂŒr einen RĂŒckruf bei einem defekten Akku " +"angezeigt werden soll" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 -msgid "Whether to use time-based notifications" +msgid "" +"If we should show the recalled battery warning for a broken battery. Set " +"this to false only if you know your battery is okay." msgstr "" -"Legt fest, ob Benachrichtigungen sich auf die verbleibende Zeit beziehen " -"sollen" +"Legt fest, ob die Warnung fĂŒr einen RĂŒckruf bei einem defekten Akku " +"angezeigt werden soll. Setzen Sie dies nur auf »FALSCH«, wenn Sie sicher " +"sind, dass Ihr Akku in Ordnung ist." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 -msgid "Ask the user if additional firmware should be installed" -msgstr "Den Benutzer fragen, ob zusĂ€tzliche Firmware installiert werden soll" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 +msgid "The install root to use when adding and removing packages" +msgstr "" +"Der beim Installieren und Entfernen von Paketen zu verwendende Basisordner." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 msgid "" -"Ask the user if additional firmware should be installed if it is available." -msgstr "Den Benutzer fragen, ob zusĂ€tzliche Firmware installiert werden soll" +"The install root to use when processing packages, which is changed when " +"using LTSP or when testing." +msgstr "" +"Der beim Verarbeiten von Paketen zu verwendende Basisordner, der geĂ€ndert " +"wird, wenn LTSP verwendet wird oder fĂŒr Testzwecke." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 +msgid "Use mobile broadband connections" +msgstr "Mobile Breitbandverbindungen verwenden" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 +msgid "" +"Use mobile broadband connections such as GSM and CDMA to check for updates." +msgstr "" +"Mobile Breitbandverbindungen wie GSM oder UMTS verwenden, um nach " +"Aktualisierungen zu suchen" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 +msgid "Use WiFi connections" +msgstr "Drahtlose Netzwerkverbindungen verwenden" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 +msgid "" +"Use WiFi (wireless LAN) connections to check for updates. It may be faster " +"to download packages when on a wired connection, and the VPN or proxy " +"required may also only be available on wired connections." +msgstr "" +"Drahtlose Verbindungen zum PrĂŒfen auf neue Aktualisierungen verwenden. Das " +"Herunterladen ĂŒber kabelgebundene Verbindungen könnte schneller sein und das " +"VPN oder der Proxy könnte eventuell nur bei kabelgebundenen Verbindungen " +"verfĂŒgbar sein." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 msgid "Automatically download updates in the background without confirmation" msgstr "Aktualisierungen automatisch im Hintergrund ohne Nachfrage laden" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 msgid "" "Automatically download updates in the background without confirmation. " "Updates will be auto-downloaded when using wired network connnections, and " @@ -856,241 +911,212 @@ "»connection-use-wifi« aktiviert ist, und auch ĂŒber mobile " "Breitbandverbindungen, wenn »connection-use-mobile« aktiviert ist." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 msgid "Automatically install these types of updates" msgstr "Diese Typen von Aktualisierungen automatisch installieren" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 msgid "Automatically install these types of updates." msgstr "Diese Typen von Aktualisierungen automatisch installieren." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 -msgid "Devices that should be ignored" -msgstr "Zu ignorierende GerĂ€te" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 -msgid "" -"Devices that should be ignored, separated by commas. These can include '*' " -"and '?' characters." -msgstr "" -"Zu ignorierende GerĂ€te, durch Kommata getrennt. Die Zeichen »*« und »?« " -"dĂŒrfen enthalten sein." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 -msgid "Firmware files that should not be searched for" -msgstr "Firmware, nach der nicht gesucht werden soll" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 -msgid "" -"Firmware files that should not be searched for, separated by commas. These " -"can include '*' and '?' characters." -msgstr "" -"Firmware, nach der nicht gesucht werden soll, durch Kommata getrennt. Die " -"Zeichen »*« und »?« dĂŒrfen enthalten sein." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 msgid "Get the update list when the session starts" msgstr "Aktualisierungsliste beim Start der Sitzung holen" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 msgid "Get the update list when the session starts, even if not scheduled to." msgstr "" "Aktualisierungsliste beim Start der Sitzung holen, auch wenn dies nicht " "geplant ist." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 -msgid "How often to check for distribution upgrades" -msgstr "Abfrageintervall fĂŒr Distributionsaktualisierungen" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 -msgid "How often to check for distribution upgrades. Value is in seconds." -msgstr "" -"Abfrageintervall fĂŒr Distributionsaktualisierungen, in Sekunden angegeben." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 msgid "How often to check for updates" msgstr "Abfrageintervall fĂŒr Aktualisierungen" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 msgid "" -"How often to check for updates. Value is in seconds. This is a maximum amount " -"of time that can pass between a security update being published, and the " -"update being automatically installed or the user notified." +"How often to check for updates. Value is in seconds. This is a maximum " +"amount of time that can pass between a security update being published, and " +"the update being automatically installed or the user notified." msgstr "" "Abfrageintervall fĂŒr Distributionsaktualisierungen, in Sekunden angegeben. " "Dies ist der maximale Zeitraum zwischen der Veröffentlichung einer " "Sicherheitsaktualisierung und der automatischen Installation oder der " "Benachrichtigung des Benutzers." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 msgid "How often to notify the user that non-critical updates are available" msgstr "" "Intervall zum Benachrichtigen des Benutzers, wenn nicht-kritische " "Aktualisierungen verfĂŒgbar sind." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 -msgid "How often to refresh the package cache" -msgstr "Intervall zum Auffrischen des Paket-Zwischenspeichers" - #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 -msgid "How often to refresh the package cache. Value is in seconds." -msgstr "" -"Intervall zum Auffrischen des Paket-Zwischenspeichers, angegeben in Sekunden." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 msgid "" "How often to tell the user there are non-critical updates. Value is in " "seconds. Security update notifications are always shown after the check for " -"updates, but non-critical notifications should be shown a lot less frequently." +"updates, but non-critical notifications should be shown a lot less " +"frequently." msgstr "" "Legt fest, wie oft der Benutzer ĂŒber nicht-kritische Aktualisierungen " "informiert werden soll. Sicherheitsaktualisierungen werden immer unmittelbar " "nach der ÜberprĂŒfung auf Aktualisierungen angezeigt. Nicht-kritische " "Aktualisierungen sollten weniger hĂ€ufig angezeigt werden." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 +msgid "The last time we told the user about non-critical notifications" +msgstr "" +"Letzte Information des Benutzers ĂŒber nicht-kritische Benachrichtigungen" + #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 -msgid "Install updates automatically when running on battery power" -msgstr "Aktualisierungen auch im Akkubetrieb automatisch aktualisieren" +msgid "" +"The last time we notified the user about non-critical updates. Value is in " +"seconds since the epoch, or zero for never." +msgstr "" +"Der letzte Zeitpunkt der Benachrichtigung des Benutzers ĂŒber nicht-kritische " +"Aktualisierungen. Der Wert wird in Sekunden seit dem Beginn der UNIX-" +"Zeitrechnung angegeben, oder Null fĂŒr niemals." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 -msgid "Install updates automatically when running on battery power." -msgstr "Aktualisierungen auch im Akkubetrieb automatisch aktualisieren." +msgid "How often to check for distribution upgrades" +msgstr "Abfrageintervall fĂŒr Distributionsaktualisierungen" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 -msgid "Notify the user for completed updates" +msgid "How often to check for distribution upgrades. Value is in seconds." msgstr "" -"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden" +"Abfrageintervall fĂŒr Distributionsaktualisierungen, in Sekunden angegeben." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 -msgid "Notify the user for completed updates where the user needs to restart" -msgstr "" -"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden und " -"ein Neustart erforderlich ist" +msgid "How often to refresh the package cache" +msgstr "Intervall zum Auffrischen des Paket-Zwischenspeichers" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 -msgid "Notify the user for completed updates where the user needs to restart." +msgid "How often to refresh the package cache. Value is in seconds." msgstr "" -"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden und " -"ein Neustart erforderlich ist." +"Intervall zum Auffrischen des Paket-Zwischenspeichers, angegeben in Sekunden." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 msgid "" -"Notify the user for completed updates. This may be a useful notification for " -"some users as installing updates prevents shutdown." +"The number of seconds at session startup to wait before checking for updates" msgstr "" -"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden. " -"Dies könnte fĂŒr einige Benutzer hilfreich sein, da das Installieren von " -"Aktualisierungen das Ausschalten des Rechners verhindert." +"Wartezeit beim Start der Sitzung, bevor nach neuen Aktualisierungen gesucht " +"werden soll" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 +msgid "" +"The number of seconds at session startup to wait before checking for " +"updates. Value is in seconds." +msgstr "" +"Wartezeit beim Start der Sitzung, bevor nach neuen Aktualisierungen gesucht " +"werden soll, angegeben in Sekunden." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 +msgid "Install updates automatically when running on battery power" +msgstr "Aktualisierungen auch im Akkubetrieb automatisch aktualisieren" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 +msgid "Install updates automatically when running on battery power." +msgstr "Aktualisierungen auch im Akkubetrieb automatisch aktualisieren." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 msgid "Notify the user when distribution upgrades are available" msgstr "" "Den Benutzer benachrichtigen, wenn Distributionsaktualisierungen verfĂŒgbar " "sind" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 msgid "Notify the user when distribution upgrades are available." msgstr "" "Den Benutzer benachrichtigen, wenn Distributionsaktualisierungen verfĂŒgbar " "sind." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 -msgid "" -"Notify the user when the automatic update was not started on battery power" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 +msgid "Notify the user for completed updates" msgstr "" -"Den Benutzer benachrichtigen, wenn eine automatische Aktualisierung im " -"Akkubetrieb nicht ausgefĂŒhrt wurde" +"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 msgid "" -"Notify the user when the update was not automatically started because the " -"machine is running on battery power." +"Notify the user for completed updates. This may be a useful notification for " +"some users as installing updates prevents shutdown." msgstr "" -"Den Benutzer benachrichtigen, wenn eine automatische Aktualisierung nicht " -"ausgefĂŒhrt wurde, weil sich der Rechner im Akkubetrieb befindet." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 -msgid "Notify the user when the update was started" -msgstr "Den Benutzer benachrichtigen, wenn die Aktualisierung beginnt" +"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden. " +"Dies könnte fĂŒr einige Benutzer hilfreich sein, da das Installieren von " +"Aktualisierungen das Ausschalten des Rechners verhindert." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 -msgid "Notify the user when the update was started." -msgstr "Den Benutzer benachrichtigen, wenn die Aktualisierung beginnt." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +msgid "Notify the user for completed updates where the user needs to restart" +msgstr "" +"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden und " +"ein Neustart erforderlich ist" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 -msgid "The filenames on removable media that designate it a software source." +msgid "Notify the user for completed updates where the user needs to restart." msgstr "" -"Die Dateinamen in Wechselmedien, welche es als Softwarequelle identifizieren." +"Den Benutzer benachrichtigen, wenn Aktualisierungen abgeschlossen wurden und " +"ein Neustart erforderlich ist." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 -msgid "The install root to use when adding and removing packages" +msgid "" +"Notify the user when the automatic update was not started on battery power" msgstr "" -"Der beim Installieren und Entfernen von Paketen zu verwendende Basisordner." +"Den Benutzer benachrichtigen, wenn eine automatische Aktualisierung im " +"Akkubetrieb nicht ausgefĂŒhrt wurde" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 msgid "" -"The install root to use when processing packages, which is changed when using " -"LTSP or when testing." +"Notify the user when the update was not automatically started because the " +"machine is running on battery power." msgstr "" -"Der beim Verarbeiten von Paketen zu verwendende Basisordner, der geĂ€ndert " -"wird, wenn LTSP verwendet wird oder fĂŒr Testzwecke." +"Den Benutzer benachrichtigen, wenn eine automatische Aktualisierung nicht " +"ausgefĂŒhrt wurde, weil sich der Rechner im Akkubetrieb befindet." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 -msgid "" -"The last time we notified the user about non-critical updates. Value is in " -"seconds since the epoch, or zero for never." -msgstr "" -"Der letzte Zeitpunkt der Benachrichtigung des Benutzers ĂŒber nicht-kritische " -"Aktualisierungen. Der Wert wird in Sekunden seit dem Beginn der UNIX-" -"Zeitrechnung angegeben, oder Null fĂŒr niemals." +msgid "Notify the user when the update was started" +msgstr "Den Benutzer benachrichtigen, wenn die Aktualisierung beginnt" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 -msgid "The last time we told the user about non-critical notifications" -msgstr "" -"Letzte Information des Benutzers ĂŒber nicht-kritische Benachrichtigungen" +msgid "Notify the user when the update was started." +msgstr "Den Benutzer benachrichtigen, wenn die Aktualisierung beginnt." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 -msgid "" -"The number of seconds at session startup to wait before checking for updates" -msgstr "" -"Wartezeit beim Start der Sitzung, bevor nach neuen Aktualisierungen gesucht " -"werden soll" +msgid "Ask the user if additional firmware should be installed" +msgstr "Den Benutzer fragen, ob zusĂ€tzliche Firmware installiert werden soll" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 msgid "" -"The number of seconds at session startup to wait before checking for updates. " -"Value is in seconds." -msgstr "" -"Wartezeit beim Start der Sitzung, bevor nach neuen Aktualisierungen gesucht " -"werden soll, angegeben in Sekunden." +"Ask the user if additional firmware should be installed if it is available." +msgstr "Den Benutzer fragen, ob zusĂ€tzliche Firmware installiert werden soll" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 -msgid "" -"Use WiFi (wireless LAN) connections to check for updates. It may be faster to " -"download packages when on a wired connection, and the VPN or proxy required " -"may also only be available on wired connections." -msgstr "" -"Drahtlose Verbindungen zum PrĂŒfen auf neue Aktualisierungen verwenden. Das " -"Herunterladen ĂŒber kabelgebundene Verbindungen könnte schneller sein und das " -"VPN oder der Proxy könnte eventuell nur bei kabelgebundenen Verbindungen " -"verfĂŒgbar sein." +msgid "Firmware files that should not be searched for" +msgstr "Firmware, nach der nicht gesucht werden soll" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 -msgid "Use WiFi connections" -msgstr "Drahtlose Netzwerkverbindungen verwenden" +msgid "" +"Firmware files that should not be searched for, separated by commas. These " +"can include '*' and '?' characters." +msgstr "" +"Firmware, nach der nicht gesucht werden soll, durch Kommata getrennt. Die " +"Zeichen »*« und »?« dĂŒrfen enthalten sein." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 -msgid "Use mobile broadband connections" -msgstr "Mobile Breitbandverbindungen verwenden" +msgid "Devices that should be ignored" +msgstr "Zu ignorierende GerĂ€te" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 msgid "" -"Use mobile broadband connections such as GSM and CDMA to check for updates." +"Devices that should be ignored, separated by commas. These can include '*' " +"and '?' characters." msgstr "" -"Mobile Breitbandverbindungen wie GSM oder UMTS verwenden, um nach " -"Aktualisierungen zu suchen" +"Zu ignorierende GerĂ€te, durch Kommata getrennt. Die Zeichen »*« und »?« dĂŒrfen " +"enthalten sein." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 +msgid "The filenames on removable media that designate it a software source." +msgstr "" +"Die Dateinamen in Wechselmedien, welche es als Softwarequelle identifizieren." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 msgid "" "When removable media is inserted, it is checked to see if it contains any " "important filenames in the root directory. If the filename matches, then an " @@ -1103,80 +1129,77 @@ "ausgefĂŒhrt. Dies ermöglicht die Verwendung von Installationsmedien zum " "Aktualisieren laufender Systeme." -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 -msgid "" -"'clone' will display the same thing on all monitors, 'dock' will switch off " -"the internal monitor, 'do-nothing' will use the default Xorg behaviour " -"(extend the desktop in recent versions)" -msgstr "" -"»clone« (duplizieren) zeigt das selbe auf allen Monitoren an, »dock« (Docking-" -"Station) schaltet den internen Monitor ab, »do-nothing« (nichts tun) nutzt " -"die Standardeinstellungen von Xorg (erweitert die ArbeitsflĂ€che in aktuellen " -"Versionen)" - #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 msgid "File for default configuration for RandR" msgstr "Datei mit der Vorgabekonfiguration fĂŒr RandR" -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 msgid "" -"The XRandR plugin will look for a default configuration in the file specified " -"by this key. This is similar to the ~/.config/monitors.xml that normally gets " -"stored in users' home directories. If a user does not have such a file, or " -"has one that does not match the user's setup of monitors, then the file " -"specified by this key will be used instead." +"The XRandR plugin will look for a default configuration in the file " +"specified by this key. This is similar to the ~/.config/monitors.xml that " +"normally gets stored in users' home directories. If a user does not have " +"such a file, or has one that does not match the user's setup of monitors, " +"then the file specified by this key will be used instead." msgstr "" "Das XRandR-Plugin sucht in der durch diesen SchlĂŒssel angegebenen Datei nach " "einer Vorgabekonfiguration. Dies verhĂ€lt sich Ă€hnlich wie ~/.config/monitors." "xml, die normalerweise in den persönlichen Ordnern der Benutzer gespeichert " "wird. Falls ein Benutzer nicht ĂŒber solch eine Datei verfĂŒgt oder seine " -"Konfiguration nicht zu den vorhandenen Bildschirmen passt, wird die in diesem " -"SchlĂŒssel angegebene Datei stattdessen verwendet." +"Konfiguration nicht zu den vorhandenen Bildschirmen passt, wird die in " +"diesem SchlĂŒssel angegebene Datei stattdessen verwendet." -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 msgid "Whether to turn off specific monitors after boot" msgstr "" "Legt fest, ob bestimmte Monitore nach dem Hochfahren abgeschaltet werden " "sollen" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 -msgid "" -"A list of strings representing the GTK+ modules that will be loaded, usually " -"in addition to conditional and forcibly disabled ones." -msgstr "" -"Eine Liste von Zeichenketten fĂŒr GTK+-Module, die geladen werden sollen, " -"ĂŒblicherweise zusĂ€tzlich zu denjenigen, die unter bestimmten Bedingungen oder " -"in jedem Fall deaktiviert sind." - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 msgid "" -"A list of strings representing the GTK+ modules that will not be loaded, even " -"if enabled by default in their configuration." +"'clone' will display the same thing on all monitors, 'dock' will switch off " +"the internal monitor, 'do-nothing' will use the default Xorg behaviour " +"(extend the desktop in recent versions)" msgstr "" -"Eine Liste von Zeichenketten fĂŒr GTK+-Module, die nicht geladen werden " -"sollen, selbst wenn sie in der Standardkonfiguration aktiviert sein sollten." +"»clone« (duplizieren) zeigt das selbe auf allen Monitoren an, »dock« (Docking-" +"Station) schaltet den internen Monitor ab, »do-nothing« (nichts tun) nutzt " +"die Standardeinstellungen von Xorg (erweitert die ArbeitsflĂ€che in aktuellen " +"Versionen)" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 msgid "Antialiasing" msgstr "KantenglĂ€ttung" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +msgid "" +"The type of antialiasing to use when rendering fonts. Possible values are: " +"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " +"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +msgstr "" +"Die Art der KantenglĂ€ttung beim Darstellen der Schriften. Mögliche Werte " +"sind: »none« fĂŒr keine KantenglĂ€ttung, »grayscale« fĂŒr Standard-" +"GraustufenkantenglĂ€ttung und »rgba« fĂŒr Sub-Pixel-KantenglĂ€ttung (nur bei " +"Flachbildschirmen)." + #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 msgid "Hinting" msgstr "Hinting" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 -msgid "List of explicitly disabled GTK+ modules" -msgstr "Liste der explizit deaktivierten GTK+-Module" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 -msgid "List of explicitly enabled GTK+ modules" -msgstr "Liste der explizit aktivierten GTK+-Module" +msgid "" +"The type of hinting to use when rendering fonts. Possible values are: \"none" +"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" +"\" for maximum hinting (may cause distortion of letter forms)." +msgstr "" +"Die Art des Hinting, welches beim Darstellen von Schriften verwendet wird. " +"Mögliche Werte sind: »none« fĂŒr kein Hinting, »slight« fĂŒr minimales, »medium« " +"fĂŒr normales und »full« fĂŒr maximales Hinting (letzteres kann zum Entstellen " +"der Buchstabenformen fĂŒhren)," -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 msgid "RGBA order" msgstr "RGBA-Abfolge" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 msgid "" "The order of subpixel elements on an LCD screen; only used when antialiasing " "is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " @@ -1188,27 +1211,30 @@ "sind: »rgb« fĂŒr Rot auf links (am meisten verbreitet), »bgr« fĂŒr Blau auf " "links, »vrgb« fĂŒr Rot oben und »vbgr« fĂŒr Rot unten." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 +msgid "List of explicitly disabled GTK+ modules" +msgstr "Liste der explizit deaktivierten GTK+-Module" + #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 msgid "" -"The type of antialiasing to use when rendering fonts. Possible values are: " -"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " -"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +"A list of strings representing the GTK+ modules that will not be loaded, " +"even if enabled by default in their configuration." msgstr "" -"Die Art der KantenglĂ€ttung beim Darstellen der Schriften. Mögliche Werte " -"sind: »none« fĂŒr keine KantenglĂ€ttung, »grayscale« fĂŒr Standard-" -"GraustufenkantenglĂ€ttung und »rgba« fĂŒr Sub-Pixel-KantenglĂ€ttung (nur bei " -"Flachbildschirmen)." +"Eine Liste von Zeichenketten fĂŒr GTK+-Module, die nicht geladen werden " +"sollen, selbst wenn sie in der Standardkonfiguration aktiviert sein sollten." #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 +msgid "List of explicitly enabled GTK+ modules" +msgstr "Liste der explizit aktivierten GTK+-Module" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 msgid "" -"The type of hinting to use when rendering fonts. Possible values are: \"none" -"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" -"\" for maximum hinting (may cause distortion of letter forms)." +"A list of strings representing the GTK+ modules that will be loaded, usually " +"in addition to conditional and forcibly disabled ones." msgstr "" -"Die Art des Hinting, welches beim Darstellen von Schriften verwendet wird. " -"Mögliche Werte sind: »none« fĂŒr kein Hinting, »slight« fĂŒr minimales, " -"»medium« fĂŒr normales und »full« fĂŒr maximales Hinting (letzteres kann zum " -"Entstellen der Buchstabenformen fĂŒhren)," +"Eine Liste von Zeichenketten fĂŒr GTK+-Module, die geladen werden sollen, " +"ĂŒblicherweise zusĂ€tzlich zu denjenigen, die unter bestimmten Bedingungen " +"oder in jedem Fall deaktiviert sind." #: ../gnome-settings-daemon/main.c:54 msgid "Enable debugging code" @@ -1226,89 +1252,89 @@ msgid "Accessibility keyboard plugin" msgstr "Modul fĂŒr barrierefreie Tastatur" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:384 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:383 #, c-format msgid "There was an error displaying help: %s" msgstr "Fehler beim Anzeigen der Hilfe: %s" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:508 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:572 msgid "Slow Keys Turned On" msgstr "Tastenverzögerung eingeschaltet" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 msgid "Slow Keys Turned Off" msgstr "Tastenverzögerung ausgeschaltet" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:511 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:575 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 msgid "" -"You just held down the Shift key for 8 seconds. This is the shortcut for the " -"Slow Keys feature, which affects the way your keyboard works." +"You just held down the Shift key for 8 seconds. This is the shortcut for " +"the Slow Keys feature, which affects the way your keyboard works." msgstr "" "Sie haben die Umschalttaste 8 Sekunden lang gedrĂŒckt. Dies ist die " -"Tastenkombination fĂŒr die Tastenverzögerungsfunktion, die das Verhalten Ihrer " -"Tastatur beeinflusst." +"Tastenkombination fĂŒr die Tastenverzögerungsfunktion, die das Verhalten " +"Ihrer Tastatur beeinflusst." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:530 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:666 -#: ../plugins/mouse/gsd-mouse-manager.c:835 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 +#: ../plugins/mouse/gsd-mouse-manager.c:867 msgid "Universal Access" msgstr "Barrierefreiheit" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:536 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:672 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 msgid "Turn Off" msgstr "Abschalten" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:536 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:672 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 msgid "Turn On" msgstr "Einschalten" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:542 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:678 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 msgid "Leave On" msgstr "Eingeschaltet lassen" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:542 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:678 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 msgid "Leave Off" msgstr "Ausgeschaltet lassen" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:596 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:734 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 msgid "_Turn Off" msgstr "Abschal_ten" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:596 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:734 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 msgid "_Turn On" msgstr "Einschal_ten" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:599 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:737 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 msgid "_Leave On" msgstr "Eingeschaltet _lassen" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:599 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:737 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 msgid "_Leave Off" msgstr "Ausgeschaltet lassen" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:641 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:707 msgid "Sticky Keys Turned On" msgstr "Klebrige Tasten eingeschaltet" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:643 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:709 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 msgid "Sticky Keys Turned Off" msgstr "Klebrige Tasten ausgeschaltet" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:645 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:711 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 msgid "" "You just pressed the Shift key 5 times in a row. This is the shortcut for " "the Sticky Keys feature, which affects the way your keyboard works." @@ -1317,8 +1343,8 @@ "Tastenkombination fĂŒr die Funktion »klebrige Tasten«, die das Verhalten Ihrer " "Tastatur beeinflusst." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:647 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:713 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:646 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:712 msgid "" "You just pressed two keys at once, or pressed the Shift key 5 times in a " "row. This turns off the Sticky Keys feature, which affects the way your " @@ -1329,42 +1355,42 @@ "die das Verhalten Ihrer Tastatur beeinflusst." #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 msgid "Universal Access Preferences" msgstr "Allgemeine Einstellungen fĂŒr Barrierefreiheit" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 -msgid "Enhance _contrast in colors" -msgstr "Farb_kontrast erhöhen" - #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 -msgid "Make _text larger and easier to read" -msgstr "_Text grĂ¶ĂŸer darstellen" +msgid "Use on-screen _keyboard" +msgstr "_Bildschirmtastatur verwenden" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 -msgid "Press and _hold keys to accept them (Slow Keys)" -msgstr "Nur lan_ge TastenanschlĂ€ge akzeptieren (Tastenverzögerung)" +msgid "Use screen _reader" +msgstr "Bildschirmlese_programm verwenden" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +msgid "Use screen _magnifier" +msgstr "Bildschirml_upe verwenden" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 -msgid "Use on-screen _keyboard" -msgstr "_Bildschirmtastatur verwenden" +msgid "Enhance _contrast in colors" +msgstr "Farb_kontrast erhöhen" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 -msgid "Use screen _magnifier" -msgstr "Bildschirml_upe verwenden" +msgid "Make _text larger and easier to read" +msgstr "_Text grĂ¶ĂŸer darstellen" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 -msgid "Use screen _reader" -msgstr "Bildschirmlese_programm verwenden" +msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" +msgstr "" +"TastenkĂŒrzel durch _einzelnes DrĂŒcken der Tasten ausfĂŒhren (Klebrige Tasten)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 msgid "_Ignore duplicate keypresses (Bounce Keys)" msgstr "Schnelle _doppelte TastenanschlĂ€ge ignorieren (Springende Tasten)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 -msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" -msgstr "" -"TastenkĂŒrzel durch _einzelnes DrĂŒcken der Tasten ausfĂŒhren (Klebrige Tasten)" +msgid "Press and _hold keys to accept them (Slow Keys)" +msgstr "Nur lan_ge TastenanschlĂ€ge akzeptieren (Tastenverzögerung)" #: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:1 msgid "Accessibility settings" @@ -1375,13 +1401,13 @@ msgstr "Plugin fĂŒr Barrierefreiheits-Einstellungen" #: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 -msgid "Automount and autorun plugged devices" -msgstr "Angeschlossene GerĂ€te automatisch einhĂ€ngen und Programme ausfĂŒhren" - -#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 msgid "Mount Helper" msgstr "EinhĂ€nge-Assistent" +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 +msgid "Automount and autorun plugged devices" +msgstr "Angeschlossene GerĂ€te automatisch einhĂ€ngen und Programme ausfĂŒhren" + #: ../plugins/automount/gsd-automount-manager.c:151 #, c-format msgid "Unable to mount %s" @@ -1522,7 +1548,7 @@ msgstr "Zwischenablagemodul" #: ../plugins/color/color.gnome-settings-plugin.in.h:1 -#: ../plugins/color/gsd-color-manager.c:1640 +#: ../plugins/color/gsd-color-manager.c:1757 msgid "Color" msgstr "Farbe" @@ -1530,52 +1556,43 @@ msgid "Color plugin" msgstr "Farb-Plugin" -#: ../plugins/color/gsd-color-manager.c:1645 +#: ../plugins/color/gsd-color-manager.c:1762 msgid "Recalibrate now" msgstr "Jetzt neu kalibrieren" #. TRANSLATORS: this is when the device has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1687 +#: ../plugins/color/gsd-color-manager.c:1804 msgid "Recalibration required" msgstr "Neukalibrierung ist erforderlich" #. TRANSLATORS: this is when the display has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1699 +#: ../plugins/color/gsd-color-manager.c:1816 #, c-format msgid "The display '%s' should be recalibrated soon." msgstr "Die Anzeige »%s« sollte bald neu kalibriert werden." #. TRANSLATORS: this is when the printer has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1708 +#: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." msgstr "Der Drucker »%s« sollte bald neu kalibriert werden." #. TRANSLATORS: this is the application name -#: ../plugins/color/gsd-color-manager.c:2034 -#: ../plugins/color/gsd-color-manager.c:2050 +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 msgid "GNOME Settings Daemon Color Plugin" msgstr "Farb-Plugin fĂŒr GNOME-Einstellungsdienst" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2036 +#: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" msgstr "FarbkalibrierungsgerĂ€t wurde hinzugefĂŒgt" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2052 +#: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" msgstr "FarbkalibrierungsgerĂ€t wurde entfernt" -#: ../plugins/datetime/org.gnome.settingsdaemon.datetimemechanism.policy.in.h:1 -msgid "Change system time and date settings" -msgstr "Systemzeit, Datum und Zeitzone Ă€ndern" - -#: ../plugins/datetime/org.gnome.settingsdaemon.datetimemechanism.policy.in.h:2 -msgid "To change time or date settings, you need to authenticate." -msgstr "" -"Um die Zeit- oder Datumseinstellungen zu Ă€ndern, mĂŒssen Sie sich legitimieren." - #: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 msgid "Dummy" msgstr "Dummy" @@ -1653,8 +1670,8 @@ #: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 msgid "" -"You can free up disk space by emptying the Trash, removing unused programs or " -"files, or moving files to another disk or partition." +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to another disk or partition." msgstr "" "Sie können Plattenplatz frei machen, indem Sie den MĂŒll leeren, ungenutzte " "Programme oder Dateien löschen oder Dateien auf eine andere Festplatte oder " @@ -1662,8 +1679,8 @@ #: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 msgid "" -"You can free up disk space by removing unused programs or files, or by moving " -"files to another disk or partition." +"You can free up disk space by removing unused programs or files, or by " +"moving files to another disk or partition." msgstr "" "Sie können Plattenplatz frei machen, indem Sie ungenutzte Programme oder " "Dateien löschen oder Dateien auf eine andere Festplatte oder eine andere " @@ -1671,8 +1688,8 @@ #: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 msgid "" -"You can free up disk space by emptying the Trash, removing unused programs or " -"files, or moving files to an external disk." +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to an external disk." msgstr "" "Sie können Plattenplatz frei machen, indem Sie den MĂŒll leeren, ungenutzte " "Programme oder Dateien löschen oder Dateien auf einen externen DatentrĂ€ger " @@ -1680,8 +1697,8 @@ #: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 msgid "" -"You can free up disk space by removing unused programs or files, or by moving " -"files to an external disk." +"You can free up disk space by removing unused programs or files, or by " +"moving files to an external disk." msgstr "" "Sie können Plattenplatz frei machen, indem Sie ungenutzte Programme oder " "Dateien löschen oder Dateien auf einen externen DatentrĂ€ger verschieben." @@ -1774,12 +1791,13 @@ msgid "Media keys plugin" msgstr "Medientastenmodul" -#: ../plugins/mouse/gsd-mouse-manager.c:831 +#: ../plugins/mouse/gsd-mouse-manager.c:863 msgid "Could not enable mouse accessibility features" msgstr "Barrierefreie Maushilfen konnten nicht aktiviert werden" -#: ../plugins/mouse/gsd-mouse-manager.c:833 -msgid "Mouse accessibility requires Mousetweaks to be installed on your system." +#: ../plugins/mouse/gsd-mouse-manager.c:865 +msgid "" +"Mouse accessibility requires Mousetweaks to be installed on your system." msgstr "" "Eine barrierefreie Maus setzt das Programm »Mousetweaks« auf Ihrem System " "voraus." @@ -2279,12 +2297,12 @@ msgid "Computer is charged" msgstr "Rechner ist vollstĂ€ndig geladen" -#. TRANSLATORS: the battery may be recalled by it's vendor -#: ../plugins/power/gsd-power-manager.c:931 +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 msgid "Battery may be recalled" msgstr "Akku wurde eventuell zurĂŒckgerufen" -#: ../plugins/power/gsd-power-manager.c:932 +#: ../plugins/power/gsd-power-manager.c:994 #, c-format msgid "" "A battery in your computer may have been recalled by %s and you may be at " @@ -2293,181 +2311,181 @@ "Ein Akku Ihres Rechners wurde eventuell von %s zurĂŒckgerufen. Sie könnten in " "Gefahr sein." -#: ../plugins/power/gsd-power-manager.c:935 +#: ../plugins/power/gsd-power-manager.c:997 msgid "For more information visit the battery recall website." msgstr "Weitere Informationen finden Sie auf der Akku-RĂŒckruf-Webseite." #. TRANSLATORS: button text, visit the manufacturers recall website -#: ../plugins/power/gsd-power-manager.c:946 +#: ../plugins/power/gsd-power-manager.c:1008 msgid "Visit recall website" msgstr "RĂŒckrufaktionsseite besuchen" #. TRANSLATORS: button text, do not show this bubble again -#: ../plugins/power/gsd-power-manager.c:950 +#: ../plugins/power/gsd-power-manager.c:1012 msgid "Do not show me this again" msgstr "Dies in Zukunft nicht mehr anzeigen" #. TRANSLATORS: UPS is now discharging -#: ../plugins/power/gsd-power-manager.c:1161 +#: ../plugins/power/gsd-power-manager.c:1223 msgid "UPS Discharging" msgstr "USV wird entladen" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1166 +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format msgid "%s of UPS backup power remaining" msgstr "%s der USV-Ladung verbleibend" #. TRANSLATORS: this is the notification application name -#: ../plugins/power/gsd-power-manager.c:1187 -#: ../plugins/power/gsd-power-manager.c:1365 -#: ../plugins/power/gsd-power-manager.c:1546 -#: ../plugins/power/gsd-power-manager.c:1695 +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 #: ../plugins/power/power.gnome-settings-plugin.in.h:1 msgid "Power" msgstr "Energie" #. TRANSLATORS: laptop battery low, and we only have one battery -#: ../plugins/power/gsd-power-manager.c:1280 +#: ../plugins/power/gsd-power-manager.c:1342 msgid "Battery low" msgstr "Akkuladezustand niedrig" #. TRANSLATORS: laptop battery low, and we have more than one kind of battery -#: ../plugins/power/gsd-power-manager.c:1283 +#: ../plugins/power/gsd-power-manager.c:1345 msgid "Laptop battery low" msgstr "Laptop-Akku fast leer" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1289 +#: ../plugins/power/gsd-power-manager.c:1351 #, c-format msgid "Approximately %s remaining (%.0f%%)" msgstr "Ihnen verbleiben noch ca. %s im Akkubetrieb (%.0f%%)" #. TRANSLATORS: UPS is starting to get a little low -#: ../plugins/power/gsd-power-manager.c:1293 +#: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" msgstr "USV fast leer" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1297 +#: ../plugins/power/gsd-power-manager.c:1359 #, c-format msgid "Approximately %s of remaining UPS backup power (%.0f%%)" msgstr "Ihnen verbleiben noch ca. %s im Notstrombetrieb (%.0f%%)" #. TRANSLATORS: mouse is getting a little low #. TRANSLATORS: the mouse battery is very low -#: ../plugins/power/gsd-power-manager.c:1301 -#: ../plugins/power/gsd-power-manager.c:1467 +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 msgid "Mouse battery low" msgstr "Mausakku ist fast leer" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1304 +#: ../plugins/power/gsd-power-manager.c:1366 #, c-format msgid "Wireless mouse is low in power (%.0f%%)" msgstr "Kabellose Maus hat nur noch wenig Energie (%.0f%%)" #. TRANSLATORS: keyboard is getting a little low #. TRANSLATORS: the keyboard battery is very low -#: ../plugins/power/gsd-power-manager.c:1308 -#: ../plugins/power/gsd-power-manager.c:1475 +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 msgid "Keyboard battery low" msgstr "Tastaturakku ist fast leer" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1311 +#: ../plugins/power/gsd-power-manager.c:1373 #, c-format msgid "Wireless keyboard is low in power (%.0f%%)" msgstr "Kabellose Tastatur hat nur noch wenig Energie (%.0f%%)" #. TRANSLATORS: PDA is getting a little low #. TRANSLATORS: the PDA battery is very low -#: ../plugins/power/gsd-power-manager.c:1315 -#: ../plugins/power/gsd-power-manager.c:1484 +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 msgid "PDA battery low" msgstr "PDA-Akku ist fast leer" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1318 +#: ../plugins/power/gsd-power-manager.c:1380 #, c-format msgid "PDA is low in power (%.0f%%)" msgstr "PDA hat nur noch wenig Energie (%.0f%%)" #. TRANSLATORS: cell phone (mobile) is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1322 -#: ../plugins/power/gsd-power-manager.c:1494 -#: ../plugins/power/gsd-power-manager.c:1505 +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 msgid "Cell phone battery low" msgstr "Mobiltelefon-Akku fast leer" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1325 +#: ../plugins/power/gsd-power-manager.c:1387 #, c-format msgid "Cell phone is low in power (%.0f%%)" msgstr "Mobiltelefon hat nur noch wenig Energie (%.0f%%)" #. TRANSLATORS: media player, e.g. mp3 is getting a little low -#: ../plugins/power/gsd-power-manager.c:1330 +#: ../plugins/power/gsd-power-manager.c:1392 msgid "Media player battery low" msgstr "Akku des tragbaren AbspielgerĂ€ts ist fast leer" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1333 +#: ../plugins/power/gsd-power-manager.c:1395 #, c-format msgid "Media player is low in power (%.0f%%)" msgstr "Medien-AbspielgerĂ€t hat nur noch wenig Energie (%.0f%%)" #. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1337 -#: ../plugins/power/gsd-power-manager.c:1514 +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 msgid "Tablet battery low" msgstr "Tablet-Akku fast leer" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1340 +#: ../plugins/power/gsd-power-manager.c:1402 #, c-format msgid "Tablet is low in power (%.0f%%)" msgstr "Tablet hat nur noch wenig Energie (%.0f%%)" #. TRANSLATORS: computer, e.g. ipad is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1344 -#: ../plugins/power/gsd-power-manager.c:1523 +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 msgid "Attached computer battery low" msgstr "Akku des angeschlossenen Rechners ist fast leer" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1347 +#: ../plugins/power/gsd-power-manager.c:1409 #, c-format msgid "Attached computer is low in power (%.0f%%)" msgstr "Der angeschlossene Rechner hat nur noch wenig Energie (%.0f%%)" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1446 msgid "Battery is low" msgstr "Ladezustand des Akkus ist niedrig" #. TRANSLATORS: laptop battery critically low, and only have one kind of battery -#: ../plugins/power/gsd-power-manager.c:1426 +#: ../plugins/power/gsd-power-manager.c:1488 msgid "Battery critically low" msgstr "Ladezustand des Akkus ist kritisch" #. TRANSLATORS: laptop battery critically low, and we have more than one type of battery #. TRANSLATORS: laptop battery is really, really, low -#: ../plugins/power/gsd-power-manager.c:1429 -#: ../plugins/power/gsd-power-manager.c:1613 +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 msgid "Laptop battery critically low" msgstr "Kritischer Ladezustand des Laptop-Akkus" #. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything -#: ../plugins/power/gsd-power-manager.c:1438 +#: ../plugins/power/gsd-power-manager.c:1500 msgid "Plug in your AC adapter to avoid losing data." msgstr "Schließen Sie Ihr Netzteil an, um Datenverlust zu vermeiden." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1442 +#: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." msgstr "" @@ -2475,7 +2493,7 @@ "angeschlossen." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1446 +#: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." msgstr "" @@ -2483,7 +2501,7 @@ "wird angeschlossen." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1450 +#: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." msgstr "" @@ -2492,13 +2510,13 @@ #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low -#: ../plugins/power/gsd-power-manager.c:1457 -#: ../plugins/power/gsd-power-manager.c:1649 +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" msgstr "Kritischer Ladezustand der Notstromversorgung" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1461 +#: ../plugins/power/gsd-power-manager.c:1523 #, c-format msgid "" "Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " @@ -2508,7 +2526,7 @@ "Sie den Rechner an die Stromversorgung an, um Datenverlust zu verhindern." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1470 +#: ../plugins/power/gsd-power-manager.c:1532 #, c-format msgid "" "Wireless mouse is very low in power (%.0f%%). This device will soon stop " @@ -2518,7 +2536,7 @@ "falls sie nicht bald aufgeladen wird." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1478 +#: ../plugins/power/gsd-power-manager.c:1540 #, c-format msgid "" "Wireless keyboard is very low in power (%.0f%%). This device will soon stop " @@ -2528,7 +2546,7 @@ "ausfallen, falls sie nicht bald aufgeladen wird." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1487 +#: ../plugins/power/gsd-power-manager.c:1549 #, c-format msgid "" "PDA is very low in power (%.0f%%). This device will soon stop functioning if " @@ -2538,7 +2556,7 @@ "nicht bald aufgeladen wird." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1497 +#: ../plugins/power/gsd-power-manager.c:1559 #, c-format msgid "" "Cell phone is very low in power (%.0f%%). This device will soon stop " @@ -2548,7 +2566,7 @@ "falls es nicht bald aufgeladen wird." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1508 +#: ../plugins/power/gsd-power-manager.c:1570 #, c-format msgid "" "Media player is very low in power (%.0f%%). This device will soon stop " @@ -2558,7 +2576,7 @@ "ausfallen, falls es nicht bald aufgeladen wird." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1517 +#: ../plugins/power/gsd-power-manager.c:1579 #, c-format msgid "" "Tablet is very low in power (%.0f%%). This device will soon stop functioning " @@ -2568,7 +2586,7 @@ "nicht bald aufgeladen wird." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1526 +#: ../plugins/power/gsd-power-manager.c:1588 #, c-format msgid "" "Attached computer is very low in power (%.0f%%). The device will soon " @@ -2578,14 +2596,14 @@ "%%). Er wird herunterfahren, falls er nicht bald aufgeladen wird." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1566 -#: ../plugins/power/gsd-power-manager.c:1576 -#: ../plugins/power/gsd-power-manager.c:1712 +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 msgid "Battery is critically low" msgstr "Kritischer Ladezustand des Akkus" #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1621 +#: ../plugins/power/gsd-power-manager.c:1683 msgid "" "The battery is below the critical level and this computer will power-off when the battery becomes completely empty." @@ -2594,18 +2612,20 @@ "ausschalten, sobald der Akku vollstĂ€ndig entladen ist." #. TRANSLATORS: computer will suspend -#: ../plugins/power/gsd-power-manager.c:1627 +#: ../plugins/power/gsd-power-manager.c:1689 msgid "" -"The battery is below the critical level and this computer is about to suspend." -"
NOTE: A small amount of power is required to keep your computer in " -"a suspended state." +"The battery is below the critical level and this computer is about to " +"suspend.\n" +"NOTE: A small amount of power is required to keep your computer in a " +"suspended state." msgstr "" "Der Akkuladezustand ist unterhalb des kritischen Niveaus. Der Rechner wird " -"deshalb in Bereitschaft versetzt.
Hinweis: Der Rechner benötigt " -"auch in Bereitschaft weiterhin eine geringe Menge an Energie." +"deshalb gleich in Bereitschaft versetzt.\n" +"Hinweis: Der Rechner benötigt auch in Bereitschaft weiterhin eine " +"geringe Menge an Energie." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1634 +#: ../plugins/power/gsd-power-manager.c:1696 msgid "" "The battery is below the critical level and this computer is about to " "hibernate." @@ -2614,7 +2634,7 @@ "in den Ruhezustand versetzt." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1639 +#: ../plugins/power/gsd-power-manager.c:1701 msgid "" "The battery is below the critical level and this computer is about to " "shutdown." @@ -2623,272 +2643,292 @@ "heruntergefahren." #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1657 +#: ../plugins/power/gsd-power-manager.c:1719 msgid "" "UPS is below the critical level and this computer will power-off when " "the UPS becomes completely empty." msgstr "" -"Der Ladezustand der Notstromversorgung ist im kritischen Bereich. Der Rechner " -"wird sich ausschalten, wenn sie vollstĂ€ndig entladen ist." +"Der Ladezustand der Notstromversorgung ist im kritischen Bereich. Der " +"Rechner wird sich ausschalten, wenn sie vollstĂ€ndig entladen ist." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1663 -msgid "UPS is below the critical level and this computer is about to hibernate." +#: ../plugins/power/gsd-power-manager.c:1725 +msgid "" +"UPS is below the critical level and this computer is about to hibernate." msgstr "" -"Der Ladezustand der Notstromversorgung ist im kritischen Bereich. Der Rechner " -"wird deshalb nun in den Ruhezustand versetzt." +"Der Ladezustand der Notstromversorgung ist im kritischen Bereich. Der " +"Rechner wird deshalb nun in den Ruhezustand versetzt." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1668 +#: ../plugins/power/gsd-power-manager.c:1730 msgid "UPS is below the critical level and this computer is about to shutdown." msgstr "" -"Der Ladezustand der Notstromversorgung ist im kritischen Bereich. Der Rechner " -"wird deshalb nun heruntergefahren." +"Der Ladezustand der Notstromversorgung ist im kritischen Bereich. Der " +"Rechner wird deshalb nun heruntergefahren." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2082 +#: ../plugins/power/gsd-power-manager.c:2224 msgid "Lid has been opened" msgstr "Klappe wurde geöffnet" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2107 +#: ../plugins/power/gsd-power-manager.c:2301 msgid "Lid has been closed" msgstr "Klappe wurde geschlossen" #. TRANSLATORS: this is the title of the power manager status icon #. * that is only shown in fallback mode -#: ../plugins/power/gsd-power-manager.c:3316 +#: ../plugins/power/gsd-power-manager.c:3692 msgid "Power Manager" msgstr "Energieverwaltung" -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:1 -msgid "Authentication is required to modify the laptop brightness" -msgstr "" -"Legitimierung wird benötigt, um die Helligkeit des Laptop-Bildschirms zu " -"Ă€ndern" - #. SECURITY: #. - A normal active user on the local machine does not need permission #. to change the backlight brightness. #. -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:5 msgid "Modify the laptop brightness" msgstr "Laptop-Bildschirmhelligkeit einstellen" +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +msgid "Authentication is required to modify the laptop brightness" +msgstr "" +"Legitimierung wird benötigt, um die Helligkeit des Laptop-Bildschirms zu " +"Ă€ndern" + #: ../plugins/power/power.gnome-settings-plugin.in.h:2 msgid "Power plugin" msgstr "Energie-Plugin" #. Translators: We are configuring new printer -#: ../plugins/print-notifications/gsd-printer.c:942 +#: ../plugins/print-notifications/gsd-printer.c:908 msgid "Configuring new printer" msgstr "Neuer Drucker wird konfiguriert" #. Translators: Just wait -#: ../plugins/print-notifications/gsd-printer.c:944 +#: ../plugins/print-notifications/gsd-printer.c:910 msgid "Please wait..." msgstr "Bitte warten ..." #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:971 +#: ../plugins/print-notifications/gsd-printer.c:937 msgid "Missing printer driver" msgstr "Fehlender Druckertreiber" #. Translators: We have no driver installed for the device -#: ../plugins/print-notifications/gsd-printer.c:980 +#: ../plugins/print-notifications/gsd-printer.c:946 #, c-format msgid "No printer driver for %s." msgstr "Kein Druckertreiber fĂŒr %s vorhanden." #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:985 +#: ../plugins/print-notifications/gsd-printer.c:951 msgid "No driver for this printer." msgstr "Kein Treiber fĂŒr diesen Drucker vorhanden." -#: ../plugins/print-notifications/gsd-printer.c:1088 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:219 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:654 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:700 +#: ../plugins/print-notifications/gsd-printer.c:1049 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:778 msgid "Printers" msgstr "Drucker" #. Translators: The printer is low on toner (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:295 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 msgid "Toner low" msgstr "Wenig Toner" #. Translators: The printer has no toner left (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:299 msgid "Toner empty" msgstr "Toner leer" #. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:299 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:301 msgid "Not connected?" msgstr "Nicht angeschlossen?" #. Translators: One or more covers on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:301 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:303 msgid "Cover open" msgstr "Abdeckung offen" #. Translators: A filter or backend is not installed (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:303 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 msgid "Printer configuration error" msgstr "Fehler in der Druckerkonfiguration" #. Translators: One or more doors on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:307 msgid "Door open" msgstr "Klappe offen" #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:307 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 msgid "Marker supply low" msgstr "Einer der Farbspeicher fast leer" #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 msgid "Out of a marker supply" msgstr "Eine Farbpatrone leer" #. Translators: At least one input tray is low on media (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 msgid "Paper low" msgstr "Wenig Papier" #. Translators: At least one input tray is empty (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:315 msgid "Out of paper" msgstr "Papier leer" #. Translators: The printer is offline (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:315 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:317 msgid "Printer off-line" msgstr "Drucker ausgeschaltet" #. Translators: The printer has detected an error (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:317 +#. Translators: This is a title of an error notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:319 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:721 msgid "Printer error" msgstr "Drucker-Fehler" #. Translators: The printer is low on toner (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:321 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:323 #, c-format msgid "Printer '%s' is low on toner." msgstr "Drucker »%s« hat nur noch wenig Toner." #. Translators: The printer has no toner left (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:323 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:325 #, c-format msgid "Printer '%s' has no toner left." msgstr "Drucker »%s« hat keinen Toner mehr." #. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:325 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:327 #, c-format msgid "Printer '%s' may not be connected." msgstr "Drucker »%s« ist ggf. nicht angeschlossen." #. Translators: One or more covers on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:327 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:329 #, c-format msgid "The cover is open on printer '%s'." msgstr "Die Abdeckung des Druckers »%s« ist geöffnet." #. Translators: A filter or backend is not installed (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:329 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:331 #, c-format msgid "There is a missing print filter for printer '%s'." msgstr "Es gibt einen fehlenden Drucker-Filter fĂŒr den Drucker »%s«." #. Translators: One or more doors on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:332 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 #, c-format msgid "The door is open on printer '%s'." msgstr "Die Klappe des Druckers »%s« ist geöffnet." #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 #, c-format msgid "Printer '%s' is low on a marker supply." msgstr "Drucker »%s« hat keine Farbe mehr fĂŒr mindestens einen FarbbehĂ€lter." #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 #, c-format msgid "Printer '%s' is out of a marker supply." msgstr "Drucker »%s« hat keine Farbe mehr fĂŒr mindestens einen FarbbehĂ€lter." #. Translators: At least one input tray is low on media (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 #, c-format msgid "Printer '%s' is low on paper." msgstr "Drucker »%s« hat wenig Papier." #. Translators: At least one input tray is empty (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 #, c-format msgid "Printer '%s' is out of paper." msgstr "Drucker »%s« hat kein Papier mehr." #. Translators: The printer is offline (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:344 #, c-format msgid "Printer '%s' is currently off-line." msgstr "Drucker »%s« ist momentan nicht betriebsbereit." #. Translators: The printer has detected an error (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:344 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:346 #, c-format msgid "There is a problem on printer '%s'." msgstr "Es besteht ein Problem mit dem Drucker »%s«." -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:417 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:423 msgid "Printer added" msgstr "Drucker hinzugefĂŒgt" -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:425 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:431 msgid "Printer removed" msgstr "Drucker entfernt" #. Translators: A print job has been stopped -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:445 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:448 msgid "Printing stopped" msgstr "Drucken wurde gestoppt" #. Translators: "print-job xy" on a printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:447 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:453 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:459 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:465 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:482 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:507 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:450 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:456 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:462 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:468 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:480 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:500 #, c-format msgid "\"%s\" on %s" msgstr "»%s« auf %s" #. Translators: A print job has been canceled -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:451 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:454 msgid "Printing canceled" msgstr "Drucken wurde unterbrochen" #. Translators: A print job has been aborted -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:457 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:460 msgid "Printing aborted" msgstr "Drucken wurde abgebrochen" #. Translators: A print job has been completed -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:463 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:466 msgid "Printing completed" msgstr "Drucken wurde abgeschlossen" #. Translators: A job is printing -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:480 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:505 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:478 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:498 msgid "Printing" msgstr "Druckvorgang lĂ€uft" +#. Translators: This is a title of a report notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:715 +msgid "Printer report" +msgstr "Drucker-Bericht" + +#. Translators: This is a title of a warning notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:718 +msgid "Printer warning" +msgstr "Druckerwarnung" + +#. Translators: "Printer 'MyPrinterName': 'Description of the report/warning/error from a PPD file'." +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:728 +#, c-format +msgid "Printer '%s': '%s'." +msgstr "Drucker »%s«: »%s«" + #: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 msgid "Print-notifications" msgstr "Drucker-Benachrichtigungen" @@ -2897,31 +2937,31 @@ msgid "Print-notifications plugin" msgstr "Plugin fĂŒr Drucker-Benachrichtigungen" -#: ../plugins/smartcard/gsd-smartcard-manager.c:528 +#: ../plugins/smartcard/gsd-smartcard-manager.c:523 msgid "received error or hang up from event source" msgstr "Fehler empfangen oder Abbruch seitens der Ereignisquelle" -#: ../plugins/smartcard/gsd-smartcard-manager.c:662 +#: ../plugins/smartcard/gsd-smartcard-manager.c:657 #, c-format msgid "NSS security system could not be initialized" msgstr "Das NSS-Sicherheitssystem konnte nicht initialisiert werden" -#: ../plugins/smartcard/gsd-smartcard-manager.c:790 +#: ../plugins/smartcard/gsd-smartcard-manager.c:785 #, c-format msgid "no suitable smartcard driver could be found" msgstr "Es konnte kein passender Smartcard-Treiber gefunden werden" -#: ../plugins/smartcard/gsd-smartcard-manager.c:804 +#: ../plugins/smartcard/gsd-smartcard-manager.c:799 #, c-format msgid "smartcard driver '%s' could not be loaded" msgstr "Smartcard-Treiber »%s« konnte nicht geladen werden" -#: ../plugins/smartcard/gsd-smartcard-manager.c:876 +#: ../plugins/smartcard/gsd-smartcard-manager.c:871 #, c-format msgid "could not watch for incoming card events - %s" msgstr "Überwachung auf eingehende Karten-Ereignisse ist fehlgeschlagen - %s" -#: ../plugins/smartcard/gsd-smartcard-manager.c:1274 +#: ../plugins/smartcard/gsd-smartcard-manager.c:1269 #, c-format msgid "encountered unexpected error while waiting for smartcard events" msgstr "" @@ -3037,8 +3077,8 @@ "Automatic updates are not being installed as the computer is running on " "battery power" msgstr "" -"Aktualisierungen werden nicht automatisch installiert, da der Rechner sich im " -"Akkubetrieb befindet" +"Aktualisierungen werden nicht automatisch installiert, da der Rechner sich " +"im Akkubetrieb befindet" #. TRANSLATORS: informs user will not install by default #: ../plugins/updates/gsd-updates-manager.c:440 @@ -3113,25 +3153,98 @@ msgid "A transaction that cannot be interrupted is running" msgstr "Eine Übertragung lĂ€uft, die nicht unterbrochen werden kann" -#: ../plugins/wacom/gsd-wacom-device.c:314 -msgid "Stylus" -msgstr "Stylus" +#: ../plugins/wacom/gsd-wacom-device.c:909 +#, c-format +msgid "Left Ring Mode #%d" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:916 +#, c-format +msgid "Right Ring Mode #%d" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:944 +#, c-format +msgid "Left Touchstrip Mode #%d" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:951 +#, c-format +msgid "Right Touchstrip Mode #%d" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:966 +#, c-format +msgid "Left Touchring Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:968 +#, c-format +msgid "Right Touchring Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:971 +#, c-format +msgid "Left Touchstrip Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:973 +#, c-format +msgid "Right Touchstrip Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:978 +#, c-format +msgid "Mode Switch #%d" +msgstr "Moduswechsel #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1050 +#, c-format +msgid "Left Button #%d" +msgstr "Linker Knopf #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1053 +#, c-format +msgid "Right Button #%d" +msgstr "Rechter Knopf #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1056 +#, c-format +msgid "Top Button #%d" +msgstr "Oberster Knopf #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1059 +#, c-format +msgid "Bottom Button #%d" +msgstr "Unterer Knopf #%d" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:5 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "Die LED des Wacom-Tabletts Ă€ndern" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +msgid "Authentication is required to modify the lit LED for a Wacom tablet" +msgstr "Legitimierung wird benötigt, um die LED des Wacom-Tabletts zu Ă€ndern" -#: ../plugins/xrandr/gsd-xrandr-manager.c:420 +#: ../plugins/xrandr/gsd-xrandr-manager.c:500 msgid "Could not switch the monitor configuration" msgstr "Bildschirmkonfiguration konnte nicht geĂ€ndert werden" -#: ../plugins/xrandr/gsd-xrandr-manager.c:444 +#: ../plugins/xrandr/gsd-xrandr-manager.c:524 msgid "Could not restore the display's configuration" msgstr "Bildschirmkonfiguration konnte nicht wiederhergestellt werden" -#: ../plugins/xrandr/gsd-xrandr-manager.c:469 +#: ../plugins/xrandr/gsd-xrandr-manager.c:549 msgid "Could not restore the display's configuration from a backup" msgstr "" "Bildschirmkonfiguration konnte nicht aus einer Sicherungsdatei " "wiederhergestellt werden" -#: ../plugins/xrandr/gsd-xrandr-manager.c:490 +#: ../plugins/xrandr/gsd-xrandr-manager.c:570 #, c-format msgid "The display will be reset to its previous configuration in %d second" msgid_plural "" @@ -3141,50 +3254,101 @@ msgstr[1] "" "Diese Anzeige wird in %d Sekunden auf die vorherige Einstellung zurĂŒckgesetzt" -#: ../plugins/xrandr/gsd-xrandr-manager.c:539 +#: ../plugins/xrandr/gsd-xrandr-manager.c:619 msgid "Does the display look OK?" msgstr "Ist die Bildschirmanzeige in Ordnung?" -#: ../plugins/xrandr/gsd-xrandr-manager.c:546 +#: ../plugins/xrandr/gsd-xrandr-manager.c:626 msgid "_Restore Previous Configuration" msgstr "_Vorherige Einstellungen wiederherstellen" -#: ../plugins/xrandr/gsd-xrandr-manager.c:547 +#: ../plugins/xrandr/gsd-xrandr-manager.c:627 msgid "_Keep This Configuration" msgstr "_Diese Einstellungen beibehalten" -#: ../plugins/xrandr/gsd-xrandr-manager.c:628 +#: ../plugins/xrandr/gsd-xrandr-manager.c:708 msgid "The selected configuration for displays could not be applied" msgstr "Die gewĂ€hlte Bildschirmkonfiguration konnte nicht angewendet werden" -#: ../plugins/xrandr/gsd-xrandr-manager.c:1188 +#: ../plugins/xrandr/gsd-xrandr-manager.c:1358 #, c-format msgid "Could not refresh the screen information: %s" msgstr "Bildschirminformationen konnten nicht aktualisiert werden: %s" -#: ../plugins/xrandr/gsd-xrandr-manager.c:1192 +#: ../plugins/xrandr/gsd-xrandr-manager.c:1362 msgid "Trying to switch the monitor configuration anyway." msgstr "Es wird trotzdem versucht, die Bildschirmkonfiguration zu Ă€ndern." -#: ../plugins/xrandr/gsd-xrandr-manager.c:1743 +#: ../plugins/xrandr/gsd-xrandr-manager.c:1793 msgid "Could not apply the stored configuration for monitors" -msgstr "Die gespeicherte Bildschirmkonfiguration konnte nicht angewendet werden" +msgstr "" +"Die gespeicherte Bildschirmkonfiguration konnte nicht angewendet werden" #: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 -msgid "Set up screen size and rotation settings" -msgstr "BildschirmgrĂ¶ĂŸe und -rotation einstellen" - -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 msgid "XRandR" msgstr "XRandR" +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 +msgid "Set up screen size and rotation settings" +msgstr "BildschirmgrĂ¶ĂŸe und -rotation einstellen" + #: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 +msgid "X Settings" +msgstr "X-Einstellungen" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 msgid "Manage X Settings" msgstr "X-Einstellungen verwalten" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 -msgid "X Settings" -msgstr "X-Einstellungen" +#~ msgid "Enable this to set the cursor to absolute mode." +#~ msgstr "Legt fest, ob die Eingabemarke im absoluten Modus arbeitet." + +#~ msgid "Enable this to set the stylus to absolute mode." +#~ msgstr "Legt fest, ob der Stylus im absoluten Modus arbeitet." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the cursor." +#~ msgstr "" +#~ "Legen Sie hier den durch den Benutzer verwendbaren Bereich x1, y1 und x2, " +#~ "y2 fest." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the eraser." +#~ msgstr "" +#~ "Legen Sie hier den durch den Radiergummi verwendbaren Bereich x1, y1 und " +#~ "x2, y2 fest." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the pad." +#~ msgstr "" +#~ "Legen Sie hier den durch das Pad verwendbaren Bereich x1, y1 und x2, y2 " +#~ "fest." + +#~ msgid "Wacom cursor absolute mode" +#~ msgstr "Absoluter Modus der Wacom-Eingabemarke" + +#~ msgid "Wacom cursor button mapping" +#~ msgstr "Tastenabbildung der Wacom-Eingabemarke" + +#~ msgid "Wacom cursor tablet area" +#~ msgstr "Tablettbereich der Wacom-Eingabemarke" + +#~ msgid "Wacom eraser absolute mode" +#~ msgstr "Absoluter Modus des Wacom-Radiergummi" + +#~ msgid "Wacom eraser tablet area" +#~ msgstr "Tablettbereich des Wacom-Radiergummi" + +#~ msgid "Wacom stylus tablet area" +#~ msgstr "Tablettbereich des Wacom-Stylus" + +#~ msgid "Change system time and date settings" +#~ msgstr "Systemzeit, Datum und Zeitzone Ă€ndern" + +#~ msgid "To change time or date settings, you need to authenticate." +#~ msgstr "" +#~ "Um die Zeit- oder Datumseinstellungen zu Ă€ndern, mĂŒssen Sie sich " +#~ "legitimieren." + +#~ msgid "Stylus" +#~ msgstr "Stylus" #~ msgid "Allowed keys" #~ msgstr "Erlaubte Tasten" @@ -3219,8 +3383,8 @@ #~ "Could not get default terminal. Verify that your default terminal command " #~ "is set and points to a valid application." #~ msgstr "" -#~ "Das Vorgabeterminal konnte nicht gefunden werden. Stellen Sie sicher, dass " -#~ "der Befehl fĂŒr \n" +#~ "Das Vorgabeterminal konnte nicht gefunden werden. Stellen Sie sicher, " +#~ "dass der Befehl fĂŒr \n" #~ "den Vorgabeterminal gesetzt ist und auf eine installierte Anwendung " #~ "verweist." @@ -3309,5 +3473,5 @@ #~ msgid "" #~ "If notifications should be shown at session start if a profile is invalid." #~ msgstr "" -#~ "Legt fest, ob am Beginn einer Sitzung Benachrichtigungen angezeigt werden, " -#~ "falls ein Profil ungĂŒltig ist" +#~ "Legt fest, ob am Beginn einer Sitzung Benachrichtigungen angezeigt " +#~ "werden, falls ein Profil ungĂŒltig ist" diff -Nru gnome-settings-daemon-3.4.0/po/es.po gnome-settings-daemon-3.4.1/po/es.po --- gnome-settings-daemon-3.4.0/po/es.po 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/es.po 2012-04-16 12:34:36.000000000 +0000 @@ -11,7 +11,7 @@ # Francisco Javier F. Serrador , 2003, 2004, 2005, 2006. # Claudio Saavedra , 2007. # Sebi Kul , 2011. -# Jorge GonzĂĄlez , 2007, 2008, 2009, 2010, 2011. +# Jorge GonzĂĄlez , 2007, 2008, 2009, 2010, 2011, 2012. # Daniel Mustieles , 2011, 2012. # msgid "" @@ -19,7 +19,7 @@ "Project-Id-Version: gnome-settings-daemon.master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "settings-daemon&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2012-03-04 21:29+0000\n" +"POT-Creation-Date: 2012-03-26 16:43+0000\n" "PO-Revision-Date: 2012-03-05 10:48+0100\n" "Last-Translator: Daniel Mustieles \n" "Language-Team: Español \n" @@ -426,7 +426,7 @@ "Specify an amount in GB. If the amount of free space is more than this, no " "warning will be shown." msgstr "" -"Especificar el tamaño en GiB. Si el espacio libre es mayor que esto, no se " +"Especificar el tamaño en GB. Si el espacio libre es mayor que esto, no se " "mostrarĂĄ ninguna advertencia." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 @@ -1254,7 +1254,7 @@ #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 -#: ../plugins/mouse/gsd-mouse-manager.c:837 +#: ../plugins/mouse/gsd-mouse-manager.c:867 msgid "Universal Access" msgstr "Acceso universal" @@ -1521,7 +1521,7 @@ msgstr "Complemento del portapapeles" #: ../plugins/color/color.gnome-settings-plugin.in.h:1 -#: ../plugins/color/gsd-color-manager.c:1759 +#: ../plugins/color/gsd-color-manager.c:1757 msgid "Color" msgstr "Color" @@ -1529,40 +1529,40 @@ msgid "Color plugin" msgstr "Complemento de color" -#: ../plugins/color/gsd-color-manager.c:1764 +#: ../plugins/color/gsd-color-manager.c:1762 msgid "Recalibrate now" msgstr "Recalibrar ahora" #. TRANSLATORS: this is when the device has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1806 +#: ../plugins/color/gsd-color-manager.c:1804 msgid "Recalibration required" msgstr "Se necesita recalibrar" #. TRANSLATORS: this is when the display has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1818 +#: ../plugins/color/gsd-color-manager.c:1816 #, c-format msgid "The display '%s' should be recalibrated soon." msgstr "La pantalla «%s» se deberĂ­a recalibrar pronto." #. TRANSLATORS: this is when the printer has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1827 +#: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." msgstr "La impresora «%s» se deberĂ­a recalibrar pronto." #. TRANSLATORS: this is the application name -#: ../plugins/color/gsd-color-manager.c:2153 -#: ../plugins/color/gsd-color-manager.c:2169 +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 msgid "GNOME Settings Daemon Color Plugin" msgstr "Complemento de color del administrador de preferencias de GNOME" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2155 +#: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" msgstr "Dispositivo de calibraciĂłn de color añadido" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2171 +#: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" msgstr "Dispositivo de calibraciĂłn de color quitado" @@ -1760,11 +1760,11 @@ msgid "Media keys plugin" msgstr "Complemento de teclas multimedia" -#: ../plugins/mouse/gsd-mouse-manager.c:833 +#: ../plugins/mouse/gsd-mouse-manager.c:863 msgid "Could not enable mouse accessibility features" msgstr "No se pudieron activar las caracterĂ­sticas de accesibilidad del ratĂłn" -#: ../plugins/mouse/gsd-mouse-manager.c:835 +#: ../plugins/mouse/gsd-mouse-manager.c:865 msgid "" "Mouse accessibility requires Mousetweaks to be installed on your system." msgstr "" @@ -2266,12 +2266,12 @@ msgid "Computer is charged" msgstr "La baterĂ­a del equipo está cargada" -#. TRANSLATORS: the battery may be recalled by it's vendor -#: ../plugins/power/gsd-power-manager.c:988 +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 msgid "Battery may be recalled" msgstr "La baterĂ­a podrĂ­a estar reclamada" -#: ../plugins/power/gsd-power-manager.c:991 +#: ../plugins/power/gsd-power-manager.c:994 #, c-format msgid "" "A battery in your computer may have been recalled by %s and you may be at " @@ -2280,64 +2280,64 @@ "La baterĂ­a en su equipo quizĂĄ haya sido reclamada por %s y usted puede estar " "en riesgo." -#: ../plugins/power/gsd-power-manager.c:994 +#: ../plugins/power/gsd-power-manager.c:997 msgid "For more information visit the battery recall website." msgstr "" "Para obtener mĂĄs informaciĂłn visite el sitio de reclamaciĂłn de baterĂ­as." #. TRANSLATORS: button text, visit the manufacturers recall website -#: ../plugins/power/gsd-power-manager.c:1005 +#: ../plugins/power/gsd-power-manager.c:1008 msgid "Visit recall website" msgstr "Visitar sitio web de reclamaciones" #. TRANSLATORS: button text, do not show this bubble again -#: ../plugins/power/gsd-power-manager.c:1009 +#: ../plugins/power/gsd-power-manager.c:1012 msgid "Do not show me this again" msgstr "No mostrar esto mĂĄs" #. TRANSLATORS: UPS is now discharging -#: ../plugins/power/gsd-power-manager.c:1220 +#: ../plugins/power/gsd-power-manager.c:1223 msgid "UPS Discharging" msgstr "SAI descargĂĄndose" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1225 +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format msgid "%s of UPS backup power remaining" msgstr "Quedan %s de SAI de respaldo" #. TRANSLATORS: this is the notification application name -#: ../plugins/power/gsd-power-manager.c:1246 -#: ../plugins/power/gsd-power-manager.c:1424 -#: ../plugins/power/gsd-power-manager.c:1605 -#: ../plugins/power/gsd-power-manager.c:1754 +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 #: ../plugins/power/power.gnome-settings-plugin.in.h:1 msgid "Power" msgstr "EnergĂ­a" #. TRANSLATORS: laptop battery low, and we only have one battery -#: ../plugins/power/gsd-power-manager.c:1339 +#: ../plugins/power/gsd-power-manager.c:1342 msgid "Battery low" msgstr "BaterĂ­a baja" #. TRANSLATORS: laptop battery low, and we have more than one kind of battery -#: ../plugins/power/gsd-power-manager.c:1342 +#: ../plugins/power/gsd-power-manager.c:1345 msgid "Laptop battery low" msgstr "BaterĂ­a del portĂĄtil baja" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1348 +#: ../plugins/power/gsd-power-manager.c:1351 #, c-format msgid "Approximately %s remaining (%.0f%%)" msgstr "Quedan aproximadamente %s (%.0f%%)" #. TRANSLATORS: UPS is starting to get a little low -#: ../plugins/power/gsd-power-manager.c:1352 +#: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" msgstr "SAI bajo" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1356 +#: ../plugins/power/gsd-power-manager.c:1359 #, c-format msgid "Approximately %s of remaining UPS backup power (%.0f%%)" msgstr "" @@ -2345,143 +2345,143 @@ #. TRANSLATORS: mouse is getting a little low #. TRANSLATORS: the mouse battery is very low -#: ../plugins/power/gsd-power-manager.c:1360 -#: ../plugins/power/gsd-power-manager.c:1526 +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 msgid "Mouse battery low" msgstr "BaterĂ­a del ratĂłn baja" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1366 #, c-format msgid "Wireless mouse is low in power (%.0f%%)" msgstr "El ratĂłn inalĂĄmbrico tiene poca baterĂ­a (%.0f%%)" #. TRANSLATORS: keyboard is getting a little low #. TRANSLATORS: the keyboard battery is very low -#: ../plugins/power/gsd-power-manager.c:1367 -#: ../plugins/power/gsd-power-manager.c:1534 +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 msgid "Keyboard battery low" msgstr "BaterĂ­a del teclado baja" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1373 #, c-format msgid "Wireless keyboard is low in power (%.0f%%)" msgstr "El teclado inalĂĄmbrico tiene poca baterĂ­a (%.0f%%)" #. TRANSLATORS: PDA is getting a little low #. TRANSLATORS: the PDA battery is very low -#: ../plugins/power/gsd-power-manager.c:1374 -#: ../plugins/power/gsd-power-manager.c:1543 +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 msgid "PDA battery low" msgstr "BaterĂ­a del PDA baja" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1380 #, c-format msgid "PDA is low in power (%.0f%%)" msgstr "La pda tiene poca baterĂ­a (%.0f%%)" #. TRANSLATORS: cell phone (mobile) is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1381 -#: ../plugins/power/gsd-power-manager.c:1553 -#: ../plugins/power/gsd-power-manager.c:1564 +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 msgid "Cell phone battery low" msgstr "BaterĂ­a del telĂ©fono mĂłvil baja" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1387 #, c-format msgid "Cell phone is low in power (%.0f%%)" msgstr "El telĂ©fono mĂłvil tiene poca baterĂ­a (%.0f%%)" #. TRANSLATORS: media player, e.g. mp3 is getting a little low -#: ../plugins/power/gsd-power-manager.c:1389 +#: ../plugins/power/gsd-power-manager.c:1392 msgid "Media player battery low" msgstr "BaterĂ­a del reproductor multimedia baja" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1392 +#: ../plugins/power/gsd-power-manager.c:1395 #, c-format msgid "Media player is low in power (%.0f%%)" msgstr "El reproductor multimedia tiene poca baterĂ­a (%.0f%%)" #. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1396 -#: ../plugins/power/gsd-power-manager.c:1573 +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 msgid "Tablet battery low" msgstr "BaterĂ­a de la tableta baja" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1402 #, c-format msgid "Tablet is low in power (%.0f%%)" msgstr "La tableta tiene poca baterĂ­a (%.0f%%)" #. TRANSLATORS: computer, e.g. ipad is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1403 -#: ../plugins/power/gsd-power-manager.c:1582 +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 msgid "Attached computer battery low" msgstr "El equipo conectado tiene poca baterĂ­a" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1409 #, c-format msgid "Attached computer is low in power (%.0f%%)" msgstr "El equipo conectado tiene poca baterĂ­a (%.0f%%)" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1443 +#: ../plugins/power/gsd-power-manager.c:1446 msgid "Battery is low" msgstr "La baterĂ­a estĂĄ baja" #. TRANSLATORS: laptop battery critically low, and only have one kind of battery -#: ../plugins/power/gsd-power-manager.c:1485 +#: ../plugins/power/gsd-power-manager.c:1488 msgid "Battery critically low" msgstr "BaterĂ­a crĂ­ticamente baja" #. TRANSLATORS: laptop battery critically low, and we have more than one type of battery #. TRANSLATORS: laptop battery is really, really, low -#: ../plugins/power/gsd-power-manager.c:1488 -#: ../plugins/power/gsd-power-manager.c:1672 +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 msgid "Laptop battery critically low" msgstr "BaterĂ­a del portĂĄtil crĂ­ticamente baja" #. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything -#: ../plugins/power/gsd-power-manager.c:1497 +#: ../plugins/power/gsd-power-manager.c:1500 msgid "Plug in your AC adapter to avoid losing data." msgstr "Conecte su adaptador de corriente para evitar la pĂ©rdida de datos." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1501 +#: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." msgstr "El equipo se suspenderĂĄ muy pronto a menos que lo conecte." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1505 +#: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." msgstr "El equipo hibernarĂĄ muy pronto a menos que lo conecte." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1509 +#: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." msgstr "El equipo se apagarĂĄ muy pronto a menos que lo conecte." #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low -#: ../plugins/power/gsd-power-manager.c:1516 -#: ../plugins/power/gsd-power-manager.c:1708 +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" msgstr "SAI crĂ­ticamente bajo" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1520 +#: ../plugins/power/gsd-power-manager.c:1523 #, c-format msgid "" "Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " @@ -2491,7 +2491,7 @@ "Restablezca la CA en su equipo para evitar la pĂ©rdida de datos." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1529 +#: ../plugins/power/gsd-power-manager.c:1532 #, c-format msgid "" "Wireless mouse is very low in power (%.0f%%). This device will soon stop " @@ -2501,7 +2501,7 @@ "dispositivo dejarĂĄ de funcionar muy pronto." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1537 +#: ../plugins/power/gsd-power-manager.c:1540 #, c-format msgid "" "Wireless keyboard is very low in power (%.0f%%). This device will soon stop " @@ -2511,7 +2511,7 @@ "dispositivo dejarĂĄ de funcionar muy pronto." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1546 +#: ../plugins/power/gsd-power-manager.c:1549 #, c-format msgid "" "PDA is very low in power (%.0f%%). This device will soon stop functioning if " @@ -2521,7 +2521,7 @@ "dejarĂĄ de funcionar muy pronto." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1559 #, c-format msgid "" "Cell phone is very low in power (%.0f%%). This device will soon stop " @@ -2531,7 +2531,7 @@ "dispositivo dejarĂĄ de funcionar muy pronto." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1567 +#: ../plugins/power/gsd-power-manager.c:1570 #, c-format msgid "" "Media player is very low in power (%.0f%%). This device will soon stop " @@ -2541,7 +2541,7 @@ "este dispositivo dejarĂĄ de funcionar muy pronto." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1576 +#: ../plugins/power/gsd-power-manager.c:1579 #, c-format msgid "" "Tablet is very low in power (%.0f%%). This device will soon stop functioning " @@ -2551,7 +2551,7 @@ "dejarĂĄ de funcionar muy pronto." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1585 +#: ../plugins/power/gsd-power-manager.c:1588 #, c-format msgid "" "Attached computer is very low in power (%.0f%%). The device will soon " @@ -2561,14 +2561,14 @@ "dispositivo dejarĂĄ de funcionar muy pronto." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1625 -#: ../plugins/power/gsd-power-manager.c:1635 -#: ../plugins/power/gsd-power-manager.c:1771 +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 msgid "Battery is critically low" msgstr "La baterĂ­a estĂĄ crĂ­ticamente baja" #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1680 +#: ../plugins/power/gsd-power-manager.c:1683 msgid "" "The battery is below the critical level and this computer will power-off when the battery becomes completely empty." @@ -2577,7 +2577,7 @@ "cuando la baterĂ­a se agote completamente." #. TRANSLATORS: computer will suspend -#: ../plugins/power/gsd-power-manager.c:1686 +#: ../plugins/power/gsd-power-manager.c:1689 msgid "" "The battery is below the critical level and this computer is about to " "suspend.\n" @@ -2590,7 +2590,7 @@ "estado suspendido." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1693 +#: ../plugins/power/gsd-power-manager.c:1696 msgid "" "The battery is below the critical level and this computer is about to " "hibernate." @@ -2599,7 +2599,7 @@ "hibernar." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1698 +#: ../plugins/power/gsd-power-manager.c:1701 msgid "" "The battery is below the critical level and this computer is about to " "shutdown." @@ -2608,7 +2608,7 @@ "apagarse." #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1716 +#: ../plugins/power/gsd-power-manager.c:1719 msgid "" "UPS is below the critical level and this computer will power-off when " "the UPS becomes completely empty." @@ -2617,7 +2617,7 @@ "cuando el SAI se agote completamente." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1722 +#: ../plugins/power/gsd-power-manager.c:1725 msgid "" "UPS is below the critical level and this computer is about to hibernate." msgstr "" @@ -2625,25 +2625,25 @@ "hibernar." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1727 +#: ../plugins/power/gsd-power-manager.c:1730 msgid "UPS is below the critical level and this computer is about to shutdown." msgstr "" "El SAI estĂĄ por debajo del nivel crĂ­tico y este equipo estĂĄ a punto de " "apagarse." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2221 +#: ../plugins/power/gsd-power-manager.c:2224 msgid "Lid has been opened" msgstr "La tapa se ha abierto" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2298 +#: ../plugins/power/gsd-power-manager.c:2301 msgid "Lid has been closed" msgstr "La tapa se ha cerrado" #. TRANSLATORS: this is the title of the power manager status icon #. * that is only shown in fallback mode -#: ../plugins/power/gsd-power-manager.c:3645 +#: ../plugins/power/gsd-power-manager.c:3692 msgid "Power Manager" msgstr "Gestor de energĂ­a" @@ -2664,32 +2664,32 @@ msgstr "Adaptador de corriente" #. Translators: We are configuring new printer -#: ../plugins/print-notifications/gsd-printer.c:942 +#: ../plugins/print-notifications/gsd-printer.c:908 msgid "Configuring new printer" msgstr "Configurando la impresora nueva" #. Translators: Just wait -#: ../plugins/print-notifications/gsd-printer.c:944 +#: ../plugins/print-notifications/gsd-printer.c:910 msgid "Please wait..." msgstr "Espere
" #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:971 +#: ../plugins/print-notifications/gsd-printer.c:937 msgid "Missing printer driver" msgstr "Falta el controlador de la impresora" #. Translators: We have no driver installed for the device -#: ../plugins/print-notifications/gsd-printer.c:980 +#: ../plugins/print-notifications/gsd-printer.c:946 #, c-format msgid "No printer driver for %s." msgstr "No existe un controlador de impresora para %s." #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:985 +#: ../plugins/print-notifications/gsd-printer.c:951 msgid "No driver for this printer." msgstr "No existe un controlador para esta impresora." -#: ../plugins/print-notifications/gsd-printer.c:1088 +#: ../plugins/print-notifications/gsd-printer.c:1049 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 @@ -3191,7 +3191,6 @@ msgstr "Modificar la iluminaciĂłn del LED de una tableta Wacom" #: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 -#| msgid "Authentication is required to modify the laptop brightness" msgid "Authentication is required to modify the lit LED for a Wacom tablet" msgstr "" "Se requiere autenticaciĂłn para modificar la iluminaciĂłn del LED de una " diff -Nru gnome-settings-daemon-3.4.0/po/gu.po gnome-settings-daemon-3.4.1/po/gu.po --- gnome-settings-daemon-3.4.0/po/gu.po 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/gu.po 2012-04-16 12:34:36.000000000 +0000 @@ -5,8 +5,8 @@ "Project-Id-Version: gu\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." "cgi?product=gnome-settings-daemon&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2012-03-10 13:06+0000\n" -"PO-Revision-Date: 2012-03-16 13:59+0530\n" +"POT-Creation-Date: 2012-04-02 17:55+0000\n" +"PO-Revision-Date: 2012-04-03 10:48+0530\n" "Last-Translator: \n" "Language-Team: gu_IN \n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 msgid "Smartcard removal action" -msgstr "" +msgstr "àȘžà«àȘźàȘŸàȘ°à«àȘŸàȘ•àȘŸàȘ°à«àȘĄ àȘšàȘżàȘ°àȘŸàȘ•àȘ°àȘŁ àȘ•à«àȘ°àȘżàȘŻàȘŸ" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 msgid "" @@ -83,12 +83,8 @@ msgstr "àȘŸàȘšàȘȘેàȘĄ àȘžàȘ•à«àȘ°àȘżàȘŻ àȘ•àȘ°à«‹" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 -#, fuzzy -#| msgid "" -#| "Set this to TRUE to be able to send mouse clicks by tapping on the " -#| "touchpad." msgid "Set this to TRUE to enable all touchpads." -msgstr "àȘŸàȘšàȘȘેàȘĄ àȘȘàȘ° àȘŸà«‡àȘȘીàȘ‚àȘ— àȘŠà«àȘŠàȘŸàȘ°àȘŸ àȘźàȘŸàȘ‰àȘž àȘ•à«àȘČàȘżàȘ•à«‹àȘšà«‡ àȘźà«‹àȘ•àȘČàȘ”àȘŸàȘšà«àȘ‚ àȘžàȘ•à«àȘ·àȘź àȘ•àȘ°àȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘ† TRUE àȘšà«‡ àȘžà«àȘŻà«‹àȘœàȘżàȘ€ àȘ•àȘ°à«‹." +msgstr "àȘŹàȘ§à«€ àȘŸàȘšàȘȘેàȘĄàȘšà«‡ àȘžàȘ•à«àȘ°àȘżàȘŻ àȘ•àȘ°àȘ”àȘŸ àȘźàȘŸàȘŸà«‡ TRUE àȘ€àȘ°à«€àȘ•à«‡ àȘ†àȘšà«‡ àȘžà«àȘŻà«‹àȘœàȘżàȘ€ àȘ•àȘ°à«‹" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 msgid "" @@ -114,7 +110,7 @@ #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 msgid "Middle button emulation" -msgstr "" +msgstr "àȘźàȘ§à«àȘŻàȘź àȘŹàȘŸàȘš àȘˆàȘźà«àȘŻà«àȘČેàȘ¶àȘš" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 msgid "" @@ -162,7 +158,7 @@ #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 msgid "Whether this plugin would be activated by gnome-settings-daemon or not" -msgstr "" +msgstr "àȘ¶à«àȘ‚ àȘ† àȘȘ્àȘČàȘ—àȘ‡àȘš gnome-settings-daemon àȘŠà«àȘŠàȘŸàȘ°àȘŸ àȘžàȘ•à«àȘ°àȘżàȘŻ àȘ„àȘ¶à«‡ àȘ•à«‡ àȘšàȘčàȘżàȘ‚" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 @@ -192,7 +188,7 @@ #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" -msgstr "" +msgstr "gnome-settings-daemon àȘ¶àȘ°à«‚àȘ†àȘ€à«€ àȘ•àȘ€àȘŸàȘ°àȘźàȘŸàȘ‚ àȘ† àȘȘ્àȘČàȘ—àȘ‡àȘš àȘźàȘŸàȘŸà«‡ àȘ”àȘŸàȘȘàȘ°àȘ”àȘŸ àȘȘ્àȘ°àȘŸàȘ§àȘŸàȘšà«àȘŻ" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 msgid "Wacom stylus absolute mode" @@ -200,7 +196,7 @@ #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 msgid "Enable this to set the tablet to absolute mode." -msgstr "" +msgstr "àȘšà«‹àȘ•à«àȘ•àȘž àȘžà«àȘ„àȘżàȘ€àȘżàȘźàȘŸàȘ‚ àȘŸà«…àȘŹàȘČેàȘŸàȘšà«‡ àȘžà«àȘŻà«‹àȘœàȘżàȘ€ àȘ•àȘ°àȘ”àȘŸ àȘ†àȘšà«‡ àȘžàȘ•à«àȘ°àȘżàȘŻ àȘ•àȘ°à«‹." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 msgid "Wacom tablet area" @@ -208,7 +204,7 @@ #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." -msgstr "" +msgstr "àȘžàȘŸàȘ§àȘšà«‹ àȘŠà«àȘŠàȘŸàȘ°àȘŸ àȘ”àȘŸàȘȘàȘ°à«€ àȘ¶àȘ•àȘŸàȘŻ àȘ€à«‡àȘ”àȘŸ àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘšà«àȘ‚ x1, y1 àȘ…àȘšà«‡ x2, y2 àȘ€àȘ°à«€àȘ•à«‡ àȘ†àȘšà«‡ àȘžà«àȘŻà«‹àȘœàȘżàȘ€ àȘ•àȘ°à«‹." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 msgid "Wacom tablet rotation" @@ -222,11 +218,11 @@ #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 msgid "Wacom touch feature" -msgstr "" +msgstr "Wacom àȘžà«àȘȘàȘ°à«àȘ¶ àȘČàȘ•à«àȘ·àȘŁ" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 msgid "Enable this to move the cursor when the user touches the tablet." -msgstr "" +msgstr "àȘ•àȘ°à«àȘžàȘ°àȘšà«‡ àȘ–àȘžà«‡àȘĄàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘ†àȘšà«‡ àȘžàȘ•à«àȘ°àȘżàȘŻ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸ àȘŸà«…àȘŹàȘČેàȘŸàȘšà«‡ àȘžà«àȘȘàȘ°à«àȘ¶ àȘ•àȘ°à«‡." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 msgid "Wacom tablet PC feature" @@ -260,7 +256,7 @@ #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 msgid "Set this to the logical button mapping." -msgstr "" +msgstr "àȘČૉàȘœàȘżàȘ•àȘČ àȘŹàȘŸàȘš àȘźà«‡àȘȘàȘżàȘ‚àȘ— àȘźàȘŸàȘŸà«‡ àȘ†àȘšà«‡ àȘžà«àȘŻà«‹àȘœàȘżàȘ€ àȘ•àȘ°à«‹." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 msgid "Wacom stylus pressure threshold" @@ -280,7 +276,7 @@ #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 msgid "Wacom eraser button mapping" -msgstr "" +msgstr "Wacom àȘ­à«‚àȘ‚àȘžàȘ”àȘŸ àȘźàȘŸàȘŸà«‡àȘšà«àȘ‚ àȘ°àȘŹàȘ° àȘŹàȘŸàȘš àȘźà«‡àȘȘàȘżàȘ‚àȘ—" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 msgid "Wacom eraser pressure threshold" @@ -306,7 +302,7 @@ msgid "" "The keyboard shortcut generated when the button is pressed for custom " "actions." -msgstr "" +msgstr "àȘ•àȘżàȘŹà«‹àȘ°à«àȘĄ àȘŸà«‚àȘ‚àȘ•àȘŸàȘŁ àȘ‰àȘ€à«àȘȘàȘšà«àȘš àȘ„àȘŸàȘŻ àȘ›à«‡ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘŹàȘŸàȘš àȘ”ૈàȘ”àȘżàȘ§à«àȘŻ àȘ•à«àȘ°àȘżàȘŻàȘŸ àȘźàȘŸàȘŸà«‡ àȘŠàȘŹàȘŸàȘ”ેàȘČ àȘ›à«‡." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 msgid "Key combinations for an elevator custom action" @@ -365,39 +361,27 @@ "àȘœàȘ—્àȘŻàȘŸ àȘ àȘšà«€àȘšà«‡àȘšàȘŸàȘ‚ àȘ†àȘšà«‡ àȘ›à«‹àȘĄàȘ¶à«‡ àȘ€à«‹, àȘšà«‡àȘ€àȘ”àȘŁà«€ àȘŹàȘ€àȘŸàȘ”ેàȘČ àȘčàȘ¶à«‡" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 -#, fuzzy -#| msgid "Subsequent free percentage notify threshold" msgid "Subsequent free space percentage notify threshold" msgstr "àȘ…àȘšà«àȘ—àȘŸàȘźà«€ àȘźà«àȘ•à«àȘ€ àȘŸàȘ•àȘŸàȘ”àȘŸàȘ°à«€ àȘ„્àȘ°à«‡àȘ¶à«‹àȘČ્àȘĄàȘšà« àȘžà«‚àȘšàȘš àȘ•àȘ°à«‡ àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 -#, fuzzy -#| msgid "" -#| "Specify the percentage that the free disk space should reduce by before " -#| "issuing a subsequent warning" msgid "" "Specify the percentage that the free disk space should reduce by before " "issuing a subsequent warning." msgstr "" -"àȘŸàȘ•àȘŸàȘ”àȘŸàȘ°à«€àȘšà«‡ àȘžà«àȘȘàȘ·à«àȘŸ àȘ•àȘ°à«‹ àȘ•à«‡ àȘœà«‡ àȘźà«àȘ•à«àȘ€ àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘ…àȘšà«àȘ—àȘŸàȘźà«€ àȘšà«‡àȘ€àȘ”àȘŁà«€ àȘ…àȘŠàȘŸ àȘ•àȘ°àȘ€àȘŸ àȘȘàȘčેàȘČàȘŸàȘ‚ àȘ˜àȘŸà«‡àȘČ àȘčોàȘ”ી àȘœà«‹àȘ‡àȘ" +"àȘŸàȘ•àȘŸàȘ”àȘŸàȘ°à«€àȘšà«‡ àȘžà«àȘȘàȘ·à«àȘŸ àȘ•àȘ°à«‹ àȘ•à«‡ àȘœà«‡ àȘźà«àȘ•à«àȘ€ àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘ…àȘšà«àȘ—àȘŸàȘźà«€ àȘšà«‡àȘ€àȘ”àȘŁà«€ àȘ…àȘŠàȘŸ àȘ•àȘ°àȘ€àȘŸ àȘȘàȘčેàȘČàȘŸàȘ‚ àȘ˜àȘŸà«‡àȘČ àȘčોàȘ”ી àȘœà«‹àȘ‡àȘ." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 -#, fuzzy -#| msgid "Free space no notify threshold" msgid "Free space notify threshold" -msgstr "àȘźà«àȘ•à«àȘ€ àȘœàȘ—્àȘŻàȘŸ àȘ„્àȘ°à«‡àȘ¶à«‹àȘČ્àȘĄàȘšà«àȘ‚ àȘžà«‚àȘšàȘš àȘ•àȘ°àȘ€à« àȘšàȘ„ી" +msgstr "àȘźà«àȘ•à«àȘ€ àȘœàȘ—્àȘŻàȘŸ àȘ„્àȘ°à«‡àȘ¶à«‹àȘČ્àȘĄàȘšà«àȘ‚ àȘžà«‚àȘšàȘš àȘ•àȘ°à«‡ àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 -#, fuzzy -#| msgid "" -#| "Specify an amount in GB. If the amount of free space is more than this, " -#| "no warning will be shown" msgid "" "Specify an amount in GB. If the amount of free space is more than this, no " "warning will be shown." msgstr "" "GB àȘźàȘŸàȘ‚ àȘžàȘ‚àȘ–્àȘŻàȘŸàȘšà«‡ àȘžà«àȘȘàȘ·à«àȘŸ àȘ•àȘ°à«‹. àȘœà«‹ àȘźà«àȘ•à«àȘ€ àȘœàȘ—્àȘŻàȘŸàȘšà«€ àȘžàȘ‚àȘ–્àȘŻàȘŸ àȘ àȘ†àȘšàȘŸàȘ‚ àȘ•àȘ°àȘ€àȘŸ àȘ”àȘ§àȘŸàȘ°à«‡ àȘčોàȘŻ àȘ€à«‹, àȘšà«‡àȘ€àȘ”àȘŁà«€ àȘŹàȘ€àȘŸàȘ”ેàȘČ " -"àȘčàȘ¶à«‡ àȘšàȘčàȘżàȘ‚" +"àȘčàȘ¶à«‡ àȘšàȘčàȘżàȘ‚." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 msgid "Minimum notify period for repeated warnings" @@ -412,14 +396,12 @@ "àȘŠà«‡àȘ–àȘŸàȘ¶à«‡ àȘšàȘčàȘżàȘ‚." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 -#, fuzzy -#| msgid "Keybindings" msgid "Custom keybindings" -msgstr "Keybindings" +msgstr "àȘ”ૈàȘ”àȘżàȘ§à«àȘŻ àȘ•à«€àȘŹàȘŸàȘ‡àȘšà«àȘĄà«€àȘ‚àȘ—" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 msgid "List of custom keybindings" -msgstr "" +msgstr "àȘ”ૈàȘ”àȘżàȘ§à«àȘŻ àȘ•à«€àȘŹàȘŸàȘ‡àȘšà«àȘĄà«€àȘ‚àȘ—àȘšà«€ àȘŻàȘŸàȘŠà«€" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 msgid "Launch calculator" @@ -684,10 +666,9 @@ msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘ• àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘŹàȘŸàȘ‚àȘ§à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«€àȘ." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 -#, fuzzy #| msgid "Binding to toggle the magnifier." msgid "Magnifier zoom in" -msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘ• àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘŹàȘŸàȘ‚àȘ§à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«€àȘ." +msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘ• àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘšàȘŸàȘšà« àȘ•àȘ°à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 #, fuzzy @@ -696,10 +677,9 @@ msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘ• àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘŹàȘŸàȘ‚àȘ§à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«€àȘ." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 -#, fuzzy #| msgid "Binding to toggle the magnifier." msgid "Magnifier zoom out" -msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘ• àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘŹàȘŸàȘ‚àȘ§à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«€àȘ." +msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘ• àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘźà«‹àȘŸà« àȘ•àȘ°à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 #, fuzzy @@ -708,13 +688,12 @@ msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ°àȘ• àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘŹàȘŸàȘ‚àȘ§à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«€àȘ." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 -#| msgid "name" msgid "Name" msgstr "àȘšàȘŸàȘź" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 msgid "Name of the custom binding" -msgstr "" +msgstr "àȘ”ૈàȘ”àȘżàȘ§à«àȘŻ àȘŹàȘŸàȘ‡àȘšà«àȘĄà«€àȘ‚àȘ—àȘšà« àȘšàȘŸàȘź" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 #, fuzzy @@ -760,7 +739,7 @@ #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 msgid "Percentage action is taken" -msgstr "" +msgstr "àȘŸàȘ•àȘŸàȘ”àȘŸàȘ°à«€ àȘȘàȘ—àȘČàȘŸàȘ‚ àȘČેàȘ”àȘŸàȘźàȘŸàȘ‚ àȘ†àȘ”ે àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 msgid "" @@ -800,7 +779,7 @@ #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 msgid "Whether to use time-based notifications" -msgstr "" +msgstr "àȘ•à«àȘŻàȘŸàȘ‚àȘ€à«‹ àȘžàȘźàȘŻ àȘ†àȘ§àȘŸàȘ°àȘżàȘ€ àȘžà«‚àȘšàȘšà«‹àȘšà«‡ àȘ”àȘŸàȘȘàȘ°àȘ”àȘŸàȘšà« àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 msgid "" @@ -820,13 +799,15 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 msgid "The install root to use when adding and removing packages" -msgstr "" +msgstr "àȘ”àȘŸàȘȘàȘ°àȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘžà«àȘ„àȘŸàȘȘàȘš àȘ°à«àȘŸ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘȘેàȘ•à«‡àȘœà«‹àȘšà«‡ àȘ‰àȘźà«‡àȘ°à«€ àȘ…àȘšà«‡ àȘŠà«‚àȘ° àȘ•àȘ°à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 msgid "" "The install root to use when processing packages, which is changed when " "using LTSP or when testing." msgstr "" +"àȘ”àȘŸàȘȘàȘ°àȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘžà«àȘ„àȘŸàȘȘàȘš àȘ°à«àȘŸ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘȘેàȘ•à«‡àȘœà«‹àȘšà«‡ àȘȘ્àȘ°àȘ•à«àȘ°àȘżàȘŻàȘŸ àȘ•àȘ°à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«‡, àȘ•à«‡ àȘœà«‡ àȘŹàȘŠàȘČેàȘČ àȘ›à«‡ àȘœà«àȘŻàȘŸàȘ°à«‡ LTSP àȘšà«‡ " +"àȘ”àȘŸàȘȘàȘ°à«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«‡ àȘ…àȘ„àȘ”àȘŸ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘšàȘ•àȘŸàȘžà«€ àȘ°àȘč્àȘŻàȘŸ àȘ›à«‡." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 msgid "Use mobile broadband connections" @@ -849,7 +830,7 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 msgid "Automatically download updates in the background without confirmation" -msgstr "" +msgstr "àȘ–àȘŸàȘ€àȘ°à«€ àȘ”àȘ—àȘ° àȘȘàȘŸàȘ¶à«àȘ°à«àȘ”àȘ­àȘŸàȘ—àȘźàȘŸàȘ‚ àȘ†àȘȘàȘźà«‡àȘłà«‡ àȘžà«àȘ§àȘŸàȘ°àȘŸàȘšà«‡ àȘĄàȘŸàȘ‰àȘšàȘČોàȘĄ àȘ•àȘ°à«‹" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 msgid "" @@ -877,7 +858,7 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 msgid "How often to check for updates" -msgstr "" +msgstr "àȘ•à«‡àȘŸàȘČી àȘ”àȘŸàȘ° àȘžà«àȘ§àȘŸàȘ°àȘŸàȘ“àȘšà«‡ àȘšàȘ•àȘŸàȘžàȘ”àȘŸ" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 msgid "" @@ -910,19 +891,19 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 msgid "How often to check for distribution upgrades" -msgstr "" +msgstr "àȘ•à«‡àȘŸàȘČી àȘ”àȘŸàȘ° àȘ”àȘŸàȘ°àȘ‚àȘ”àȘŸàȘ° àȘ”àȘżàȘ€àȘ°àȘŁ àȘžà«àȘ§àȘŸàȘ°àȘŸàȘšà«‡ àȘšàȘ•àȘŸàȘžàȘ”àȘŸ" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 msgid "How often to check for distribution upgrades. Value is in seconds." -msgstr "" +msgstr "àȘ•à«‡àȘŸàȘČી àȘ”àȘŸàȘ° àȘ”àȘŸàȘ°àȘ‚àȘ”àȘŸàȘ° àȘ”àȘżàȘ€àȘ°àȘŁ àȘžà«àȘ§àȘŸàȘ°àȘŸàȘšà«‡ àȘšàȘ•àȘŸàȘžàȘ”àȘŸ. àȘ•àȘżàȘ‚àȘźàȘ€ àȘžà«‡àȘ•àȘ‚àȘĄàȘźàȘŸàȘ‚ àȘ›à«‡." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 msgid "How often to refresh the package cache" -msgstr "" +msgstr "àȘ•à«‡àȘŸàȘČી àȘ”àȘŸàȘ° àȘ”àȘŸàȘ°àȘ‚àȘ”àȘŸàȘ° àȘȘેàȘ•à«‡àȘœ àȘ•à«‡àȘ¶àȘšà«‡ àȘ€àȘŸàȘœà« àȘ•àȘ°àȘ”ુ" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 msgid "How often to refresh the package cache. Value is in seconds." -msgstr "" +msgstr "àȘ•à«‡àȘŸàȘČી àȘ”àȘŸàȘ° àȘ”àȘŸàȘ°àȘ‚àȘ”àȘŸàȘ° àȘȘેàȘ•à«‡àȘœàȘšà«‡ àȘ€àȘŸàȘœà« àȘ•àȘ°àȘ”ુ. àȘ•àȘżàȘ‚àȘźàȘ€ àȘžà«‡àȘ•àȘ‚àȘĄàȘźàȘŸàȘ‚ àȘ›à«‡." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 msgid "The number of seconds at session startup to wait before checking for updates" @@ -944,15 +925,15 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 msgid "Notify the user when distribution upgrades are available" -msgstr "" +msgstr "àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘ”àȘżàȘ€àȘ°àȘŁ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘ‰àȘȘàȘČàȘŹà«àȘ§ àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 msgid "Notify the user when distribution upgrades are available." -msgstr "" +msgstr "àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘ”àȘżàȘ€àȘ°àȘŁ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘ‰àȘȘàȘČàȘŹà«àȘ§ àȘčોàȘŻ." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 msgid "Notify the user for completed updates" -msgstr "" +msgstr "àȘžàȘźàȘŸàȘȘ્àȘ€ àȘ„àȘŻà«‡àȘČ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘźàȘŸàȘŸà«‡ àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 msgid "" @@ -963,37 +944,40 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 msgid "Notify the user for completed updates where the user needs to restart" msgstr "" +"àȘžàȘźàȘŸàȘȘ્àȘ€ àȘ„àȘŻà«‡àȘČ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘźàȘŸàȘŸà«‡ àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ‚ àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘȘુàȘš:àȘ¶àȘ°à«‚ àȘ•àȘ°àȘ”àȘŸàȘšà«€ àȘœàȘ°à«‚àȘ° àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 msgid "Notify the user for completed updates where the user needs to restart." msgstr "" +"àȘžàȘźàȘŸàȘȘ્àȘ€ àȘ„àȘŻà«‡àȘČ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘźàȘŸàȘŸà«‡ àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ‚ àȘȘુàȘš:àȘ¶àȘ°à«‚ àȘ•àȘ°àȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«€ àȘœàȘ°à«‚àȘ° àȘ›à«‡." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 msgid "Notify the user when the automatic update was not started on battery power" -msgstr "" +msgstr "àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘ†àȘȘોàȘ†àȘȘ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘŹà«‡àȘŸàȘ°à«€ àȘȘàȘŸàȘ”àȘ° àȘȘàȘ° àȘ¶àȘ°à«‚ àȘ„àȘŻà«‡àȘČ àȘš àȘčોàȘŻ àȘ€à«‹" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 msgid "" "Notify the user when the update was not automatically started because the " "machine is running on battery power." msgstr "" +"àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘžà«àȘ§àȘŸàȘ°à«‹ àȘ†àȘȘàȘźà«‡àȘłà«‡ àȘ¶àȘ°à«‚ àȘ„àȘŻà«‡àȘČ àȘš àȘčોàȘŻ àȘ€à«‹ àȘ•àȘŸàȘ°àȘŁ àȘ•à«‡ àȘźàȘ¶à«€àȘš àȘŹà«‡àȘŸàȘ°à«€ " +"àȘȘàȘŸàȘ”àȘ° àȘȘàȘ° àȘšàȘŸàȘČી àȘ°àȘč્àȘŻà« àȘčોàȘŻ." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 msgid "Notify the user when the update was started" -msgstr "" +msgstr "àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘžà«àȘ§àȘŸàȘ°à«‹ àȘ¶àȘ°à«‚ àȘ„àȘŻà«‡àȘČ àȘčોàȘŻ" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 msgid "Notify the user when the update was started." -msgstr "" +msgstr "àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘžà«‚àȘšàȘżàȘ€ àȘ•àȘ°à«‹ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘžà«àȘ§àȘŸàȘ°à«‹ àȘ¶àȘ°à«‚ àȘ„àȘŻà«‡àȘČ àȘčોàȘŻ" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 -#| msgid "Additional software was installed" msgid "Ask the user if additional firmware should be installed" msgstr "àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘȘૂàȘ›à«‹ àȘœà«‹ àȘ”àȘ§àȘŸàȘ°àȘŸàȘšàȘŸàȘ‚ àȘ«àȘ°à«àȘźàȘ”ેàȘ°àȘšà«‡ àȘžà«àȘ„àȘŸàȘȘàȘżàȘ€ àȘ•àȘ°àȘ”àȘŸ àȘœà«‹àȘ‡àȘ" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 msgid "Ask the user if additional firmware should be installed if it is available." -msgstr "" +msgstr "àȘ”àȘȘàȘ°àȘŸàȘ¶àȘ•àȘ°à«àȘ€àȘŸàȘšà«‡ àȘȘૂàȘ›à«‹ àȘœà«‹ àȘ”àȘ§àȘŸàȘ°àȘŸàȘšà«€ àȘ«àȘ°à«àȘźàȘ”ેàȘ°àȘšà«‡ àȘžà«àȘ„àȘŸàȘȘàȘżàȘ€ àȘ•àȘ°à«‡àȘČ àȘčોàȘ”ી àȘœà«‹àȘ‡àȘ àȘœà«‹ àȘ€à«‡ àȘ‰àȘȘàȘČàȘŹà«àȘ§ àȘčોàȘŻ." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 msgid "Firmware files that should not be searched for" @@ -1042,7 +1026,7 @@ #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 msgid "Whether to turn off specific monitors after boot" -msgstr "" +msgstr "àȘ•à«àȘŻàȘŸàȘ‚àȘ€à«‹ àȘŹà«àȘŸ àȘȘàȘ›à«€ àȘ–àȘŸàȘž àȘźà«‹àȘšàȘżàȘŸàȘ°àȘšà«‡ àȘŹàȘ‚àȘ§ àȘ•àȘ°àȘ”ુ àȘ›à«‡" #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 msgid "" @@ -1137,17 +1121,13 @@ #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:508 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:572 -#, fuzzy -#| msgid "Slow Keys Alert" msgid "Slow Keys Turned On" -msgstr "àȘ•à«€àȘšà«€ àȘšà«‡àȘ€àȘ”àȘŁà«€ àȘŹàȘ€àȘŸàȘ”ો" +msgstr "àȘ§à«€àȘźà«€ àȘ•à«€ àȘšàȘŸàȘČુ àȘ„àȘŻà«‡àȘČ àȘ›à«‡" #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 -#, fuzzy -#| msgid "Slow Keys Alert" msgid "Slow Keys Turned Off" -msgstr "àȘ•à«€àȘšà«€ àȘšà«‡àȘ€àȘ”àȘŁà«€ àȘŹàȘ€àȘŸàȘ”ો" +msgstr "àȘ§à«€àȘźà«€ àȘ•à«€ àȘŹàȘ‚àȘ§ àȘ„àȘŻà«‡àȘČ àȘ›à«‡" #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 @@ -1160,8 +1140,7 @@ #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 -#: ../plugins/mouse/gsd-mouse-manager.c:837 -#| msgid "Universal Access Preferences" +#: ../plugins/mouse/gsd-mouse-manager.c:867 msgid "Universal Access" msgstr "àȘžàȘŸàȘ°à«àȘ”àȘ€à«àȘ°àȘżàȘ• àȘ”àȘȘàȘ°àȘŸàȘ¶" @@ -1207,17 +1186,13 @@ #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:641 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:707 -#, fuzzy -#| msgid "Sticky Keys Alert" msgid "Sticky Keys Turned On" -msgstr "àȘžà«àȘŸà«€àȘ•à«€ àȘ•à«€àȘ“àȘšà«€ àȘšà«‡àȘ€àȘ”àȘŁà«€" +msgstr "àȘžà«àȘŸà«€àȘ•à«€ àȘ•à«€ àȘšàȘŸàȘČુ àȘ„àȘŻà«‡àȘČ àȘ›à«‡" #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 -#, fuzzy -#| msgid "Sticky Keys Alert" msgid "Sticky Keys Turned Off" -msgstr "àȘžà«àȘŸà«€àȘ•à«€ àȘ•à«€àȘ“àȘšà«€ àȘšà«‡àȘ€àȘ”àȘŁà«€" +msgstr "àȘžà«àȘŸà«€àȘ•à«€ àȘ•à«€ àȘŹàȘ‚àȘ§ àȘ„àȘŻà«‡àȘČ àȘ›à«‡" #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 @@ -1285,7 +1260,7 @@ #: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 msgid "Mount Helper" -msgstr "" +msgstr "àȘźàȘŸàȘ‰àȘšà«àȘŸ àȘźàȘŠàȘŠàȘ•àȘ°à«àȘ€àȘŸ" #: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 msgid "Automount and autorun plugged devices" @@ -1426,53 +1401,49 @@ msgstr "àȘ•à«àȘČàȘżàȘȘàȘŹà«‹àȘ°à«àȘĄ àȘȘ્àȘČàȘ—àȘ‡àȘš" #: ../plugins/color/color.gnome-settings-plugin.in.h:1 -#: ../plugins/color/gsd-color-manager.c:1759 +#: ../plugins/color/gsd-color-manager.c:1757 msgid "Color" msgstr "àȘ°àȘ‚àȘ—" #: ../plugins/color/color.gnome-settings-plugin.in.h:2 -#| msgid "Clipboard plugin" msgid "Color plugin" msgstr "àȘ°àȘ‚àȘ— àȘȘ્àȘČàȘ—àȘ‡àȘš" -#: ../plugins/color/gsd-color-manager.c:1764 +#: ../plugins/color/gsd-color-manager.c:1762 msgid "Recalibrate now" msgstr "" #. TRANSLATORS: this is when the device has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1806 -#, fuzzy +#: ../plugins/color/gsd-color-manager.c:1804 #| msgid "A restart is required." msgid "Recalibration required" -msgstr "àȘȘુàȘš:àȘ¶àȘ°à«‚ àȘ•àȘ°àȘ”ુ àȘœàȘ°à«‚àȘ°à«€ àȘ›à«‡." +msgstr "àȘȘુàȘš:àȘźàȘŸàȘȘàȘŸàȘ‚àȘ•àȘš àȘ•àȘ°àȘ”ુ àȘœàȘ°à«‚àȘ°à«€ àȘ›à«‡" #. TRANSLATORS: this is when the display has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1818 +#: ../plugins/color/gsd-color-manager.c:1816 #, c-format msgid "The display '%s' should be recalibrated soon." msgstr "" #. TRANSLATORS: this is when the printer has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1827 +#: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." msgstr "" #. TRANSLATORS: this is the application name -#: ../plugins/color/gsd-color-manager.c:2153 -#: ../plugins/color/gsd-color-manager.c:2169 -#, fuzzy -#| msgid "GNOME Settings Daemon" +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 msgid "GNOME Settings Daemon Color Plugin" -msgstr "GNOME àȘžà«àȘŻà«‹àȘœàȘš àȘĄàȘżàȘźàȘš" +msgstr "GNOME àȘžà«àȘŻà«‹àȘœàȘš àȘĄàȘżàȘźàȘš àȘ°àȘ‚àȘ— àȘȘ્àȘČàȘ—àȘ‡àȘš" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2155 +#: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" msgstr "" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2171 +#: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" msgstr "" @@ -1485,18 +1456,19 @@ msgstr "àȘšàȘ•àȘČી àȘȘ્àȘČàȘ—àȘ‡àȘš" #: ../plugins/housekeeping/gsd-disk-space.c:332 -#, fuzzy, c-format -#| msgid "Low Disk Space" +#, c-format msgid "Low Disk Space on \"%s\"" -msgstr "àȘšà«€àȘšà«€ àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ" +msgstr "\"%s\" àȘȘàȘ° àȘšà«€àȘšà«€ àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ" #: ../plugins/housekeeping/gsd-disk-space.c:334 -#, fuzzy, c-format +#, c-format #| msgid "The volume \"%s\" has only %s disk space remaining." msgid "" "The volume \"%s\" has only %s disk space remaining. You may free up some " "space by emptying the trash." -msgstr "àȘ”ોàȘČ્àȘŻà«àȘź \"%s\" àȘȘàȘŸàȘžà«‡ àȘ«àȘ•à«àȘ€ %s àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘ°àȘčેàȘČી àȘ›à«‡." +msgstr "" +"àȘ”ોàȘČ્àȘŻà«àȘź \"%s\" àȘȘàȘŸàȘžà«‡ àȘ«àȘ•à«àȘ€ %s àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘ°àȘčેàȘČી àȘ›à«‡. àȘ€àȘźà«‡ àȘ•àȘšàȘ°àȘŸàȘȘેàȘŸà«€àȘšà«‡ àȘ–àȘŸàȘČી àȘ•àȘ°à«€àȘšà«‡ àȘ…àȘźà«àȘ• àȘœàȘ—્àȘŻàȘŸàȘšà«‡ " +"àȘźà«àȘ•à«àȘ€ àȘ•àȘ°à«€ àȘ¶àȘ•à«‹ àȘ›à«‹." #: ../plugins/housekeeping/gsd-disk-space.c:338 #: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 @@ -1511,12 +1483,14 @@ msgstr "àȘšà«€àȘšà«€ àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ" #: ../plugins/housekeeping/gsd-disk-space.c:345 -#, fuzzy, c-format +#, c-format #| msgid "This computer has only %s disk space remaining." msgid "" "This computer has only %s disk space remaining. You may free up some space " "by emptying the trash." -msgstr "àȘ† àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘȘàȘŸàȘžà«‡ àȘ«àȘ•à«àȘ€ %s àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘ°àȘčેàȘČી àȘ›à«‡." +msgstr "" +"àȘ† àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘȘàȘŸàȘžà«‡ àȘ«àȘ•à«àȘ€ %s àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘ°àȘčેàȘČી àȘ›à«‡. àȘ€àȘźà«‡ àȘ•àȘšàȘ°àȘŸàȘȘેàȘŸà«€àȘšà«‡ àȘ–àȘŸàȘČી àȘ•àȘ°à«€àȘšà«‡ àȘ…àȘźà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘźà«àȘ•à«àȘ€ " +"àȘ•àȘ°à«€ àȘ¶àȘ•à«‹ àȘ›à«‹." #: ../plugins/housekeeping/gsd-disk-space.c:348 #: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 @@ -1525,7 +1499,6 @@ msgstr "àȘ† àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘȘàȘŸàȘžà«‡ àȘ«àȘ•à«àȘ€ %s àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ àȘ°àȘčેàȘČી àȘ›à«‡." #: ../plugins/housekeeping/gsd-disk-space.c:363 -#| msgid "Low Disk Space" msgid "Disk space" msgstr "àȘĄàȘżàȘžà«àȘ• àȘœàȘ—્àȘŻàȘŸ" @@ -1544,7 +1517,6 @@ msgstr "àȘ…àȘ”àȘ—àȘŁà«‹" #: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 -#| msgid "Don't show any warnings again for this filesystem" msgid "Don't show any warnings again for this file system" msgstr "àȘ† àȘ«àȘŸàȘ‡àȘČ àȘžàȘżàȘžà«àȘŸàȘź àȘźàȘŸàȘŸà«‡ àȘ«àȘ°à«€àȘ„ી àȘ•à«‹àȘ‡àȘȘàȘŁ àȘšà«‡àȘ€àȘ”àȘŁà«€àȘ“ àȘŹàȘ€àȘŸàȘ”ો àȘšàȘčàȘżàȘ‚" @@ -1604,21 +1576,18 @@ msgstr "àȘČેàȘ†àȘ‰àȘŸ (_L)" #: ../plugins/keyboard/gsd-keyboard-xkb.c:248 -#| msgid "Show _Current Layout" msgid "Show _Keyboard Layout..." msgstr "àȘ•àȘżàȘŹà«‹àȘ°à«àȘĄ àȘČેàȘ†àȘ‰àȘŸàȘšà«‡ àȘŹàȘ€àȘŸàȘ”ો (_K)..." #. translators note: #. * This is the name of the gnome-control-center "region" panel #: ../plugins/keyboard/gsd-keyboard-xkb.c:255 -#| msgid "Manage X Settings" msgid "Region and Language Settings" msgstr "àȘ”àȘżàȘžà«àȘ€àȘŸàȘ° àȘ…àȘšà«‡ àȘ­àȘŸàȘ·àȘŸ àȘžà«àȘŻà«‹àȘœàȘšà«‹" #. TRANSLATORS: wireless keyboard with internal battery #: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 #: ../plugins/power/gpm-common.c:585 ../plugins/power/gpm-common.c:872 -#| msgid "Keyboard" msgid "Keyboard" msgid_plural "Keyboards" msgstr[0] "àȘ•àȘżàȘŹà«‹àȘ°à«àȘĄ" @@ -1664,12 +1633,11 @@ msgid "Media keys plugin" msgstr "àȘźà«€àȘĄàȘżàȘŻàȘŸ àȘ•à«€ àȘȘàȘČ્àȘ—àȘ‡àȘš" -#: ../plugins/mouse/gsd-mouse-manager.c:833 +#: ../plugins/mouse/gsd-mouse-manager.c:863 msgid "Could not enable mouse accessibility features" msgstr "àȘźàȘŸàȘ‰àȘž àȘȘ્àȘ°àȘŸàȘȘ્àȘŻ àȘČàȘŸàȘ•à«àȘ·àȘŁàȘżàȘ•àȘ€àȘŸàȘ“àȘšà«‡ àȘžàȘ•à«àȘ°àȘżàȘŻ àȘ•àȘ°à«€ àȘ¶àȘ•àȘŸàȘŻà« àȘšàȘčàȘżàȘ‚" -#: ../plugins/mouse/gsd-mouse-manager.c:835 -#, fuzzy +#: ../plugins/mouse/gsd-mouse-manager.c:865 #| msgid "" #| "Mouse accessibility requires mousetweaks to be installed on your system." msgid "Mouse accessibility requires Mousetweaks to be installed on your system." @@ -1678,7 +1646,6 @@ #. TRANSLATORS: wireless mice with internal batteries #: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 #: ../plugins/power/gpm-common.c:581 ../plugins/power/gpm-common.c:848 -#| msgid "Mouse" msgid "Mouse" msgid_plural "Mice" msgstr[0] "àȘźàȘŸàȘ‰àȘž" @@ -1720,7 +1687,6 @@ msgstr[1] "àȘ•àȘČàȘŸàȘ•" #: ../plugins/power/gpm-common.c:70 -#| msgid "Examine" msgid "minute" msgid_plural "minutes" msgstr[0] "àȘźàȘżàȘšàȘżàȘŸ" @@ -1800,7 +1766,7 @@ #. TRANSLATORS: manufacturer #: ../plugins/power/gpm-common.c:469 msgid "Vendor:" -msgstr "" +msgstr "àȘ”àȘżàȘ•à«àȘ°à«‡àȘ€àȘŸ:" #. TRANSLATORS: how the battery is made, e.g. Lithium Ion #: ../plugins/power/gpm-common.c:474 @@ -1814,7 +1780,6 @@ #. TRANSLATORS: model number of the battery #: ../plugins/power/gpm-common.c:482 -#| msgid "Module" msgid "Model:" msgstr "àȘźà«‹àȘĄà«‡àȘČ:" @@ -1909,7 +1874,6 @@ #. TRANSLATORS: media player, mp3 etc #: ../plugins/power/gpm-common.c:598 ../plugins/power/gpm-common.c:945 -#| msgid "Launch media player" msgid "Media player" msgid_plural "Media players" msgstr[0] "àȘźà«€àȘĄàȘżàȘŻàȘŸ àȘȘ્àȘČેàȘŻàȘ°" @@ -1966,7 +1930,6 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:719 -#| msgid "Empty Trash" msgid "Empty" msgstr "àȘ–àȘŸàȘČી" @@ -2037,7 +2000,6 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:832 -#| msgid "Mouse plugin" msgid "Mouse is charging" msgstr "àȘźàȘŸàȘ‰àȘž àȘšàȘŸàȘ°à«àȘœ àȘ„àȘ‡ àȘ°àȘč્àȘŻà« àȘ›à«‡" @@ -2048,7 +2010,6 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:840 -#| msgid "Toner empty" msgid "Mouse is empty" msgstr "àȘźàȘŸàȘ‰àȘž àȘ–àȘŸàȘČી àȘ›à«‡" @@ -2059,19 +2020,16 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:856 -#| msgid "Keyboard plugin" msgid "Keyboard is charging" msgstr "àȘ•àȘżàȘŹà«‹àȘ°à«àȘĄ àȘšàȘŸàȘ°à«àȘœ àȘ„àȘ‡ àȘ°àȘč્àȘŻà« àȘ›à«‡" #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:860 -#| msgid "Keyboard plugin" msgid "Keyboard is discharging" msgstr "àȘ•à«€àȘŹà«‹àȘ°à«àȘĄ àȘĄàȘżàȘžà«àȘšàȘŸàȘ°à«àȘœ àȘ„àȘ‡ àȘ°àȘč્àȘŻà« àȘ›à«‡" #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:864 -#| msgid "Keyboard" msgid "Keyboard is empty" msgstr "àȘ•àȘżàȘŹà«‹àȘ°à«àȘĄ àȘ–àȘŸàȘČી àȘ›à«‡" @@ -2112,7 +2070,6 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:912 -#| msgid "Toner empty" msgid "Cell phone is empty" msgstr "àȘžà«‡àȘČ àȘ«à«‹àȘš àȘ–àȘŸàȘČી àȘ›à«‡" @@ -2153,7 +2110,6 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:961 -#| msgid "Toner empty" msgid "Tablet is empty" msgstr "àȘŸà«…àȘŹàȘČેàȘŸ àȘ–àȘŸàȘČી àȘ›à«‡" @@ -2174,7 +2130,6 @@ #. TRANSLATORS: battery state #: ../plugins/power/gpm-common.c:985 -#| msgid "Toner empty" msgid "Computer is empty" msgstr "àȘ•àȘźà«àȘȘ્àȘŻà«àȘŸàȘ° àȘ–àȘŸàȘČી àȘ›à«‡" @@ -2184,218 +2139,217 @@ msgstr "àȘ•àȘźà«àȘȘ્àȘŻà«àȘŸàȘ° àȘšàȘŸàȘ°à«àȘœ àȘ„àȘŻà«‡àȘČ àȘ›à«‡" #. TRANSLATORS: the battery may be recalled by its vendor -#: ../plugins/power/gsd-power-manager.c:990 +#: ../plugins/power/gsd-power-manager.c:991 msgid "Battery may be recalled" msgstr "" -#: ../plugins/power/gsd-power-manager.c:993 +#: ../plugins/power/gsd-power-manager.c:994 #, c-format msgid "" "A battery in your computer may have been recalled by %s and you may be at " "risk." msgstr "" -#: ../plugins/power/gsd-power-manager.c:996 +#: ../plugins/power/gsd-power-manager.c:997 msgid "For more information visit the battery recall website." -msgstr "" +msgstr "àȘ”àȘ§àȘŸàȘ°à«‡ àȘœàȘŸàȘŁàȘ•àȘŸàȘ°à«€ àȘźàȘŸàȘŸà«‡ àȘŹà«‡àȘŸàȘ°à«€ àȘ°àȘżàȘ•à«‹àȘČ àȘ”ેàȘŹàȘžàȘŸàȘ‡àȘŸàȘšà«€ àȘźà«àȘČàȘŸàȘ•àȘŸàȘ€ àȘČો." #. TRANSLATORS: button text, visit the manufacturers recall website -#: ../plugins/power/gsd-power-manager.c:1007 +#: ../plugins/power/gsd-power-manager.c:1008 msgid "Visit recall website" -msgstr "" +msgstr "àȘ°àȘżàȘ•à«‹àȘČ àȘ”ેàȘŹàȘžàȘŸàȘ‡àȘŸàȘšà«€ àȘźà«àȘČàȘŸàȘ•àȘŸàȘ€ àȘČો" #. TRANSLATORS: button text, do not show this bubble again -#: ../plugins/power/gsd-power-manager.c:1011 -#| msgid "Don't show any warnings again" +#: ../plugins/power/gsd-power-manager.c:1012 msgid "Do not show me this again" msgstr "àȘ†àȘšà«‡ àȘ«àȘ°à«€àȘ„ી àȘźàȘšà«‡ àȘŹàȘ€àȘŸàȘ”ો àȘšàȘčàȘżàȘ‚" #. TRANSLATORS: UPS is now discharging -#: ../plugins/power/gsd-power-manager.c:1222 +#: ../plugins/power/gsd-power-manager.c:1223 msgid "UPS Discharging" msgstr "UPS àȘĄàȘżàȘžà«àȘšàȘŸàȘ°à«àȘœ àȘ„àȘ‡ àȘ°àȘč્àȘŻà« àȘ›à«‡" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1227 +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format msgid "%s of UPS backup power remaining" -msgstr "" +msgstr "%s àȘšà«‹ UPS àȘŹà«‡àȘ•àȘ…àȘȘ àȘȘàȘŸàȘ”àȘ° àȘŹàȘŸàȘ•à«€ àȘ°àȘčેàȘČ àȘ›à«‡" #. TRANSLATORS: this is the notification application name -#: ../plugins/power/gsd-power-manager.c:1248 -#: ../plugins/power/gsd-power-manager.c:1426 -#: ../plugins/power/gsd-power-manager.c:1607 -#: ../plugins/power/gsd-power-manager.c:1756 +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 #: ../plugins/power/power.gnome-settings-plugin.in.h:1 msgid "Power" msgstr "àȘȘàȘŸàȘ”àȘ°" #. TRANSLATORS: laptop battery low, and we only have one battery -#: ../plugins/power/gsd-power-manager.c:1341 +#: ../plugins/power/gsd-power-manager.c:1342 msgid "Battery low" msgstr "àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: laptop battery low, and we have more than one kind of battery -#: ../plugins/power/gsd-power-manager.c:1344 +#: ../plugins/power/gsd-power-manager.c:1345 msgid "Laptop battery low" msgstr "àȘČેàȘȘàȘŸà«‹àȘȘ àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1350 +#: ../plugins/power/gsd-power-manager.c:1351 #, c-format msgid "Approximately %s remaining (%.0f%%)" msgstr "" #. TRANSLATORS: UPS is starting to get a little low -#: ../plugins/power/gsd-power-manager.c:1354 +#: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" msgstr "UPS àȘšà«€àȘšà«" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1358 +#: ../plugins/power/gsd-power-manager.c:1359 #, c-format msgid "Approximately %s of remaining UPS backup power (%.0f%%)" msgstr "" #. TRANSLATORS: mouse is getting a little low #. TRANSLATORS: the mouse battery is very low -#: ../plugins/power/gsd-power-manager.c:1362 -#: ../plugins/power/gsd-power-manager.c:1528 +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 msgid "Mouse battery low" msgstr "àȘźàȘŸàȘ‰àȘž àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1365 +#: ../plugins/power/gsd-power-manager.c:1366 #, c-format msgid "Wireless mouse is low in power (%.0f%%)" -msgstr "" +msgstr "àȘ”àȘŸàȘŻàȘ°àȘČેàȘž àȘźàȘŸàȘ‰àȘž àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%)" #. TRANSLATORS: keyboard is getting a little low #. TRANSLATORS: the keyboard battery is very low -#: ../plugins/power/gsd-power-manager.c:1369 -#: ../plugins/power/gsd-power-manager.c:1536 +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 msgid "Keyboard battery low" msgstr "àȘ•àȘżàȘŹà«‹àȘ°à«àȘĄ àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1372 +#: ../plugins/power/gsd-power-manager.c:1373 #, c-format msgid "Wireless keyboard is low in power (%.0f%%)" -msgstr "" +msgstr "àȘ”àȘŸàȘŻàȘ°àȘČેàȘž àȘ•àȘżàȘŹà«‹àȘ°à«àȘĄ àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%)" #. TRANSLATORS: PDA is getting a little low #. TRANSLATORS: the PDA battery is very low -#: ../plugins/power/gsd-power-manager.c:1376 -#: ../plugins/power/gsd-power-manager.c:1545 +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 msgid "PDA battery low" msgstr "PDA àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1379 +#: ../plugins/power/gsd-power-manager.c:1380 #, c-format msgid "PDA is low in power (%.0f%%)" -msgstr "" +msgstr "PDA àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%)" #. TRANSLATORS: cell phone (mobile) is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1383 -#: ../plugins/power/gsd-power-manager.c:1555 -#: ../plugins/power/gsd-power-manager.c:1566 +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 msgid "Cell phone battery low" msgstr "àȘžà«‡àȘČ àȘ«à«‹àȘš àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1386 +#: ../plugins/power/gsd-power-manager.c:1387 #, c-format msgid "Cell phone is low in power (%.0f%%)" -msgstr "" +msgstr "àȘžà«‡àȘČ àȘ«à«‹àȘš àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%)" #. TRANSLATORS: media player, e.g. mp3 is getting a little low -#: ../plugins/power/gsd-power-manager.c:1391 +#: ../plugins/power/gsd-power-manager.c:1392 msgid "Media player battery low" msgstr "àȘźà«€àȘĄàȘżàȘŻàȘŸ àȘȘ્àȘČેàȘŻàȘ° àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1394 +#: ../plugins/power/gsd-power-manager.c:1395 #, c-format msgid "Media player is low in power (%.0f%%)" -msgstr "" +msgstr "àȘźà«€àȘĄàȘżàȘŻàȘŸ àȘȘ્àȘČેàȘŻàȘ° àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%)" #. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1398 -#: ../plugins/power/gsd-power-manager.c:1575 +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 msgid "Tablet battery low" msgstr "àȘŸà«…àȘŹàȘČેàȘŸ àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1401 +#: ../plugins/power/gsd-power-manager.c:1402 #, c-format msgid "Tablet is low in power (%.0f%%)" -msgstr "" +msgstr "àȘŸà«…àȘŹàȘČેàȘŸ àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%)" #. TRANSLATORS: computer, e.g. ipad is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1405 -#: ../plugins/power/gsd-power-manager.c:1584 +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 msgid "Attached computer battery low" -msgstr "" +msgstr "àȘœà«‹àȘĄàȘŸàȘŻà«‡àȘČ àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘŹà«‡àȘŸàȘ°à«€ àȘšà«€àȘšà«€ àȘ›à«‡" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1408 +#: ../plugins/power/gsd-power-manager.c:1409 #, c-format msgid "Attached computer is low in power (%.0f%%)" -msgstr "" +msgstr "àȘœà«‹àȘĄàȘŸàȘŻà«‡àȘČ àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%)" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1445 +#: ../plugins/power/gsd-power-manager.c:1446 msgid "Battery is low" msgstr "àȘŹà«‡àȘŸàȘ°à«€ àȘ“àȘ›à«€ àȘ›à«‡" #. TRANSLATORS: laptop battery critically low, and only have one kind of battery -#: ../plugins/power/gsd-power-manager.c:1487 +#: ../plugins/power/gsd-power-manager.c:1488 msgid "Battery critically low" msgstr "" #. TRANSLATORS: laptop battery critically low, and we have more than one type of battery #. TRANSLATORS: laptop battery is really, really, low -#: ../plugins/power/gsd-power-manager.c:1490 -#: ../plugins/power/gsd-power-manager.c:1674 +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 msgid "Laptop battery critically low" msgstr "" #. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything -#: ../plugins/power/gsd-power-manager.c:1499 +#: ../plugins/power/gsd-power-manager.c:1500 msgid "Plug in your AC adapter to avoid losing data." msgstr "" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1503 +#: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." msgstr "" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1507 +#: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." -msgstr "" +msgstr "àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘàȘČ્àȘŠà«€ àȘčàȘŸàȘ‡àȘŹàȘ°àȘšà«‡àȘŸ àȘ„àȘ¶à«‡ àȘšàȘčàȘżàȘ‚ àȘ€à«‹ àȘ€à«‡ àȘȘ્àȘČàȘ— àȘ„àȘŻà«‡àȘČ àȘ›à«‡." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1511 +#: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." -msgstr "" +msgstr "àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘàȘČ્àȘŠà«€ àȘŹàȘ‚àȘ§ àȘ„àȘ‡ àȘœàȘ¶à«‡ àȘšàȘčàȘżàȘ‚ àȘ€à«‹ àȘ€à«‡ àȘȘ્àȘČàȘ— àȘ„àȘŻà«‡àȘČ àȘ›à«‡." #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low -#: ../plugins/power/gsd-power-manager.c:1518 -#: ../plugins/power/gsd-power-manager.c:1710 +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" msgstr "" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1522 +#: ../plugins/power/gsd-power-manager.c:1523 #, c-format msgid "" "Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " @@ -2403,7 +2357,7 @@ msgstr "" #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1531 +#: ../plugins/power/gsd-power-manager.c:1532 #, c-format msgid "" "Wireless mouse is very low in power (%.0f%%). This device will soon stop " @@ -2411,7 +2365,7 @@ msgstr "" #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1539 +#: ../plugins/power/gsd-power-manager.c:1540 #, c-format msgid "" "Wireless keyboard is very low in power (%.0f%%). This device will soon stop " @@ -2419,61 +2373,68 @@ msgstr "" #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1548 +#: ../plugins/power/gsd-power-manager.c:1549 #, c-format msgid "" "PDA is very low in power (%.0f%%). This device will soon stop functioning if " "not charged." -msgstr "" +msgstr "PDA àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘ˜àȘŁà« àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%). àȘ† àȘ‰àȘȘàȘ•àȘ°àȘŁ àȘ•àȘŸàȘ°à«àȘŻ àȘ•àȘ°àȘ€à« àȘŹàȘ‚àȘ§ àȘ„àȘ‡ àȘœàȘ¶à«‡ àȘœà«‹ àȘšàȘŸàȘ°à«àȘœ àȘ„àȘŻà«‡àȘČ àȘš àȘčોàȘŻ." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1558 +#: ../plugins/power/gsd-power-manager.c:1559 #, c-format msgid "" "Cell phone is very low in power (%.0f%%). This device will soon stop " "functioning if not charged." msgstr "" +"àȘžà«‡àȘČ àȘ«à«‹àȘš àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘ˜àȘŁà« àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%). àȘ† àȘ‰àȘȘàȘ•àȘ°àȘŁ àȘ•àȘŸàȘ°à«àȘŻ àȘ•àȘ°àȘ€à« àȘŹàȘ‚àȘ§ àȘ„àȘ‡ àȘœàȘ¶à«‡ àȘœà«‹ àȘšàȘŸàȘ°à«àȘœ àȘ„àȘŻà«‡àȘČ àȘš àȘčોàȘŻ." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1569 +#: ../plugins/power/gsd-power-manager.c:1570 #, c-format msgid "" "Media player is very low in power (%.0f%%). This device will soon stop " "functioning if not charged." msgstr "" +"àȘźà«€àȘĄàȘżàȘŻàȘŸ àȘȘ્àȘČેàȘŻàȘ° àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘ˜àȘŁà« àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%). àȘ† àȘ‰àȘȘàȘ•àȘ°àȘŁ àȘ•àȘŸàȘ°à«àȘŻ àȘ•àȘ°àȘ€à« àȘŹàȘ‚àȘ§ àȘ„àȘ‡ àȘœàȘ¶à«‡àȘœà«‹ àȘšàȘŸàȘ°à«àȘœ àȘ„àȘŻà«‡àȘČ àȘš " +"àȘčોàȘŻ." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1578 +#: ../plugins/power/gsd-power-manager.c:1579 #, c-format msgid "" "Tablet is very low in power (%.0f%%). This device will soon stop functioning " "if not charged." msgstr "" +"àȘŸà«…àȘŹàȘČેàȘŸ àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘ˜àȘŁà« àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%). àȘ† àȘ‰àȘȘàȘ•àȘ°àȘŁ àȘàȘČ્àȘŠà«€ àȘ•àȘŸàȘ°à«àȘŻ àȘ•àȘ°àȘ€à« àȘŹàȘ‚àȘ§ àȘ„àȘ‡ àȘœàȘ¶à«‡ àȘœà«‹ àȘšàȘŸàȘ°à«àȘœ àȘ„àȘŻà«‡àȘČ àȘš " +"àȘčોàȘŻ." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1587 +#: ../plugins/power/gsd-power-manager.c:1588 #, c-format msgid "" "Attached computer is very low in power (%.0f%%). The device will soon " "shutdown if not charged." msgstr "" +"àȘœà«‹àȘĄàȘŸàȘŻà«‡àȘČ àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘȘàȘŸàȘ”àȘ°àȘźàȘŸàȘ‚ àȘ˜àȘŁà« àȘšà«€àȘšà« àȘ›à«‡ (%.0f%%). àȘ‰àȘȘàȘ•àȘ°àȘŁ àȘàȘČ્àȘŠà«€ àȘŹàȘ‚àȘ§ àȘ„àȘ‡ àȘœàȘ¶à«‡ àȘœà«‹ àȘšàȘŸàȘ°à«àȘœ àȘ„àȘŻà«‡àȘČ àȘš " +"àȘčોàȘŻ." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1627 -#: ../plugins/power/gsd-power-manager.c:1637 -#: ../plugins/power/gsd-power-manager.c:1773 +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 msgid "Battery is critically low" msgstr "" #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1682 +#: ../plugins/power/gsd-power-manager.c:1683 msgid "" "The battery is below the critical level and this computer will power-off when the battery becomes completely empty." msgstr "" #. TRANSLATORS: computer will suspend -#: ../plugins/power/gsd-power-manager.c:1688 +#: ../plugins/power/gsd-power-manager.c:1689 msgid "" "The battery is below the critical level and this computer is about to " "suspend.\n" @@ -2482,49 +2443,49 @@ msgstr "" #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1695 +#: ../plugins/power/gsd-power-manager.c:1696 msgid "" "The battery is below the critical level and this computer is about to " "hibernate." msgstr "" #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1700 +#: ../plugins/power/gsd-power-manager.c:1701 msgid "" "The battery is below the critical level and this computer is about to " "shutdown." msgstr "" #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1718 +#: ../plugins/power/gsd-power-manager.c:1719 msgid "" "UPS is below the critical level and this computer will power-off when " "the UPS becomes completely empty." msgstr "" #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1724 +#: ../plugins/power/gsd-power-manager.c:1725 msgid "UPS is below the critical level and this computer is about to hibernate." msgstr "" #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1729 +#: ../plugins/power/gsd-power-manager.c:1730 msgid "UPS is below the critical level and this computer is about to shutdown." msgstr "" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2223 +#: ../plugins/power/gsd-power-manager.c:2224 msgid "Lid has been opened" msgstr "àȘąàȘŸàȘ‚àȘ•àȘŁ àȘ–à«‹àȘČી àȘŠà«‡àȘ”àȘŸàȘźàȘŸàȘ‚ àȘ†àȘ”્àȘŻà« àȘ›à«‡" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2300 +#: ../plugins/power/gsd-power-manager.c:2301 msgid "Lid has been closed" msgstr "àȘąàȘŸàȘ‚àȘ•àȘŁ àȘŹàȘ‚àȘ§ àȘ•àȘ°à«€ àȘŠà«‡àȘ”àȘŸàȘźàȘŸàȘ‚ àȘ†àȘ”્àȘŻà« àȘ›à«‡" #. TRANSLATORS: this is the title of the power manager status icon #. * that is only shown in fallback mode -#: ../plugins/power/gsd-power-manager.c:3676 +#: ../plugins/power/gsd-power-manager.c:3692 msgid "Power Manager" msgstr "àȘȘàȘŸàȘ”àȘ° àȘžàȘ‚àȘšàȘŸàȘČàȘ•" @@ -2541,7 +2502,6 @@ msgstr "àȘžàȘ€à«àȘ€àȘŸàȘ§àȘżàȘ•àȘ°àȘŁ àȘČેàȘȘàȘŸà«‹àȘȘ àȘȘ્àȘ°àȘ•àȘŸàȘ¶àȘ€àȘŸàȘšà«‡ àȘŹàȘŠàȘČàȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘœàȘ°à«‚àȘ°à«€ àȘ›à«‡" #: ../plugins/power/power.gnome-settings-plugin.in.h:2 -#| msgid "Mouse plugin" msgid "Power plugin" msgstr "àȘȘàȘŸàȘ”àȘ° àȘȘ્àȘČàȘ—àȘ‡àȘš" @@ -2576,7 +2536,6 @@ #: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:778 -#| msgid "Printer error" msgid "Printers" msgstr "àȘȘ્àȘ°àȘżàȘšà«àȘŸàȘ°" @@ -2761,13 +2720,11 @@ #. Translators: This is a title of a report notification for a printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:715 -#| msgid "Printer error" msgid "Printer report" msgstr "àȘȘ્àȘ°àȘżàȘšà«àȘŸàȘ° àȘ…àȘčેàȘ”àȘŸàȘČ" #. Translators: This is a title of a warning notification for a printer #: ../plugins/print-notifications/gsd-print-notifications-manager.c:718 -#| msgid "Printing" msgid "Printer warning" msgstr "àȘȘ્àȘ°àȘżàȘšà«àȘŸàȘ° àȘšà«‡àȘ€àȘ”àȘŁà«€" @@ -2807,19 +2764,19 @@ #: ../plugins/smartcard/gsd-smartcard-manager.c:871 #, c-format msgid "could not watch for incoming card events - %s" -msgstr "" +msgstr "àȘ‡àȘšàȘ•àȘźàȘżàȘ‚àȘ— àȘ•àȘŸàȘ°à«àȘĄ àȘ˜àȘŸàȘšàȘŸ àȘźàȘŸàȘŸà«‡ àȘ§à«àȘŻàȘŸàȘš àȘ°àȘŸàȘ–à«€ àȘ¶àȘ•à«àȘŻàȘŸ àȘšàȘčàȘżàȘ‚ - %s" #: ../plugins/smartcard/gsd-smartcard-manager.c:1269 #, c-format msgid "encountered unexpected error while waiting for smartcard events" -msgstr "" +msgstr "àȘ…àȘšàȘżàȘšà«àȘ›àȘšàȘżàȘŻ àȘ­à«‚àȘČ àȘ¶à«‹àȘ§àȘŸàȘ‡ àȘœà«àȘŻàȘŸàȘ°à«‡ àȘžà«àȘźàȘŸàȘ°à«àȘŸàȘ•àȘŸàȘ°à«àȘĄ àȘ˜àȘŸàȘšàȘŸàȘ“ àȘźàȘŸàȘŸà«‡ àȘ°àȘŸàȘč àȘœà«‹àȘ‡ àȘ°àȘč્àȘŻàȘŸ àȘ›à«‡" #. TRANSLATORS: we need to restart so the new hardware can re-request the firmware #: ../plugins/updates/gsd-updates-firmware.c:240 msgid "" "You will need to restart this computer before the hardware will work " "correctly." -msgstr "" +msgstr "àȘčàȘŸàȘ°à«àȘĄàȘ”ેàȘ° àȘŻà«‹àȘ—્àȘŻ àȘ°à«€àȘ€à«‡ àȘ•àȘŸàȘź àȘ•àȘ°àȘ¶à«‡ àȘ€à«‡ àȘȘàȘčેàȘČàȘŸ àȘ€àȘźàȘšà«‡ àȘ† àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ°àȘšà«‡ àȘȘુàȘš:àȘ¶àȘ°à«‚ àȘ•àȘ°àȘ”àȘŸàȘšà«€ àȘœàȘ°à«‚àȘ° àȘȘàȘĄàȘ¶à«‡ ." #. TRANSLATORS: title of libnotify bubble #: ../plugins/updates/gsd-updates-firmware.c:243 @@ -2838,7 +2795,6 @@ #: ../plugins/updates/gsd-updates-manager.c:443 #: ../plugins/updates/gsd-updates-manager.c:575 #: ../plugins/updates/gsd-updates-manager.c:663 -#| msgid "Updates" msgid "Software Updates" msgstr "àȘžà«‹àȘ«à«àȘŸàȘ”ેàȘ° àȘžà«àȘ§àȘŸàȘ°àȘŸàȘ“" @@ -2860,6 +2816,7 @@ "Additional firmware is required to make hardware in this computer function " "correctly." msgstr "" +"àȘ† àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ°àȘźàȘŸàȘ‚ àȘčàȘŸàȘ°à«àȘĄàȘ”ેàȘ°àȘšà«‡ àȘŹàȘšàȘŸàȘ”àȘ”àȘŸ àȘźàȘŸàȘŸà«‡ àȘ”àȘ§àȘŸàȘ°àȘŸàȘšàȘŸàȘ‚ àȘ«àȘ°à«àȘźàȘ”ેàȘ°àȘšà«€ àȘœàȘ°à«‚àȘ° àȘ›à«‡ àȘœà«‡ àȘŻà«‹àȘ—્àȘŻ àȘ°à«€àȘ€à«‡ àȘ•àȘŸàȘź àȘ•àȘ°à«‡ àȘ›à«‡." #. TRANSLATORS: title of libnotify bubble #: ../plugins/updates/gsd-updates-firmware.c:582 @@ -2879,7 +2836,7 @@ #. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 #: ../plugins/updates/gsd-updates-manager.c:199 msgid "Distribution upgrades available" -msgstr "" +msgstr "àȘ”àȘżàȘ€àȘ°àȘŁ àȘžà«àȘ§àȘŸàȘ°àȘŸ àȘ‰àȘȘàȘČàȘŹà«àȘ§" #. TRANSLATORS: provides more information about the upgrade #: ../plugins/updates/gsd-updates-manager.c:208 @@ -2919,7 +2876,7 @@ msgid "" "Automatic updates are not being installed as the computer is running on " "battery power" -msgstr "" +msgstr "àȘ†àȘȘોàȘ†àȘȘ àȘžà«àȘ§àȘŸàȘ°àȘŸàȘšà«‡ àȘžà«àȘ„àȘŸàȘȘàȘżàȘ€ àȘ•àȘ°àȘ”àȘŸàȘźàȘŸàȘ‚ àȘ†àȘ”્àȘŻà« àȘšàȘ„ી àȘ•à«‡àȘź àȘ•à«‡ àȘ•àȘźà«àȘȘ્àȘŻà«‚àȘŸàȘ° àȘŹà«‡àȘŸàȘ°à«€ àȘȘàȘŸàȘ”àȘ° àȘȘàȘ° àȘšàȘŸàȘČી àȘ°àȘč્àȘŻà« àȘ›à«‡" #. TRANSLATORS: informs user will not install by default #: ../plugins/updates/gsd-updates-manager.c:440 @@ -3041,22 +2998,22 @@ #: ../plugins/wacom/gsd-wacom-device.c:1050 #, c-format msgid "Left Button #%d" -msgstr "" +msgstr "àȘĄàȘŸàȘŹà« àȘŹàȘŸàȘš #%d" #: ../plugins/wacom/gsd-wacom-device.c:1053 #, c-format msgid "Right Button #%d" -msgstr "" +msgstr "àȘœàȘźàȘŁà« àȘŹàȘŸàȘš #%d" #: ../plugins/wacom/gsd-wacom-device.c:1056 #, c-format msgid "Top Button #%d" -msgstr "" +msgstr "àȘŸà«‹àȘšàȘšà«àȘ‚ àȘŹàȘŸàȘš #%d" #: ../plugins/wacom/gsd-wacom-device.c:1059 #, c-format msgid "Bottom Button #%d" -msgstr "" +msgstr "àȘšà«€àȘšà«‡àȘšà« àȘŹàȘŸàȘš #%d" #. SECURITY: #. - A normal active user on the local machine does not need permission diff -Nru gnome-settings-daemon-3.4.0/po/id.po gnome-settings-daemon-3.4.1/po/id.po --- gnome-settings-daemon-3.4.0/po/id.po 2011-08-19 07:22:44.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/id.po 2012-04-16 12:34:36.000000000 +0000 @@ -5,14 +5,14 @@ # Mohammad DAMT 2003 # Ahmad Riza H Nst 2006 # Dirgita , 2011. -# Andika Triwidada , 2011. +# Andika Triwidada , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-settings-daemon&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2011-08-17 14:30+0000\n" -"PO-Revision-Date: 2011-08-19 13:57+0700\n" +"POT-Creation-Date: 2012-03-26 16:43+0000\n" +"PO-Revision-Date: 2012-04-04 19:48+0700\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" @@ -26,866 +26,922 @@ msgstr "Daemon Pengaturan GNOME" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 -msgid "Command to be run when a device is added or removed." -msgstr "Perintah yang akan dijalankan ketika sebuah perangkat ditambah atau dicabut." +msgid "Smartcard removal action" +msgstr "Aksi ketika kartu cerdas dicabut" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 -msgid "Device hotplug custom command" -msgstr "Perintah ubahan untuk perangkat \"hotplug\"" +msgid "Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The action will get performed when the smartcard used for log in is removed." +msgstr "Berikan salah satu nilai \"none\", \"lock-screen\", atau \"force-logout\". Salah satu aksi tersebut akan dilakukan apabila kartu cerdas yang dipakai untuk log masuk dicabut." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 msgid "Disable touchpad while typing" msgstr "Menonaktifkan pad sentuh saat mengetik" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 -msgid "Distance before a drag is started." -msgstr "Jarak sebelum penyeretan (drag) dimulai." +msgid "Set this to TRUE if you have problems with accidentally hitting the touchpad while typing." +msgstr "Berikan nilai TRUE jika Anda memiliki masalah sering mengenai pad sentuh saat mengetik." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 -msgid "Double click time" -msgstr "Waktu klik ganda" +msgid "Enable horizontal scrolling" +msgstr "Mengaktifkan penggulungan horisontal" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 -msgid "Drag threshold" -msgstr "Derajat seret" +msgid "Set this to TRUE to allow horizontal scrolling by the same method selected with the scroll_method key." +msgstr "Berikan nilai TRUE untuk memperbolehkan penggulungan horisontal dengan metode yang sama seperti yang diperikan untuk kunci scroll_method." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 -msgid "Enable horizontal scrolling" -msgstr "Mengaktifkan penggulungan horisontal" +msgid "Select the touchpad scroll method" +msgstr "Memilih metode penggulungan dengan pad sentuh" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 -msgid "Enable mouse clicks with touchpad" -msgstr "Mengaktifkan klik mouse melalui pad sentuh" +msgid "Select the touchpad scroll method. Supported values are: \"disabled\", \"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "Memilih metode penggulungan pad sentuh. Nilai yang dimungkinkan adalah: \"disabled\", \"edge-scrolling\", \"two-finger-scrolling\"." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 -msgid "Enable touchpad" -msgstr "Mengaktifkan pad sentuh" +msgid "Enable mouse clicks with touchpad" +msgstr "Mengaktifkan klik mouse melalui pad sentuh" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 -msgid "Enables middle mouse button emulation through simultaneous left and right button click." -msgstr "Mengaktifkan emulasi tombol tengah tetikus dengan klik kiri dan kanan secara simultan." +msgid "Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." +msgstr "Berikan nilai TRUE untuk dapat melakukan klik tetikus namun dengan mengetuk pad sentuh." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 -msgid "Highlights the current location of the pointer when the Control key is pressed and released." -msgstr "Menyorot lokasi yang ditunjuk pointer ketika tombol Control ditekan dan dilepas." +msgid "Enable touchpad" +msgstr "Mengaktifkan pad sentuh" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 -msgid "Length of a double click in milliseconds." -msgstr "Panjang waktu klik ganda dalam milidetik." +msgid "Set this to TRUE to enable all touchpads." +msgstr "Berikan nilai TRUE untuk mengaktifkan semua pad sentuh." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 -msgid "Middle button emulation" -msgstr "Emulasi tombol tengah" +msgid "Highlights the current location of the pointer when the Control key is pressed and released." +msgstr "Menyorot lokasi yang ditunjuk pointer ketika tombol Control ditekan dan dilepas." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 -msgid "Select the touchpad scroll method" -msgstr "Memilih metode penggulungan dengan pad sentuh" +msgid "Double click time" +msgstr "Waktu klik ganda" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:15 -msgid "Select the touchpad scroll method. Supported values are: \"disabled\", \"edge-scrolling\", \"two-finger-scrolling\"." -msgstr "Memilih metode penggulungan pad sentuh. Nilai yang dimungkinkan adalah: \"disabled\", \"edge-scrolling\", \"two-finger-scrolling\"." +msgid "Length of a double click in milliseconds." +msgstr "Panjang waktu klik ganda dalam milidetik." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:16 -msgid "Set this to TRUE if you have problems with accidentally hitting the touchpad while typing." -msgstr "Berikan nilai TRUE jika Anda memiliki masalah sering mengenai pad sentuh saat mengetik." +msgid "Drag threshold" +msgstr "Derajat seret" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:17 -msgid "Set this to TRUE to allow horizontal scrolling by the same method selected with the scroll_method key." -msgstr "Berikan nilai TRUE untuk memperbolehkan penggulungan horisontal dengan metode yang sama seperti yang diperikan untuk kunci scroll_method." +msgid "Distance before a drag is started." +msgstr "Jarak sebelum penyeretan (drag) dimulai." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 -msgid "Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." -msgstr "Berikan nilai TRUE untuk dapat melakukan klik tetikus namun dengan mengetuk pad sentuh." +msgid "Middle button emulation" +msgstr "Emulasi tombol tengah" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 -msgid "Set this to TRUE to enable all touchpads." -msgstr "Berikan nilai TRUE untuk mengaktifkan semua pad sentuh." +msgid "Enables middle mouse button emulation through simultaneous left and right button click." +msgstr "Mengaktifkan emulasi tombol tengah tetikus dengan klik kiri dan kanan secara simultan." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 -msgid "Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The action will get performed when the smartcard used for log in is removed." -msgstr "Berikan salah satu nilai \"none\", \"lock-screen\", atau \"force-logout\". Salah satu aksi tersebut akan dilakukan apabila kartu cerdas yang dipakai untuk log masuk dicabut." +msgid "Whether the tablet's orientation is locked, or rotated automatically." +msgstr "Apakah orientasi tablet dikunci atau diputar secara otomatis." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 -msgid "Smartcard removal action" -msgstr "Aksi ketika kartu cerdas dicabut" +msgid "Device hotplug custom command" +msgstr "Perintah ubahan untuk perangkat \"hotplug\"" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 -msgid "Whether the tablet's orientation is locked, or rotated automatically." -msgstr "Apakah orientasi tablet dikunci atau diputar secara otomatis." +msgid "Command to be run when a device is added or removed." +msgstr "Perintah yang akan dijalankan ketika sebuah perangkat ditambah atau dicabut." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 msgid "Activation of this plugin" msgstr "Aktivasi pengaya ini" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 -msgid "Priority to use for this plugin" -msgstr "Prioritas untuk menggunakan pengaya ini" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgstr "Menentukan apakah pengaya ini diaktifkan oleh gnome-settings-daemon atau tidak" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 -msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" -msgstr "Prioritas untuk menggunakan pengaya ini dalam antrian gnome-settings-daemon saat mulai berjalan" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 +msgid "Priority to use for this plugin" +msgstr "Prioritas untuk menggunakan pengaya ini" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:10 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 -msgid "Whether this plugin would be activated by gnome-settings-daemon or not" -msgstr "Menentukan apakah pengaya ini diaktifkan oleh gnome-settings-daemon atau tidak" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 +msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" +msgstr "Prioritas untuk menggunakan pengaya ini dalam antrian gnome-settings-daemon saat mulai berjalan" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 -msgid "Free percentage notify threshold" -msgstr "Ambang pemberitahuan persentase bebas" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 +msgid "Wacom stylus absolute mode" +msgstr "Mode absolut stylus Wacom" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 -msgid "Free space notify threshold" -msgstr "Ambang pemberitahuan ruang bebas" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 +#| msgid "Enable this to set the eraser to absolute mode." +msgid "Enable this to set the tablet to absolute mode." +msgstr "Aktifkan ini untuk mengatur tablet ke mode absolut." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 -msgid "Minimum notify period for repeated warnings" -msgstr "Perioda pemberitahuan minimal bagi peringatan berulang" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 +#| msgid "Wacom pad tablet area" +msgid "Wacom tablet area" +msgstr "Area tablet Wacom" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 -msgid "Mount paths to ignore" -msgstr "Lokasi kaitan untuk diabaikan" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 +#| msgid "Set this to x1, y1 and x2, y2 of the area usable by the stylus." +msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." +msgstr "Tata ini ke x1, y1 dan x2, y2 dari area yang dapat dipakai oleh perkakas." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 -msgid "Percentage free space threshold for initial warning of low disk space. If the percentage free space drops below this, a warning will be shown." -msgstr "Persentase ambang ruang bebas bagi peringatan awal atas menipisnya ruang disk. Bila persentase ruang bebas turun di bawah nilai ini, peringatan akan ditampilkan." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 +msgid "Wacom tablet rotation" +msgstr "Rotasi tablet Wacom" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 -msgid "Specify a list of mount paths to ignore when they run low on space." -msgstr "Nyatakan daftar path pengaitan yang diabaikan ketika ruang bebasnya sedikit." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 +msgid "Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and 'ccw' for 90 degree counterclockwise." +msgstr "Tata ini ke 'none', 'cw' untuk 90 derajat searah jarum jam, 'half' untuk 180 derajat, dan 'ccw' untuk 90 derajat melawan arah jarum jam." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 -msgid "Specify a time in minutes. Subsequent warnings for a volume will not appear more often than this period." -msgstr "Nyatakan waktu dalam menit. Peringatan berikutnya bagi suatu volume tak akan muncul lebih sering daripada perioda ini." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 +msgid "Wacom touch feature" +msgstr "Fitur sentuh Wacom" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 -msgid "Specify an amount in GB. If the amount of free space is more than this, no warning will be shown." -msgstr "Nyatakan besar dalam GB. Bila banyaknya ruang bebas lebih dari ini, tak ada peringatan yang ditampilkan." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 +msgid "Enable this to move the cursor when the user touches the tablet." +msgstr "Aktifkan ini untuk memindah kursor ketika pengguna menyentuh tablet." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 -msgid "Specify the percentage that the free disk space should reduce by before issuing a subsequent warning." -msgstr "Nyatakan persentase berkurangnya ruang disk bebas sebelum menerbitkan peringatan berikutnya." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 +msgid "Wacom tablet PC feature" +msgstr "Fitur PC tablet Wacom" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 -msgid "Subsequent free space percentage notify threshold" -msgstr "Ambang persentase ruang bebas untuk pemberitahuan berikutnya" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 +msgid "Enable this to only report stylus events when the tip is pressed." +msgstr "Aktifkan ini untuk hanya melaporkan kejadian stylus ketika ujung ditekan." -#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 -msgid "Priority to use for this plugin in gnome-settings-daemon startup queue." -msgstr "Prioritas untuk menggunakan pengaya ini dalam antrian gnome-settings-daemon saat mulai berjalan." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 +#| msgid "Wacom pad button mapping" +msgid "Wacom display mapping" +msgstr "Pemetaan tampilan Wacom" -#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:37 -msgid "Whether this plugin would be activated by gnome-settings-daemon or not." -msgstr "Menentukan apakah pengaya ini diaktifkan oleh gnome-settings-daemon atau tidak." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 +msgid "EDID information of monitor to map tablet to. Must be in the format [vendor, product, serial]. [\"\",\"\",\"\"] disables mapping." +msgstr "Informasi EDID dari monitor untuk memetakan tablet padanya. Mesti dalam bentuk [vendor, produk, nomor seri]. [\"\",\"\",\"\"] mematikan pemetaan." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 -msgid "If time based notifications should be used. If set to false, then the percentage change is used instead, which may fix a broken ACPI BIOS." -msgstr "Bila mesti memakai pemberitahuan berbasis waktu. Bila diatur ke false, maka yang dipakai adalah perubahan persentase, yang mungkin bisa memperbaiki BIOS ACPI yang rusak." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 +msgid "Wacom stylus pressure curve" +msgstr "Kurva tekanan stylus Wacom" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 -msgid "If we should show the recalled battery warning for a broken battery" -msgstr "Bila kita mesti menunjukkan peringatan baterai ditarik kembali bagi baterai rusak" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 +msgid "Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." +msgstr "Tata ini ke x1, y1 dan x2, y2 dari kurva tekanan yang diterapkan ke stylus." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 -msgid "If we should show the recalled battery warning for a broken battery. Set this to false only if you know your battery is okay." -msgstr "Bila peringatan tentang baterai yang ditarik kembali bagi baterai rusak mesti ditunjukkan. Atur ini ke false bila Anda tahu bahwa baterai Anda bagus." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 +msgid "Wacom stylus button mapping" +msgstr "Pemetaan tombol stylus Wacom" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 -msgid "Percentage action is taken" -msgstr "Persentase aksi diambil" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 +msgid "Set this to the logical button mapping." +msgstr "Tata ini ke pemetaan tombol lojik." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 -msgid "Percentage considered critical" -msgstr "Persentase yang dianggap kritis" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 +msgid "Wacom stylus pressure threshold" +msgstr "Ambang tekanan stylus Wacom" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 -msgid "Percentage considered low" -msgstr "Persentase yang dianggap rendah" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 +msgid "Set this to the pressure value at which a stylus click event is generated." +msgstr "Tata ini ke nilai tekanan saat kejadian klik stylus dijangkitkan." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 -msgid "The percentage of the battery when it is considered critical. Only valid when use-time-for-policy is false." -msgstr "Persentase baterai ketika dianggap kritis. Hanya valid ketika use-time-for-policy adalah false." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 +msgid "Wacom eraser pressure curve" +msgstr "Kurva tekanan penghapus Wacom" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 -msgid "The percentage of the battery when it is considered low. Only valid when use-time-for-policy is false." -msgstr "Persentase baterai ketika dianggap lemah. Hanya valid ketika use-time-for-policy adalah false." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 +msgid "Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." +msgstr "Tata ini ke x1, y1 dan x2, y2 dari kurva tekanan yang diterapkan ke penghapus." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 -msgid "The percentage of the battery when the critical action is performed. Only valid when use-time-for-policy is false." -msgstr "Persentase baterai ketika aksi kritis dilakukan. Hanya valid ketika use-time-for-policy adalah false." - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 -msgid "The time remaining in seconds of the battery when critical action is taken. Only valid when use-time-for-policy is true." -msgstr "Waktu baterai tersisa dalam detik ketika aksi kritis dilakukan. Hanya valid ketika use-time-for-policy adalah true." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 +msgid "Wacom eraser button mapping" +msgstr "Pemetaan tombol penghapus Wacom" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 -msgid "The time remaining in seconds of the battery when it is considered critical. Only valid when use-time-for-policy is true." -msgstr "Waktu baterai tersisa dalam detik ketika dianggap kritis. Hanya valid ketika use-time-for-policy adalah true." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 +msgid "Wacom eraser pressure threshold" +msgstr "Ambang tekanan penghapus Wacom" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 -msgid "The time remaining in seconds of the battery when it is considered low. Only valid when use-time-for-policy is true." -msgstr "Waktu baterai tersisa dalam detik ketika dianggap lemah. Hanya valid ketika use-time-for-policy adalah true." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 +msgid "Set this to the pressure value at which an eraser click event is generated." +msgstr "Tata ini ke nilai tekanan saat kejadian klik penghapus dijangkitkan." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 -msgid "The time remaining when action is taken" -msgstr "Waktu tersisa ketika aksi diambil" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 +#| msgid "Wacom pad button mapping" +msgid "Wacom button action type" +msgstr "Jenis aksi tombol Wacom" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 -msgid "The time remaining when critical" -msgstr "Waktu tersisa ketika kritis" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 +msgid "The type of action triggered by the button being pressed." +msgstr "Jenis aksi yang dipicu oleh penekanan tombol." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 -msgid "The time remaining when low" -msgstr "Waktu tersisa ketika lemah" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 +msgid "Key combination for the custom action" +msgstr "Kombinasi tombol bagi aksi gubahan" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 -msgid "Whether to use time-based notifications" -msgstr "Apakah memakai pemberitahuan berbasis waktu" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 +msgid "The keyboard shortcut generated when the button is pressed for custom actions." +msgstr "Pintasan papan tik yang dijangkitkan ketika tombol ditekan bagi aksi gubahan." -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 -msgid "If notifications are allowed to be shown" -msgstr "Bila pemberitahuan boleh ditampilkan" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 +msgid "Key combinations for an elevator custom action" +msgstr "Kombinasi tombol bagi suatu aksi gubahan elevator" -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 -msgid "If notifications should be shown at session start if a profile is invalid." -msgstr "Bila pemberitahuan mesti ditampilkan pada awal sesi ketika suatu profil tak valid." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 +msgid "The keyboard shortcuts generated when a touchring or touchstrip is used for custom actions (up followed by down)." +msgstr "Pintasan papan tik yang dijangkitkan ketika suatu touchring atau touchstrip dipakai untuk aksi gubahan (naik diikuti dengan turun)." -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 msgid "The duration a display profile is valid" msgstr "Durasi profil suatu monitor valid" +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 +msgid "This is the number of days after which the display color profile is considered invalid." +msgstr "Cacah hari dimana setelahnya suatu profil warna monitor dianggap tak valid." + #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 msgid "The duration a printer profile is valid" msgstr "Durasi profil suatu pencetak valid" #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 -msgid "This is the number of days after which the display color profile is considered invalid." -msgstr "Cacah hari dimana setelahnya suatu profil warna monitor dianggap tak valid." - -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:9 msgid "This is the number of days after which the printer color profile is considered invalid." msgstr "Cacah hari dimana setelahnya suatu profil warna pencetak dianggap tak valid." -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 -msgid "Allowed keys" -msgstr "Tombol yang diperbolehkan" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 +msgid "Mount paths to ignore" +msgstr "Lokasi kaitan untuk diabaikan" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 +msgid "Specify a list of mount paths to ignore when they run low on space." +msgstr "Nyatakan daftar path pengaitan yang diabaikan ketika ruang bebasnya sedikit." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 +msgid "Free percentage notify threshold" +msgstr "Ambang pemberitahuan persentase bebas" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 +msgid "Percentage free space threshold for initial warning of low disk space. If the percentage free space drops below this, a warning will be shown." +msgstr "Persentase ambang ruang bebas bagi peringatan awal atas menipisnya ruang disk. Bila persentase ruang bebas turun di bawah nilai ini, peringatan akan ditampilkan." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +msgid "Subsequent free space percentage notify threshold" +msgstr "Ambang persentase ruang bebas untuk pemberitahuan berikutnya" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +msgid "Specify the percentage that the free disk space should reduce by before issuing a subsequent warning." +msgstr "Nyatakan persentase berkurangnya ruang disk bebas sebelum menerbitkan peringatan berikutnya." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 +msgid "Free space notify threshold" +msgstr "Ambang pemberitahuan ruang bebas" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 +msgid "Specify an amount in GB. If the amount of free space is more than this, no warning will be shown." +msgstr "Nyatakan besar dalam GB. Bila banyaknya ruang bebas lebih dari ini, tak ada peringatan yang ditampilkan." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 +msgid "Minimum notify period for repeated warnings" +msgstr "Perioda pemberitahuan minimal bagi peringatan berulang" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 +msgid "Specify a time in minutes. Subsequent warnings for a volume will not appear more often than this period." +msgstr "Nyatakan waktu dalam menit. Peringatan berikutnya bagi suatu volume tak akan muncul lebih sering daripada perioda ini." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 -msgid "Binding for the magnifier to zoom in" -msgstr "Ikatan untuk pembesar memperbesar" +#| msgid "Keybindings" +msgid "Custom keybindings" +msgstr "Pengaitan tombol gubahan" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 -msgid "Binding for the magnifier to zoom out" -msgstr "Ikatan untuk pembesar memperkecil" +msgid "List of custom keybindings" +msgstr "Daftar pengaitan tombol gubahan" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 -msgid "Binding to decrease the text size" -msgstr "Ikatan ke memperkecil ukuran teks" +msgid "Launch calculator" +msgstr "Luncurkan kalkulator" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:6 -msgid "Binding to eject an optical disc." -msgstr "Ikatan ke mengeluarkan cakram optik." +msgid "Binding to launch the calculator." +msgstr "Ikatan ke meluncurkan kalkulator." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:7 -msgid "Binding to increase the text size" -msgstr "Ikatan ke memperbesar ukuran teks" +msgid "Launch email client" +msgstr "Luncurkan klien surel" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:8 -msgid "Binding to launch the calculator." -msgstr "Ikatan ke meluncurkan kalkulator." - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 msgid "Binding to launch the email client." msgstr "Ikatan ke meluncurkan klien surel." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 +msgid "Eject" +msgstr "Keluarkan Media" + #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:10 -msgid "Binding to launch the help browser." -msgstr "Ikatan ke meluncurkan peramban bantuan." +msgid "Binding to eject an optical disc." +msgstr "Ikatan ke mengeluarkan cakram optik." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:11 -msgid "Binding to launch the media player." -msgstr "Ikatan ke meluncurkan pemutar media." +msgid "Launch help browser" +msgstr "Tampilkan layar bantuan" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:12 -msgid "Binding to launch the search tool." -msgstr "Ikatan ke meluncurkan perkakas pencarian." +msgid "Binding to launch the help browser." +msgstr "Ikatan ke meluncurkan peramban bantuan." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:13 -msgid "Binding to launch the web browser." -msgstr "Ikatan ke meluncurkan peramban web." +msgid "Home folder" +msgstr "Folder rumah" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:14 -msgid "Binding to lock the screen." -msgstr "Ikatan ke mengunci layar." +msgid "Binding to open the Home folder." +msgstr "Ikatan ke membuka folder Rumah." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:15 -msgid "Binding to log out." -msgstr "Ikatan ke log keluar." +msgid "Launch media player" +msgstr "Luncurkan pemutar media" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 -msgid "Binding to lower the system volume." -msgstr "Ikatan ke memperkecil keras suara sistem." +msgid "Binding to launch the media player." +msgstr "Ikatan ke meluncurkan pemutar media." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:17 -msgid "Binding to mute the system volume." -msgstr "Ikatan ke membisukan suara sistem." +msgid "Next track" +msgstr "Trek selanjutnya" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:18 -msgid "Binding to open the Home folder." -msgstr "Ikatan ke membuka folder Rumah." +msgid "Binding to skip to next track." +msgstr "Ikatan ke melompat ke trek berikutnya." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:19 -msgid "Binding to pause playback." -msgstr "Ikatan ke jeda main ulang." +msgid "Pause playback" +msgstr "Jeda main ulang" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:20 -msgid "Binding to raise the system volume." -msgstr "Ikatan ke memperbesar keras suara sistem." +msgid "Binding to pause playback." +msgstr "Ikatan ke jeda main ulang." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:21 -msgid "Binding to show the on-screen keyboard" -msgstr "Ikatan ke menampilkan papan tik pada layar" +msgid "Play (or play/pause)" +msgstr "Putar (atau putar/istirahat)" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:22 -msgid "Binding to show the screen magnifier" -msgstr "Ikatan ke menampilkan pembesar layar" +msgid "Binding to start playback (or toggle play/pause)." +msgstr "Ikatan ke memulai main ulang (atau menjungkitkan main/jeda)." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:23 -msgid "Binding to skip to next track." -msgstr "Ikatan ke melompat ke trek berikutnya." +msgid "Log out" +msgstr "Keluar" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:24 -msgid "Binding to skip to previous track." -msgstr "Ikatan ke melompat ke trek sebelumnya." +msgid "Binding to log out." +msgstr "Ikatan ke log keluar." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:25 -msgid "Binding to start playback (or toggle play/pause)." -msgstr "Ikatan ke memulai main ulang (atau menjungkitkan main/jeda)." +msgid "Previous track" +msgstr "Trek sebelumnya" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:26 -msgid "Binding to start the screen reader" -msgstr "Ikatan ke memulai pembaca layar" - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 -msgid "Binding to stop playback." -msgstr "Ikatan ke menghentikan main ulang." - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 -msgid "Binding to toggle the interface contrast" -msgstr "Ikatan ke menjungkitkan kontras antar muka." +msgid "Binding to skip to previous track." +msgstr "Ikatan ke melompat ke trek sebelumnya." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:29 -msgid "Decrease text size" -msgstr "Perkecil ukuran teks" +msgid "Lock screen" +msgstr "Kunci layar" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:30 -msgid "Eject" -msgstr "Keluarkan Media" +msgid "Binding to lock the screen." +msgstr "Ikatan ke mengunci layar." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:31 -msgid "Home folder" -msgstr "Folder rumah" +msgid "Search" +msgstr "Cari" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:32 -msgid "If non-empty, keybindings will be ignored unless their settings directory is in the list. This is useful for lockdown." -msgstr "Bila tak kosong, keybinding akan diabaikan kecuali direktori pengaturan ada di daftar. Ini berguna untuk penguncian." +msgid "Binding to launch the search tool." +msgstr "Ikatan ke meluncurkan perkakas pencarian." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:33 -msgid "Increase text size" -msgstr "Perbesar ukuran teks" +msgid "Stop playback" +msgstr "Berhenti main ulang" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:34 -msgid "Launch calculator" -msgstr "Luncurkan kalkulator" +msgid "Binding to stop playback." +msgstr "Ikatan ke menghentikan main ulang." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:35 -msgid "Launch email client" -msgstr "Luncurkan klien surel" +msgid "Volume down" +msgstr "Kecilkan suara" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:36 -msgid "Launch help browser" -msgstr "Tampilkan layar bantuan" +msgid "Binding to lower the system volume." +msgstr "Ikatan ke memperkecil keras suara sistem." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:37 -msgid "Launch media player" -msgstr "Luncurkan pemutar media" +msgid "Volume mute" +msgstr "Volume bisu" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:38 -msgid "Launch web browser" -msgstr "Tampilkan perambah web" +msgid "Binding to mute the system volume." +msgstr "Ikatan ke membisukan suara sistem." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:39 -msgid "Lock screen" -msgstr "Kunci layar" +msgid "Volume up" +msgstr "Besarkan suara" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:40 -msgid "Log out" -msgstr "Keluar" +msgid "Binding to raise the system volume." +msgstr "Ikatan ke memperbesar keras suara sistem." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:41 -msgid "Magnifier zoom in" -msgstr "Pembesar memperbesar" +msgid "Take a screenshot" +msgstr "Ambil cuplikan layar" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:42 -msgid "Magnifier zoom out" -msgstr "Pembesar memperkecil" +#| msgid "Binding to lock the screen." +msgid "Binding to take a screenshot." +msgstr "Pengaitan ke mengambil cuplikan layar." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:43 -msgid "Next track" -msgstr "Trek selanjutnya" +msgid "Take a screenshot of a window" +msgstr "Ambil cuplikan layar dari suatu jendela" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:44 -msgid "Pause playback" -msgstr "Jeda main ulang" +#| msgid "Binding to start the screen reader" +msgid "Binding to take a screenshot of a window." +msgstr "Pengaitan ke mengambil cuplikan layar dari suatu jendela." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:45 -msgid "Play (or play/pause)" -msgstr "Putar (atau putar/istirahat)" +msgid "Take a screenshot of an area" +msgstr "Ambil cuplikan layar dari suatu daerah" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:46 -msgid "Previous track" -msgstr "Trek sebelumnya" +#| msgid "Binding to start the screen reader" +msgid "Binding to take a screenshot of an area." +msgstr "Pengaitan ke mengambil cuplikan layar dari suatu wilayag." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 +msgid "Copy a screenshot to clipboard" +msgstr "Salin cuplikan layar ke papan klip" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 +#| msgid "Binding to show the on-screen keyboard" +msgid "Binding to copy a screenshot to clipboard." +msgstr "Pengaitan ke menyalin cuplikan layar ke papan klip." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:49 -msgid "Search" -msgstr "Cari" +msgid "Copy a screenshot of a window to clipboard" +msgstr "Salin cuplikan layar dari suatu jendela ke papan klip" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:50 -msgid "Stop playback" -msgstr "Berhenti main ulang" +msgid "Binding to copy a screenshot of a window to clipboard." +msgstr "Pengaitan ke menyalin cuplikan layar dari suatu jendela ke papan klip." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:51 -msgid "Toggle contrast" -msgstr "Jungkitkan kontras" +msgid "Copy a screenshot of an area to clipboard" +msgstr "Salin cuplikan layar dari suatu daerah ke papan klip" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:52 -msgid "Toggle magnifier" -msgstr "Jungkitkan pembesar" +msgid "Binding to copy a screenshot of an area to clipboard." +msgstr "Pengaitan ke menyalin cuplikan layar dari suatu wilayah ke papan klip." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 -msgid "Toggle on-screen keyboard" -msgstr "Jungkitkan papan tik pada layar" +msgid "Launch web browser" +msgstr "Tampilkan perambah web" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 -msgid "Toggle screen reader" -msgstr "Jungkitkan pembaca layar" +msgid "Binding to launch the web browser." +msgstr "Ikatan ke meluncurkan peramban web." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 -msgid "Volume down" -msgstr "Kecilkan suara" +msgid "Toggle magnifier" +msgstr "Jungkitkan pembesar" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 -msgid "Volume mute" -msgstr "Volume bisu" +msgid "Binding to show the screen magnifier" +msgstr "Ikatan ke menampilkan pembesar layar" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 -msgid "Volume up" -msgstr "Besarkan suara" +msgid "Toggle screen reader" +msgstr "Jungkitkan pembaca layar" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 -msgid "Ask the user if additional firmware should be installed" -msgstr "Tanyakan ke pengguna bila firmware tambahan mesti dipasang" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 +msgid "Binding to start the screen reader" +msgstr "Ikatan ke memulai pembaca layar" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 -msgid "Ask the user if additional firmware should be installed if it is available." -msgstr "Tanya ke pengguna bila firmware tambahan mesti dipasang bila tersedia." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:59 +msgid "Toggle on-screen keyboard" +msgstr "Jungkitkan papan tik pada layar" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 -msgid "Automatically download updates in the background without confirmation" -msgstr "Otomatis mengundung pemutakhiran di latar tanpa konfirmasi" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:60 +msgid "Binding to show the on-screen keyboard" +msgstr "Ikatan ke menampilkan papan tik pada layar" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:61 +msgid "Increase text size" +msgstr "Perbesar ukuran teks" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 +msgid "Binding to increase the text size" +msgstr "Ikatan ke memperbesar ukuran teks" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 +msgid "Decrease text size" +msgstr "Perkecil ukuran teks" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:64 +msgid "Binding to decrease the text size" +msgstr "Ikatan ke memperkecil ukuran teks" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:65 +msgid "Toggle contrast" +msgstr "Jungkitkan kontras" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:66 +msgid "Binding to toggle the interface contrast" +msgstr "Ikatan ke menjungkitkan kontras antar muka." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 +msgid "Magnifier zoom in" +msgstr "Pembesar memperbesar" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 +msgid "Binding for the magnifier to zoom in" +msgstr "Ikatan untuk pembesar memperbesar" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 +msgid "Magnifier zoom out" +msgstr "Pembesar memperkecil" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 +msgid "Binding for the magnifier to zoom out" +msgstr "Ikatan untuk pembesar memperkecil" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 +#| msgid "name" +msgid "Name" +msgstr "Nama" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 +msgid "Name of the custom binding" +msgstr "Nama dari pengaitan gubahan" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 +#| msgid "Hinting" +msgid "Binding" +msgstr "Pengaitan" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:74 +#| msgid "Binding for the magnifier to zoom in" +msgid "Binding for the custom binding" +msgstr "Pengaitan (binding) untuk pengaitan gubahan" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:75 +msgid "Command" +msgstr "Perintah" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 +#| msgid "Command to be run when a device is added or removed." +msgid "Command to run when the binding is invoked" +msgstr "Perintah yang akan dijalankan ketika pengaitan dijalankan" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 +msgid "Percentage considered low" +msgstr "Persentase yang dianggap rendah" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 +msgid "The percentage of the battery when it is considered low. Only valid when use-time-for-policy is false." +msgstr "Persentase baterai ketika dianggap lemah. Hanya valid ketika use-time-for-policy adalah false." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +msgid "Percentage considered critical" +msgstr "Persentase yang dianggap kritis" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +msgid "The percentage of the battery when it is considered critical. Only valid when use-time-for-policy is false." +msgstr "Persentase baterai ketika dianggap kritis. Hanya valid ketika use-time-for-policy adalah false." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +msgid "Percentage action is taken" +msgstr "Persentase aksi diambil" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +msgid "The percentage of the battery when the critical action is performed. Only valid when use-time-for-policy is false." +msgstr "Persentase baterai ketika aksi kritis dilakukan. Hanya valid ketika use-time-for-policy adalah false." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +msgid "The time remaining when low" +msgstr "Waktu tersisa ketika lemah" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 +msgid "The time remaining in seconds of the battery when it is considered low. Only valid when use-time-for-policy is true." +msgstr "Waktu baterai tersisa dalam detik ketika dianggap lemah. Hanya valid ketika use-time-for-policy adalah true." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 +msgid "The time remaining when critical" +msgstr "Waktu tersisa ketika kritis" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 +msgid "The time remaining in seconds of the battery when it is considered critical. Only valid when use-time-for-policy is true." +msgstr "Waktu baterai tersisa dalam detik ketika dianggap kritis. Hanya valid ketika use-time-for-policy adalah true." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 +msgid "The time remaining when action is taken" +msgstr "Waktu tersisa ketika aksi diambil" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 +msgid "The time remaining in seconds of the battery when critical action is taken. Only valid when use-time-for-policy is true." +msgstr "Waktu baterai tersisa dalam detik ketika aksi kritis dilakukan. Hanya valid ketika use-time-for-policy adalah true." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 +msgid "Whether to use time-based notifications" +msgstr "Apakah memakai pemberitahuan berbasis waktu" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 +msgid "If time based notifications should be used. If set to false, then the percentage change is used instead, which may fix a broken ACPI BIOS." +msgstr "Bila mesti memakai pemberitahuan berbasis waktu. Bila diatur ke false, maka yang dipakai adalah perubahan persentase, yang mungkin bisa memperbaiki BIOS ACPI yang rusak." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 +msgid "If we should show the recalled battery warning for a broken battery" +msgstr "Bila kita mesti menunjukkan peringatan baterai ditarik kembali bagi baterai rusak" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 +msgid "If we should show the recalled battery warning for a broken battery. Set this to false only if you know your battery is okay." +msgstr "Bila peringatan tentang baterai yang ditarik kembali bagi baterai rusak mesti ditunjukkan. Atur ini ke false bila Anda tahu bahwa baterai Anda bagus." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 -msgid "Automatically download updates in the background without confirmation. Updates will be auto-downloaded when using wired network connnections, and also WiFi if 'connection-use-wifi' is enabled and mobile broadband if 'connection-use-mobile' is enabled." -msgstr "Otomatis mengunduh pemutakhiran di latar tanpa konfirmasi. Pemutakhiran akan otomatis diunduh ketika memakai koneksi jaringan kabel, WiFi bila 'connection-use-wifi' diaktifkan, dan data seluler bila 'connection-use-mobile' diaktifkan." +msgid "The install root to use when adding and removing packages" +msgstr "Root pemasangan yang dipakai ketika menambah dan menghapus paket" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 -msgid "Automatically install these types of updates" -msgstr "Pasang otomatis tipe pemutakhiran ini" +msgid "The install root to use when processing packages, which is changed when using LTSP or when testing." +msgstr "Root pemasangan yang dipakai ketika memroses paket, yang berubah ketika memakai LTSP atau ketika menguji." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 -msgid "Automatically install these types of updates." -msgstr "Pasang otomatis tipe pemutakhiran ini." +msgid "Use mobile broadband connections" +msgstr "Gunakan koneksi data seluler" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 -msgid "Devices that should be ignored" -msgstr "Perangkat yang mesti diabaikan" +msgid "Use mobile broadband connections such as GSM and CDMA to check for updates." +msgstr "Gunakan sambungan data seluler seperti GSM dan CDMA untuk memeriksa pemutakhiran." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 -msgid "Devices that should be ignored, separated by commas. These can include '*' and '?' characters." -msgstr "Perangkat yang mesti diabaikan, dipisahkan dengan koma. Ini bisa termasuk karakter '*' dan '?'" +msgid "Use WiFi connections" +msgstr "Gunakan koneksi WiFi" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 -msgid "Firmware files that should not be searched for" -msgstr "Berkas firmware yang tak perlu dicari" +msgid "Use WiFi (wireless LAN) connections to check for updates. It may be faster to download packages when on a wired connection, and the VPN or proxy required may also only be available on wired connections." +msgstr "Gunakan koneksi WiFi (LAN nirkabel) untuk memeriksa pemutakhiran. Mungkin lebih cepat mengunduh paket ketika memakai koneksi kabel, dan VPN atau proksi yang diperlukan mungkin hanya tersedia bagi koneksi kabel." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 -msgid "Firmware files that should not be searched for, separated by commas. These can include '*' and '?' characters." -msgstr "Berkas firmware yang tak perlu dicari, dipisahkan oleh koma. Ini dapat memuat karakter '*' dan '?'." +msgid "Automatically download updates in the background without confirmation" +msgstr "Otomatis mengundung pemutakhiran di latar tanpa konfirmasi" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 -msgid "Get the update list when the session starts" -msgstr "Ambil daftar pemutakhiran ketika sesi dimulai" +msgid "Automatically download updates in the background without confirmation. Updates will be auto-downloaded when using wired network connnections, and also WiFi if 'connection-use-wifi' is enabled and mobile broadband if 'connection-use-mobile' is enabled." +msgstr "Otomatis mengunduh pemutakhiran di latar tanpa konfirmasi. Pemutakhiran akan otomatis diunduh ketika memakai koneksi jaringan kabel, WiFi bila 'connection-use-wifi' diaktifkan, dan data seluler bila 'connection-use-mobile' diaktifkan." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 -msgid "Get the update list when the session starts, even if not scheduled to." -msgstr "Ambil daftar pemutakhiran ketika sesi dimulai, bahkan ketika tak dijadwalkan." +msgid "Automatically install these types of updates" +msgstr "Pasang otomatis tipe pemutakhiran ini" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 -msgid "How often to check for distribution upgrades" -msgstr "Seberapa sering memeriksa peningkatan distribusi" +msgid "Automatically install these types of updates." +msgstr "Pasang otomatis tipe pemutakhiran ini." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 -msgid "How often to check for distribution upgrades. Value is in seconds." -msgstr "Seberapa sering memeriksa peningkatan distribusi. Nilai dalam detik." +msgid "Get the update list when the session starts" +msgstr "Ambil daftar pemutakhiran ketika sesi dimulai" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 +msgid "Get the update list when the session starts, even if not scheduled to." +msgstr "Ambil daftar pemutakhiran ketika sesi dimulai, bahkan ketika tak dijadwalkan." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 msgid "How often to check for updates" msgstr "Seberapa sering memeriksa pemutakhiran" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 msgid "How often to check for updates. Value is in seconds. This is a maximum amount of time that can pass between a security update being published, and the update being automatically installed or the user notified." msgstr "Seberapa sering memeriksa pemutakhiran. Nilai dalam detik. Ini adalah lama waktu maksimal yang berlalu antara pemutakhiran keamanan diumumkan, dan pemutakhiran dipasang secara otomatis, atau pengguna diberitahu." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 msgid "How often to notify the user that non-critical updates are available" msgstr "Seberapa sering memberitahu pengguna bahwa pemutakhiran tak kritis tersedia" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 -msgid "How often to refresh the package cache" -msgstr "Seberapa sering menyegarkan tembolok paket" - #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 -msgid "How often to refresh the package cache. Value is in seconds." -msgstr "Seberapa sering menyegarkan tembolok paket. Nilai dalam detik." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 msgid "How often to tell the user there are non-critical updates. Value is in seconds. Security update notifications are always shown after the check for updates, but non-critical notifications should be shown a lot less frequently." msgstr "Seberapa sering memberitahu pengguna bahwa pemutakhiran tak kritis tersedia. Nilai dalam detik. Pemberitahuan pemutakhiran keamanan selalu ditampilkan setelah pemeriksaan pemutakhiran, tapi pemberitahuan tak kritis mesti ditampilkan jauh lebih jarang." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 +msgid "The last time we told the user about non-critical notifications" +msgstr "Terakhir kali kita memberitahu pengguna tentang pemutakhiran tak kritis" + #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 -msgid "Install updates automatically when running on battery power" -msgstr "Otomatis pasang pemutakhiran ketika memakai daya baterai" +msgid "The last time we notified the user about non-critical updates. Value is in seconds since the epoch, or zero for never." +msgstr "Terakhir kali kita memberitahu pengguna tentang pemutakhiran tak kritis. Nilai dalam detik sejak epos, atau nol untuk tak pernah." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 -msgid "Install updates automatically when running on battery power." -msgstr "Otomatis pasang pemutakhiran ketika memakai daya baterai." +msgid "How often to check for distribution upgrades" +msgstr "Seberapa sering memeriksa peningkatan distribusi" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 -msgid "Notify the user for completed updates" -msgstr "Beritahu pengguna atas selesainya pemutakhiran" +msgid "How often to check for distribution upgrades. Value is in seconds." +msgstr "Seberapa sering memeriksa peningkatan distribusi. Nilai dalam detik." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 -msgid "Notify the user for completed updates where the user needs to restart" -msgstr "Beritahu pengguna atas selesainya pemutakhiran ketika pengguna perlu melakukan start ulang" +msgid "How often to refresh the package cache" +msgstr "Seberapa sering menyegarkan tembolok paket" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 -msgid "Notify the user for completed updates where the user needs to restart." -msgstr "Beritahu pengguna atas selesainya pemutakhiran ketika pengguna perlu melakukan start ulang." +msgid "How often to refresh the package cache. Value is in seconds." +msgstr "Seberapa sering menyegarkan tembolok paket. Nilai dalam detik." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 -msgid "Notify the user for completed updates. This may be a useful notification for some users as installing updates prevents shutdown." -msgstr "Beritahu pengguna atas selesainya pemutakhiran. Ini mungkin pemberitahuan yang bermanfaat bagi beberapa pengguna karena pemasangan pemutakhiran mencegah shutdown." +msgid "The number of seconds at session startup to wait before checking for updates" +msgstr "Berapa detik menunggu pada awal sesi sebelum memeriksa pemutakhiran" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 -msgid "Notify the user when distribution upgrades are available" -msgstr "Beritahu pengguna ketika peningkatan distribusi tersedia" +msgid "The number of seconds at session startup to wait before checking for updates. Value is in seconds." +msgstr "Lama menunggu pada awal sesi sebelum memeriksa pemutakhiran. Nilai dalam detik." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 -msgid "Notify the user when distribution upgrades are available." -msgstr "Beritahu pengguna ketika peningkatan distribusi tersedia." +msgid "Install updates automatically when running on battery power" +msgstr "Otomatis pasang pemutakhiran ketika memakai daya baterai" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 -msgid "Notify the user when the automatic update was not started on battery power" -msgstr "Beritahu pengguna ketika pemutakhiran otomatis tak dimulai saat memakai baterai" +msgid "Install updates automatically when running on battery power." +msgstr "Otomatis pasang pemutakhiran ketika memakai daya baterai." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 -msgid "Notify the user when the update was not automatically started because the machine is running on battery power." -msgstr "Beritahu pengguna ketika pemutakhiran tak dimulai secara otomatis karena mesin memakai daya baterai." +msgid "Notify the user when distribution upgrades are available" +msgstr "Beritahu pengguna ketika peningkatan distribusi tersedia" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 -msgid "Notify the user when the update was started" -msgstr "Beritahu pengguna ketika pemutakhiran dimulai" +msgid "Notify the user when distribution upgrades are available." +msgstr "Beritahu pengguna ketika peningkatan distribusi tersedia." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 -msgid "Notify the user when the update was started." -msgstr "Beritahu pengguna ketika pemutakhiran dimulai." +msgid "Notify the user for completed updates" +msgstr "Beritahu pengguna atas selesainya pemutakhiran" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 +msgid "Notify the user for completed updates. This may be a useful notification for some users as installing updates prevents shutdown." +msgstr "Beritahu pengguna atas selesainya pemutakhiran. Ini mungkin pemberitahuan yang bermanfaat bagi beberapa pengguna karena pemasangan pemutakhiran mencegah shutdown." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +msgid "Notify the user for completed updates where the user needs to restart" +msgstr "Beritahu pengguna atas selesainya pemutakhiran ketika pengguna perlu melakukan start ulang" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 -msgid "The filenames on removable media that designate it a software source." -msgstr "Nama berkas pada media yang dapat dilepas yang membuatnya menjadi sumber perangkat lunak." +msgid "Notify the user for completed updates where the user needs to restart." +msgstr "Beritahu pengguna atas selesainya pemutakhiran ketika pengguna perlu melakukan start ulang." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 -msgid "The install root to use when adding and removing packages" -msgstr "Root pemasangan yang dipakai ketika menambah dan menghapus paket" +msgid "Notify the user when the automatic update was not started on battery power" +msgstr "Beritahu pengguna ketika pemutakhiran otomatis tak dimulai saat memakai baterai" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 -msgid "The install root to use when processing packages, which is changed when using LTSP or when testing." -msgstr "Root pemasangan yang dipakai ketika memroses paket, yang berubah ketika memakai LTSP atau ketika menguji." +msgid "Notify the user when the update was not automatically started because the machine is running on battery power." +msgstr "Beritahu pengguna ketika pemutakhiran tak dimulai secara otomatis karena mesin memakai daya baterai." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 -msgid "The last time we notified the user about non-critical updates. Value is in seconds since the epoch, or zero for never." -msgstr "Terakhir kali kita memberitahu pengguna tentang pemutakhiran tak kritis. Nilai dalam detik sejak epos, atau nol untuk tak pernah." +msgid "Notify the user when the update was started" +msgstr "Beritahu pengguna ketika pemutakhiran dimulai" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 -msgid "The last time we told the user about non-critical notifications" -msgstr "Terakhir kali kita memberitahu pengguna tentang pemutakhiran tak kritis" +msgid "Notify the user when the update was started." +msgstr "Beritahu pengguna ketika pemutakhiran dimulai." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 -msgid "The number of seconds at session startup to wait before checking for updates" -msgstr "Berapa detik menunggu pada awal sesi sebelum memeriksa pemutakhiran" +msgid "Ask the user if additional firmware should be installed" +msgstr "Tanyakan ke pengguna bila firmware tambahan mesti dipasang" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 -msgid "The number of seconds at session startup to wait before checking for updates. Value is in seconds." -msgstr "Lama menunggu pada awal sesi sebelum memeriksa pemutakhiran. Nilai dalam detik." +msgid "Ask the user if additional firmware should be installed if it is available." +msgstr "Tanya ke pengguna bila firmware tambahan mesti dipasang bila tersedia." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 -msgid "Use WiFi (wireless LAN) connections to check for updates. It may be faster to download packages when on a wired connection, and the VPN or proxy required may also only be available on wired connections." -msgstr "Gunakan koneksi WiFi (LAN nirkabel) untuk memeriksa pemutakhiran. Mungkin lebih cepat mengunduh paket ketika memakai koneksi kabel, dan VPN atau proksi yang diperlukan mungkin hanya tersedia bagi koneksi kabel." +msgid "Firmware files that should not be searched for" +msgstr "Berkas firmware yang tak perlu dicari" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 -msgid "Use WiFi connections" -msgstr "Gunakan koneksi WiFi" +msgid "Firmware files that should not be searched for, separated by commas. These can include '*' and '?' characters." +msgstr "Berkas firmware yang tak perlu dicari, dipisahkan oleh koma. Ini dapat memuat karakter '*' dan '?'." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 -msgid "Use mobile broadband connections" -msgstr "Gunakan koneksi data seluler" +msgid "Devices that should be ignored" +msgstr "Perangkat yang mesti diabaikan" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 -msgid "Use mobile broadband connections such as GSM and CDMA to check for updates." -msgstr "Gunakan sambungan data seluler seperti GSM dan CDMA untuk memeriksa pemutakhiran." +msgid "Devices that should be ignored, separated by commas. These can include '*' and '?' characters." +msgstr "Perangkat yang mesti diabaikan, dipisahkan dengan koma. Ini bisa termasuk karakter '*' dan '?'" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 +msgid "The filenames on removable media that designate it a software source." +msgstr "Nama berkas pada media yang dapat dilepas yang membuatnya menjadi sumber perangkat lunak." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 msgid "When removable media is inserted, it is checked to see if it contains any important filenames in the root directory. If the filename matches, then an updates check is performed. This allows post-install disks to be used to update running systems." msgstr "Ketika media yang dapat dilepas disisipkan, akan diperiksa apakah memuat nama berkas penting pada direktori root. Bila nama berkas cocok, makan pemeriksaan pemutakhiran dilakukan. Ini memungkinkan disk paska-pemasangan untuk dipakai memutakhirkan sistem yang sedang berjalan." -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 -msgid "'clone' will display the same thing on all monitors, 'dock' will switch off the internal monitor, 'do-nothing' will use the default Xorg behaviour (extend the desktop in recent versions)" -msgstr "'clone' akan menampilkan hal yang sama pada semua monitor, 'dock' akan mematikan monitor internal, 'do-nothing' akan memakai perilaku bawaan Xorg (memperluas desktop pada versi baru-baru ini)" - #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 msgid "File for default configuration for RandR" msgstr "Berkas konfigurasi bawaan bagi RandR" -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 msgid "The XRandR plugin will look for a default configuration in the file specified by this key. This is similar to the ~/.config/monitors.xml that normally gets stored in users' home directories. If a user does not have such a file, or has one that does not match the user's setup of monitors, then the file specified by this key will be used instead." msgstr "Plugin XRandR akan mencari konfigurasi bawaan di dalam berkas yang dinyatakan oleh kunci ini. Ini mirip dengan ~/.config/monitors.xml yang biasanya disimpan di direktori rumah para pengguna. Bila seorang pengguna tidak memiliki berkas itu, atau punya tapi tidak cocok dengan tatanan monitor pengguna, maka berkas yang dinyatakan oleh kunci ini dipakai sebagai gantinya." -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 msgid "Whether to turn off specific monitors after boot" msgstr "Apakah mematikan monitor tertentu setelah boot" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 -msgid "A list of strings representing the GTK+ modules that will be loaded, usually in addition to conditional and forcibly disabled ones." -msgstr "Daftar string yang mewakili modul-modul GTK+ yang akan dimuat, biasanya sebagai tambahan ke yang dimatikan paksa dan bersyarat." - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 -msgid "A list of strings representing the GTK+ modules that will not be loaded, even if enabled by default in their configuration." -msgstr "Daftar string yang mewakili modul-modul GTK+ yang tak akan dimuat, bahkan bila diaktifkan secara baku di konfigurasinya." - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 -msgid "Antialiasing" -msgstr "Antialiasing" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 -msgid "Hinting" -msgstr "Hinting" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 -msgid "List of explicitly disabled GTK+ modules" -msgstr "Daftar modul GTK+ yang dimatikan secara eksplisit" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 -msgid "List of explicitly enabled GTK+ modules" -msgstr "Daftar modul GTK+ yang diaktifkan secara eksplisit" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 -msgid "RGBA order" -msgstr "Urutan RGBA" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 -msgid "The order of subpixel elements on an LCD screen; only used when antialiasing is set to \"rgba\". Possible values are: \"rgb\" for red on left (most common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red on bottom." -msgstr "Urutan elemen sub piksel pada layar LCD; hanya dipakai ketika antialias ditata ke \"rgba\". Nilai yang mungkin adalah: \"rgb\" untuk merah di kiri (paling umum), \"bgr\" untuk biru di kiri, \"vrgb\" untuk merah di atas, \"vbgr\" untuk merah di bawah. " - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 -msgid "The type of antialiasing to use when rendering fonts. Possible values are: \"none\" for no antialiasing, \"grayscale\" for standard grayscale antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." -msgstr "Jenis antialias yang dipakai untuk merender fonta. Nilai yang mungkin adalah: \"none\" untuk tanpa antialias, \"grayscale\" untuk antialias skala abu standar, dan \"rgba\" untuk antialias sub piksel (layar LCD saja)." - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 -msgid "The type of hinting to use when rendering fonts. Possible values are: \"none\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full\" for maximum hinting (may cause distortion of letter forms)." -msgstr "Jenis hint yang dipakai ketika merender fonta. Nilai yang mungkin adalah \"none\" untuk tanpa hint, \"slight\" untuk dasar, \"medium\" untuk menengah\", dan \"full\" untuk hint maksimum (dapat menyebabkan distorsi bentuk huruf)." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 -msgid "Enable this to move the cursor when the user touches the tablet." -msgstr "Aktifkan ini untuk memindah kursor ketika pengguna menyentuh tablet." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 -msgid "Enable this to only report stylus events when the tip is pressed." -msgstr "Aktifkan ini untuk hanya melaporkan kejadian stylus ketika ujung ditekan." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 -msgid "Enable this to set the cursor to absolute mode." -msgstr "Aktifkan ini untuk mengatur kursor ke mode absolut." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 -msgid "Enable this to set the eraser to absolute mode." -msgstr "Aktifkan ini untuk mengatur penghapus ke mode absolut." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 -msgid "Enable this to set the stylus to absolute mode." -msgstr "Aktifkan ini untuk mengatur stylus ke mode absolut." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 -msgid "Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and 'ccw' for 90 degree counterclockwise." -msgstr "Tata ini ke 'none', 'cw' untuk 90 derajat searah jarum jam, 'half' untuk 180 derajat, dan 'ccw' untuk 90 derajat melawan arah jarum jam." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 -msgid "Set this to the logical button mapping." -msgstr "Tata ini ke pemetaan tombol lojik." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 -msgid "Set this to the pressure value at which a stylus click event is generated." -msgstr "Tata ini ke nilai tekanan saat kejadian klik stylus dijangkitkan." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 -msgid "Set this to the pressure value at which an eraser click event is generated." -msgstr "Tata ini ke nilai tekanan saat kejadian klik penghapus dijangkitkan." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the cursor." -msgstr "Tata ini ke x1, y1 dan x2, y2 dari area yang dapat dipakai oleh kursor." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the eraser." -msgstr "Tata ini ke x1, y1 dan x2, y2 dari area yang dapat dipakai oleh penghapus." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the pad." -msgstr "Tata ini ke x1, y1 dan x2, y2 dari area yang dapat dipakai oleh pad." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the stylus." -msgstr "Tata ini ke x1, y1 dan x2, y2 dari area yang dapat dipakai oleh stylus." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 -msgid "Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." -msgstr "Tata ini ke x1, y1 dan x2, y2 dari kurva tekanan yang diterapkan ke penghapus." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 -msgid "Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." -msgstr "Tata ini ke x1, y1 dan x2, y2 dari kurva tekanan yang diterapkan ke stylus." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 -msgid "Wacom cursor absolute mode" -msgstr "Mode absolut kursor Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 -msgid "Wacom cursor button mapping" -msgstr "Pemetaan tombol kursor Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 -msgid "Wacom cursor tablet area" -msgstr "Area tablet kursor Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 -msgid "Wacom eraser absolute mode" -msgstr "Mode absolut penghapus Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 -msgid "Wacom eraser button mapping" -msgstr "Pemetaan tombol penghapus Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 -msgid "Wacom eraser pressure curve" -msgstr "Kurva tekanan penghapus Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 -msgid "Wacom eraser pressure threshold" -msgstr "Ambang tekanan penghapus Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 -msgid "Wacom eraser tablet area" -msgstr "Area tablet penghapus Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +msgid "'clone' will display the same thing on all monitors, 'dock' will switch off the internal monitor, 'do-nothing' will use the default Xorg behaviour (extend the desktop in recent versions)" +msgstr "'clone' akan menampilkan hal yang sama pada semua monitor, 'dock' akan mematikan monitor internal, 'do-nothing' akan memakai perilaku bawaan Xorg (memperluas desktop pada versi baru-baru ini)" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 -msgid "Wacom pad button mapping" -msgstr "Pemetaan tombol pad Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 +msgid "Antialiasing" +msgstr "Antialiasing" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 -msgid "Wacom pad tablet area" -msgstr "Area tablet pad Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +msgid "The type of antialiasing to use when rendering fonts. Possible values are: \"none\" for no antialiasing, \"grayscale\" for standard grayscale antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +msgstr "Jenis antialias yang dipakai untuk merender fonta. Nilai yang mungkin adalah: \"none\" untuk tanpa antialias, \"grayscale\" untuk antialias skala abu standar, dan \"rgba\" untuk antialias sub piksel (layar LCD saja)." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 -msgid "Wacom stylus absolute mode" -msgstr "Mode absolut stylus Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 +msgid "Hinting" +msgstr "Hinting" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 -msgid "Wacom stylus button mapping" -msgstr "Pemetaan tombol stylus Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 +msgid "The type of hinting to use when rendering fonts. Possible values are: \"none\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full\" for maximum hinting (may cause distortion of letter forms)." +msgstr "Jenis hint yang dipakai ketika merender fonta. Nilai yang mungkin adalah \"none\" untuk tanpa hint, \"slight\" untuk dasar, \"medium\" untuk menengah\", dan \"full\" untuk hint maksimum (dapat menyebabkan distorsi bentuk huruf)." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 -msgid "Wacom stylus pressure curve" -msgstr "Kurva tekanan stylus Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +msgid "RGBA order" +msgstr "Urutan RGBA" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 -msgid "Wacom stylus pressure threshold" -msgstr "Ambang tekanan stylus Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 +msgid "The order of subpixel elements on an LCD screen; only used when antialiasing is set to \"rgba\". Possible values are: \"rgb\" for red on left (most common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red on bottom." +msgstr "Urutan elemen sub piksel pada layar LCD; hanya dipakai ketika antialias ditata ke \"rgba\". Nilai yang mungkin adalah: \"rgb\" untuk merah di kiri (paling umum), \"bgr\" untuk biru di kiri, \"vrgb\" untuk merah di atas, \"vbgr\" untuk merah di bawah. " -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 -msgid "Wacom stylus tablet area" -msgstr "Area tablet stylus Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 +msgid "List of explicitly disabled GTK+ modules" +msgstr "Daftar modul GTK+ yang dimatikan secara eksplisit" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:34 -msgid "Wacom tablet PC feature" -msgstr "Fitur PC tablet Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 +msgid "A list of strings representing the GTK+ modules that will not be loaded, even if enabled by default in their configuration." +msgstr "Daftar string yang mewakili modul-modul GTK+ yang tak akan dimuat, bahkan bila diaktifkan secara baku di konfigurasinya." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:35 -msgid "Wacom tablet rotation" -msgstr "Rotasi tablet Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 +msgid "List of explicitly enabled GTK+ modules" +msgstr "Daftar modul GTK+ yang diaktifkan secara eksplisit" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:36 -msgid "Wacom touch feature" -msgstr "Fitur sentuh Wacom" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 +msgid "A list of strings representing the GTK+ modules that will be loaded, usually in addition to conditional and forcibly disabled ones." +msgstr "Daftar string yang mewakili modul-modul GTK+ yang akan dimuat, biasanya sebagai tambahan ke yang dimatikan paksa dan bersyarat." #: ../gnome-settings-daemon/main.c:54 msgid "Enable debugging code" @@ -903,135 +959,132 @@ msgid "Accessibility keyboard plugin" msgstr "Plugin papan tik kemudahan akses" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:392 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:383 #, c-format msgid "There was an error displaying help: %s" msgstr "Ada error saat menampilkan layar bantuan: %s" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:517 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:580 -msgid "Do you want to activate Slow Keys?" -msgstr "Aktifkan fasilitas Tombol Lambat?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:518 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:581 -msgid "Do you want to deactivate Slow Keys?" -msgstr "Matikan fasilitas Tombol Lambat?" +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:508 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:572 +#| msgid "Slow Keys Alert" +msgid "Slow Keys Turned On" +msgstr "Tombol Lambat Dinyalakan" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 +#| msgid "Slow Keys Alert" +msgid "Slow Keys Turned Off" +msgstr "Tombol Lambat Dimatikan" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:519 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:582 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 msgid "You just held down the Shift key for 8 seconds. This is the shortcut for the Slow Keys feature, which affects the way your keyboard works." msgstr "Anda baru saja menekan tombol Shift selama 8 detik. Ini adalah tombol singkat untuk mengaktifkan fasilitas Tombol Lambat. Fasilitas ini akan merubah cara kerja papan ketik Anda." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:538 -#: ../plugins/mouse/gsd-mouse-manager.c:822 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 +#: ../plugins/mouse/gsd-mouse-manager.c:867 msgid "Universal Access" msgstr "Akses Universal" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:543 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:678 -msgid "Don't activate" -msgstr "Jangan diaktifkan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:543 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:678 -msgid "Don't deactivate" -msgstr "Jangan dinonaktifkan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:549 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:684 -msgid "Activate" -msgstr "Aktifkan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:549 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:684 -msgid "Deactivate" -msgstr "Nonaktifkan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:603 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:740 -msgid "Do_n't activate" -msgstr "Janga_n aktifkan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:603 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:740 -msgid "Do_n't deactivate" -msgstr "Janga_n dimatikan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:606 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:743 -msgid "_Activate" -msgstr "_Aktifkan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:606 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:743 -msgid "_Deactivate" -msgstr "_Matikan" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:610 -msgid "Slow Keys Alert" -msgstr "Peringatan Tombol Lambat" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:650 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:714 -msgid "Do you want to activate Sticky Keys?" -msgstr "Aktifkan fasilitas Tombol Berurut?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:651 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:715 -msgid "Do you want to deactivate Sticky Keys?" -msgstr "Matikan fasilitas Tombol Berurut?" +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn Off" +msgstr "Matikan" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn On" +msgstr "Nyalakan" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave On" +msgstr "Biarkan Menyala" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave Off" +msgstr "Biarkan Mati" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn Off" +msgstr "Ma_tikan" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn On" +msgstr "_Nyalakan" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave On" +msgstr "_Biarkan Menyala" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave Off" +msgstr "_Biarkan Mati" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:641 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:707 +#| msgid "Sticky Keys Alert" +msgid "Sticky Keys Turned On" +msgstr "Tombol Lengket Dinyalakan" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 +#| msgid "Sticky Keys Alert" +msgid "Sticky Keys Turned Off" +msgstr "Tombol Lengket Dimatikan" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:653 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:717 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 msgid "You just pressed the Shift key 5 times in a row. This is the shortcut for the Sticky Keys feature, which affects the way your keyboard works." msgstr "Anda baru saja menekan tombol Shift selama 5 kali berturut-turut. Ini adalah tombol singkat untuk mengaktifkan fasilitas Tombol Berurut. Fasilitas ini akan merubah cara kerja papan ketik Anda." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:655 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:719 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:646 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:712 msgid "You just pressed two keys at once, or pressed the Shift key 5 times in a row. This turns off the Sticky Keys feature, which affects the way your keyboard works." msgstr "Anda baru saja menekan dua tombol sekaligus atau tombol Shift selama 5 kali berturut-turut. Ini adalah tombol singkat untuk mengaktifkan fasilitas Tombol Lambat. Fasilitas ini akan merubah cara kerja papan ketik Anda." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:747 -msgid "Sticky Keys Alert" -msgstr "Peringatan Tombol Berurut" - -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:449 -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 msgid "Universal Access Preferences" msgstr "Preferensi Akses Universal" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 -msgid "Enhance _contrast in colors" -msgstr "Tingkatkan _kontras warna" - #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 -msgid "Make _text larger and easier to read" -msgstr "Buat _teks lebih besar dan lebih mudah dibaca" +msgid "Use on-screen _keyboard" +msgstr "Gunakan papan _ketik pada layar" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 -msgid "Press and _hold keys to accept them (Slow Keys)" -msgstr "Tekan dan ta_han tombol untuk menerimanya (Tombol Lambat)" +msgid "Use screen _reader" +msgstr "Gunakan pembaca laya_r" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +msgid "Use screen _magnifier" +msgstr "Gunakan pe_mbesar layar" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 -msgid "Use on-screen _keyboard" -msgstr "Gunakan papan _ketik pada layar" +msgid "Enhance _contrast in colors" +msgstr "Tingkatkan _kontras warna" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 -msgid "Use screen _magnifier" -msgstr "Gunakan pe_mbesar layar" +msgid "Make _text larger and easier to read" +msgstr "Buat _teks lebih besar dan lebih mudah dibaca" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 -msgid "Use screen _reader" -msgstr "Gunakan pembaca laya_r" +msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" +msgstr "Tekan tombol _pintas satu per satu (Tombol Lengket)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 msgid "_Ignore duplicate keypresses (Bounce Keys)" msgstr "Aba_ikan duplikasi penekanan tombol (Tombol Lambung)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 -msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" -msgstr "Tekan tombol _pintas satu per satu (Tombol Lengket)" +msgid "Press and _hold keys to accept them (Slow Keys)" +msgstr "Tekan dan ta_han tombol untuk menerimanya (Tombol Lambat)" #: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:1 msgid "Accessibility settings" @@ -1042,19 +1095,19 @@ msgstr "Plugin pengaturan aksesibilitas" #: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 -msgid "Automount and autorun plugged devices" -msgstr "Kaitkan dan jalankan otomatis perangkat yang ditancapkan" - -#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 msgid "Mount Helper" msgstr "Pembantu pengait" -#: ../plugins/automount/gsd-automount-manager.c:154 +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 +msgid "Automount and autorun plugged devices" +msgstr "Kaitkan dan jalankan otomatis perangkat yang ditancapkan" + +#: ../plugins/automount/gsd-automount-manager.c:151 #, c-format msgid "Unable to mount %s" msgstr "Tidak dapat mengaitkan %s" -#: ../plugins/automount/gsd-automount-manager.c:271 +#: ../plugins/automount/gsd-automount-manager.c:264 #, c-format msgid "Unable to open a folder for %s" msgstr "Tidak dapat membuka folder untuk %s" @@ -1180,6 +1233,7 @@ msgstr "Plugin papan klip" #: ../plugins/color/color.gnome-settings-plugin.in.h:1 +#: ../plugins/color/gsd-color-manager.c:1757 msgid "Color" msgstr "Warna" @@ -1187,73 +1241,230 @@ msgid "Color plugin" msgstr "Plugin warna" -#: ../plugins/color/gsd-color-manager.c:627 -msgid "Default" -msgstr "Standar" - -#: ../plugins/color/gsd-color-manager.c:1528 +#: ../plugins/color/gsd-color-manager.c:1762 msgid "Recalibrate now" msgstr "Kalibrasi ulang sekarang" -#: ../plugins/color/gsd-color-manager.c:1535 -#: ../plugins/housekeeping/gsd-disk-space.c:385 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:451 -msgid "Ignore" -msgstr "Abaikan" - #. TRANSLATORS: this is when the device has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1577 +#: ../plugins/color/gsd-color-manager.c:1804 msgid "Recalibration required" msgstr "Perlu kalibrasi ulang" #. TRANSLATORS: this is when the display has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1589 +#: ../plugins/color/gsd-color-manager.c:1816 #, c-format msgid "The display '%s' should be recalibrated soon." msgstr "Tampilan '%s' mesti segera dikalibrasi ulang." #. TRANSLATORS: this is when the printer has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1598 +#: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." msgstr "Pencetak '%s' mesti segera dikalibrasi ulang." -#. TRANSLATORS: this is the application name -#: ../plugins/color/gsd-color-manager.c:1931 -#: ../plugins/color/gsd-color-manager.c:1949 -msgid "GNOME Settings Daemon Color Plugin" -msgstr "Plugin Warna Daemon Pengaturan GNOME" +#. TRANSLATORS: this is the application name +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 +msgid "GNOME Settings Daemon Color Plugin" +msgstr "Plugin Warna Daemon Pengaturan GNOME" + +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2151 +msgid "Color calibration device added" +msgstr "Perangkat kalibrasi warna ditambahkan" + +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2167 +msgid "Color calibration device removed" +msgstr "Perangkat kalibrasi warna disingkirkan" + +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 +msgid "Dummy" +msgstr "Dummy" + +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 +msgid "Dummy plugin" +msgstr "Plugin dummy" + +#: ../plugins/housekeeping/gsd-disk-space.c:332 +#, c-format +msgid "Low Disk Space on \"%s\"" +msgstr "Sisa Ruang Disk pada \"%s\" Sedikit" + +#: ../plugins/housekeeping/gsd-disk-space.c:334 +#, c-format +msgid "The volume \"%s\" has only %s disk space remaining. You may free up some space by emptying the trash." +msgstr "Volume \"%s\" hanya memiliki %s ruang kosong. Anda dapat menambah ruang kosong tersebut dengan mengosongkan folder tempat sampah." + +#: ../plugins/housekeeping/gsd-disk-space.c:338 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 +#, c-format +msgid "The volume \"%s\" has only %s disk space remaining." +msgstr "Volume \"%s\" hanya memiliki %s ruang kosong." + +#. Set up all the window stuff here +#: ../plugins/housekeeping/gsd-disk-space.c:343 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:205 +msgid "Low Disk Space" +msgstr "Ruang Kosong Tinggal Sedikit" + +#: ../plugins/housekeeping/gsd-disk-space.c:345 +#, c-format +msgid "This computer has only %s disk space remaining. You may free up some space by emptying the trash." +msgstr "Komputer ini hanya memiliki %s ruang kosong pada diska. Anda dapat menambah ruang kosong tersebut dengan mengosongkan folder tempat sampah." + +#: ../plugins/housekeeping/gsd-disk-space.c:348 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 +#, c-format +msgid "This computer has only %s disk space remaining." +msgstr "Komputer ini hanya memiliki %s ruang kosong pada diska." + +#: ../plugins/housekeeping/gsd-disk-space.c:363 +msgid "Disk space" +msgstr "Ruang disk" + +#: ../plugins/housekeeping/gsd-disk-space.c:370 +msgid "Examine" +msgstr "Periksa" + +#: ../plugins/housekeeping/gsd-disk-space.c:378 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:437 +msgid "Empty Trash" +msgstr "Kosongkan Tempat Sampah" + +#: ../plugins/housekeeping/gsd-disk-space.c:385 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:452 +msgid "Ignore" +msgstr "Abaikan" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 +msgid "Don't show any warnings again for this file system" +msgstr "Jangan tampilkan lagi peringatan untuk sistem berkas ini" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:68 +msgid "Don't show any warnings again" +msgstr "Jangan tampilkan peringatan lagi" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 +msgid "You can free up disk space by emptying the Trash, removing unused programs or files, or moving files to another disk or partition." +msgstr "Anda dapat membebaskan ruang disk dengan mengosongkan Tong Sampah, menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk atau partisi lain." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 +msgid "You can free up disk space by removing unused programs or files, or by moving files to another disk or partition." +msgstr "Anda dapat membebaskan ruang disk dengan menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk atau partisi lain." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 +msgid "You can free up disk space by emptying the Trash, removing unused programs or files, or moving files to an external disk." +msgstr "Anda dapat membebaskan ruang disk dengan mengosongkan Tong Sampah, menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk eksternal." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 +msgid "You can free up disk space by removing unused programs or files, or by moving files to an external disk." +msgstr "Anda dapat membebaskan ruang disk dengan menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk eksternal." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:445 +msgid "Examine
" +msgstr "Memeriksa..." + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:87 +#, c-format +msgid "" +"Error activating XKB configuration.\n" +"There can be various reasons for that.\n" +"\n" +"If you report this situation as a bug, include the results of\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" +msgstr "" +"Galat saat mengaktifkan konfigurasi XKB.\n" +"Ada berbagai alasan.\n" +"\n" +"Bila Anda melaporkan situasi ini, sertakan hasil dari\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:242 +msgid "_Layouts" +msgstr "Tata _Letak" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:248 +msgid "Show _Keyboard Layout..." +msgstr "Tampilkan Tata Leta_k Papan Tik..." + +#. translators note: +#. * This is the name of the gnome-control-center "region" panel +#: ../plugins/keyboard/gsd-keyboard-xkb.c:255 +msgid "Region and Language Settings" +msgstr "Pengaturan Bahasa dan Wilayah " + +#. TRANSLATORS: wireless keyboard with internal battery +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:585 +#: ../plugins/power/gpm-common.c:872 +msgid "Keyboard" +msgid_plural "Keyboards" +msgstr[0] "Papan tik" + +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 +msgid "Keyboard plugin" +msgstr "Plugin papan tik" + +#. translators: +#. * The device has been disabled +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1087 +msgid "Disabled" +msgstr "Tidak aktif" + +#. translators: +#. * The number of sound outputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1094 +#, c-format +msgid "%u Output" +msgid_plural "%u Outputs" +msgstr[0] "%u Keluaran" + +#. translators: +#. * The number of sound inputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1104 +#, c-format +msgid "%u Input" +msgid_plural "%u Inputs" +msgstr[0] "%u Masukan" + +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1402 +msgid "System Sounds" +msgstr "Suara System" -#. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:1933 -msgid "Color calibration device added" -msgstr "Perangkat kalibrasi warna ditambahkan" +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 +msgid "Media keys" +msgstr "Tombol media" -#. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:1951 -msgid "Color calibration device removed" -msgstr "Perangkat kalibrasi warna disingkirkan" +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 +msgid "Media keys plugin" +msgstr "Plugin tombol media" -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 -msgid "Dummy" -msgstr "Dummy" +#: ../plugins/mouse/gsd-mouse-manager.c:863 +msgid "Could not enable mouse accessibility features" +msgstr "Tidak dapat mengaktifkan fitur aksesibilitas tetikus" -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 -msgid "Dummy plugin" -msgstr "Plugin dummy" +#: ../plugins/mouse/gsd-mouse-manager.c:865 +msgid "Mouse accessibility requires Mousetweaks to be installed on your system." +msgstr "Aksesibilitas tetikus memerlukan terpasangnya Mousetweaks pada sistem Anda." -#. TRANSLATORS: this is the notification application name -#: ../plugins/power/power.gnome-settings-plugin.in.h:1 -#: ../plugins/power/gsd-power-manager.c:1177 -#: ../plugins/power/gsd-power-manager.c:1353 -#: ../plugins/power/gsd-power-manager.c:1531 -#: ../plugins/power/gsd-power-manager.c:1680 -msgid "Power" -msgstr "Daya" +#. TRANSLATORS: wireless mice with internal batteries +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:581 +#: ../plugins/power/gpm-common.c:848 +msgid "Mouse" +msgid_plural "Mice" +msgstr[0] "Tetikus" -#: ../plugins/power/power.gnome-settings-plugin.in.h:2 -msgid "Power plugin" -msgstr "Plugin daya" +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 +msgid "Mouse plugin" +msgstr "Plugin tetikus" #: ../plugins/power/gpm-common.c:47 msgid "Unknown time" @@ -1462,22 +1673,6 @@ msgid_plural "Monitors" msgstr[0] "Alat Pemantau" -#. TRANSLATORS: wireless mice with internal batteries -#: ../plugins/power/gpm-common.c:581 -#: ../plugins/power/gpm-common.c:848 -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 -msgid "Mouse" -msgid_plural "Mice" -msgstr[0] "Tetikus" - -#. TRANSLATORS: wireless keyboard with internal battery -#: ../plugins/power/gpm-common.c:585 -#: ../plugins/power/gpm-common.c:872 -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 -msgid "Keyboard" -msgid_plural "Keyboards" -msgstr[0] "Papan tik" - #. TRANSLATORS: portable device #: ../plugins/power/gpm-common.c:589 #: ../plugins/power/gpm-common.c:896 @@ -1758,1042 +1953,917 @@ msgid "Computer is charged" msgstr "Baterai komputer penuh" -#. TRANSLATORS: the battery may be recalled by it's vendor -#: ../plugins/power/gsd-power-manager.c:921 +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 msgid "Battery may be recalled" msgstr "Baterai mungkin ditarik ulang" -#: ../plugins/power/gsd-power-manager.c:922 +#: ../plugins/power/gsd-power-manager.c:994 #, c-format msgid "A battery in your computer may have been recalled by %s and you may be at risk." msgstr "Baterai di komputer Anda mungkin telah ditarik ulang oleh %s dan Anda mungkin berresiko." -#: ../plugins/power/gsd-power-manager.c:925 +#: ../plugins/power/gsd-power-manager.c:997 msgid "For more information visit the battery recall website." msgstr "Untuk informasi lebih lanjut kunjungi situs web penarikan baterai." #. TRANSLATORS: button text, visit the manufacturers recall website -#: ../plugins/power/gsd-power-manager.c:936 +#: ../plugins/power/gsd-power-manager.c:1008 msgid "Visit recall website" msgstr "Kunjungi situs web penarikan ulang" #. TRANSLATORS: button text, do not show this bubble again -#: ../plugins/power/gsd-power-manager.c:940 +#: ../plugins/power/gsd-power-manager.c:1012 msgid "Do not show me this again" msgstr "Jangan tampilkan pesan ini lagi" #. TRANSLATORS: UPS is now discharging -#: ../plugins/power/gsd-power-manager.c:1151 +#: ../plugins/power/gsd-power-manager.c:1223 msgid "UPS Discharging" msgstr "UPS Dikosongkan" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1156 +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format msgid "%s of UPS backup power remaining" msgstr "%s daya backup UPS tersisa" +#. TRANSLATORS: this is the notification application name +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 +#: ../plugins/power/power.gnome-settings-plugin.in.h:1 +msgid "Power" +msgstr "Daya" + #. TRANSLATORS: laptop battery low, and we only have one battery -#: ../plugins/power/gsd-power-manager.c:1268 +#: ../plugins/power/gsd-power-manager.c:1342 msgid "Battery low" msgstr "Baterai lemah" #. TRANSLATORS: laptop battery low, and we have more than one kind of battery -#: ../plugins/power/gsd-power-manager.c:1271 +#: ../plugins/power/gsd-power-manager.c:1345 msgid "Laptop battery low" msgstr "Baterai laptop lemah" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1277 +#: ../plugins/power/gsd-power-manager.c:1351 #, c-format msgid "Approximately %s remaining (%.0f%%)" msgstr "Kira-kira %s tersisa (%.0f%%)" #. TRANSLATORS: UPS is starting to get a little low -#: ../plugins/power/gsd-power-manager.c:1281 +#: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" msgstr "UPS lemah" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1285 +#: ../plugins/power/gsd-power-manager.c:1359 #, c-format msgid "Approximately %s of remaining UPS backup power (%.0f%%)" msgstr "Kira-kira %s dari sisa daya backup UPS (%.0f%%)" #. TRANSLATORS: mouse is getting a little low #. TRANSLATORS: the mouse battery is very low -#: ../plugins/power/gsd-power-manager.c:1289 -#: ../plugins/power/gsd-power-manager.c:1452 +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 msgid "Mouse battery low" msgstr "Baterai tetikus lemah" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1292 +#: ../plugins/power/gsd-power-manager.c:1366 #, c-format msgid "Wireless mouse is low in power (%.0f%%)" msgstr "Baterai tetikus nirkabel lemah (%.0f%%)" #. TRANSLATORS: keyboard is getting a little low #. TRANSLATORS: the keyboard battery is very low -#: ../plugins/power/gsd-power-manager.c:1296 -#: ../plugins/power/gsd-power-manager.c:1460 +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 msgid "Keyboard battery low" msgstr "Baterai papan tik lemah" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1299 +#: ../plugins/power/gsd-power-manager.c:1373 #, c-format msgid "Wireless keyboard is low in power (%.0f%%)" msgstr "Baterai papan tik nirkabel lemah (%.0f%%)" #. TRANSLATORS: PDA is getting a little low #. TRANSLATORS: the PDA battery is very low -#: ../plugins/power/gsd-power-manager.c:1303 -#: ../plugins/power/gsd-power-manager.c:1469 +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 msgid "PDA battery low" msgstr "Baterai PDA lemah" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1306 +#: ../plugins/power/gsd-power-manager.c:1380 #, c-format msgid "PDA is low in power (%.0f%%)" msgstr "Baterai PDA lemah (%.0f%%)" #. TRANSLATORS: cell phone (mobile) is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1310 -#: ../plugins/power/gsd-power-manager.c:1479 -#: ../plugins/power/gsd-power-manager.c:1490 +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 msgid "Cell phone battery low" msgstr "Baterai telepon genggam nyaris habis" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1313 +#: ../plugins/power/gsd-power-manager.c:1387 #, c-format msgid "Cell phone is low in power (%.0f%%)" msgstr "Baterai telepon genggam lemah (%.0f%%)" #. TRANSLATORS: media player, e.g. mp3 is getting a little low -#: ../plugins/power/gsd-power-manager.c:1318 +#: ../plugins/power/gsd-power-manager.c:1392 msgid "Media player battery low" msgstr "Baterai pemutar media nyaris habis" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1321 +#: ../plugins/power/gsd-power-manager.c:1395 #, c-format msgid "Media player is low in power (%.0f%%)" msgstr "Baterai pemutar media lemah (%.0f%%)" #. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1325 -#: ../plugins/power/gsd-power-manager.c:1499 +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 msgid "Tablet battery low" msgstr "Baterai tablet nyaris habis" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1328 +#: ../plugins/power/gsd-power-manager.c:1402 #, c-format msgid "Tablet is low in power (%.0f%%)" msgstr "Baterai tablet lemah (%.0f%%)" #. TRANSLATORS: computer, e.g. ipad is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1332 -#: ../plugins/power/gsd-power-manager.c:1508 +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 msgid "Attached computer battery low" msgstr "Baterai komputer yang tersambung lemah" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1335 +#: ../plugins/power/gsd-power-manager.c:1409 #, c-format msgid "Attached computer is low in power (%.0f%%)" msgstr "Baterai komputer yang tersambung lemah (%.0f%%)" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1446 msgid "Battery is low" msgstr "Baterai lemah" #. TRANSLATORS: laptop battery critically low, and only have one kind of battery -#: ../plugins/power/gsd-power-manager.c:1411 +#: ../plugins/power/gsd-power-manager.c:1488 msgid "Battery critically low" msgstr "Baterai nyaris habis" #. TRANSLATORS: laptop battery critically low, and we have more than one type of battery #. TRANSLATORS: laptop battery is really, really, low -#: ../plugins/power/gsd-power-manager.c:1414 -#: ../plugins/power/gsd-power-manager.c:1598 +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 msgid "Laptop battery critically low" msgstr "Baterai laptop nyaris habis" #. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything -#: ../plugins/power/gsd-power-manager.c:1423 +#: ../plugins/power/gsd-power-manager.c:1500 msgid "Plug in your AC adapter to avoid losing data." msgstr "Tancapkan adaptor AC Anda untuk menghindari hilangnya data." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." msgstr "Komputer akan segera disuspensi kecuali ditancapkan ke listrik." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1431 +#: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." msgstr "Komputer akan segera hibernasi kecuali ditancapkan ke listrik." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1435 +#: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." msgstr "Komputer akan segera dimatikan kecuali ditancapkan ke listrik." #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low -#: ../plugins/power/gsd-power-manager.c:1442 -#: ../plugins/power/gsd-power-manager.c:1634 +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" msgstr "Baterai UPS nyaris habis" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1446 +#: ../plugins/power/gsd-power-manager.c:1523 #, c-format msgid "Approximately %s of remaining UPS power (%.0f%%). Restore AC power to your computer to avoid losing data." msgstr "Sekitar %s dari sisa daya UPS (%.0f%%). Kembalikan daya listrik AC ke komputer Anda untuk menghindari kehilangan data." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1455 +#: ../plugins/power/gsd-power-manager.c:1532 #, c-format msgid "Wireless mouse is very low in power (%.0f%%). This device will soon stop functioning if not charged." msgstr "Tetikus nirkabel nyaris kehabisan daya (%.0f%%). Perangkat ini akan segera berhenti berfungsi bila tidak diisi ulang." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1463 +#: ../plugins/power/gsd-power-manager.c:1540 #, c-format msgid "Wireless keyboard is very low in power (%.0f%%). This device will soon stop functioning if not charged." msgstr "Papan tik nirkabel nyaris kehabisan daya (%.0f%%). Perangkat ini akan segera berhenti berfungsi bila tidak diisi ulang." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1472 +#: ../plugins/power/gsd-power-manager.c:1549 #, c-format msgid "PDA is very low in power (%.0f%%). This device will soon stop functioning if not charged." msgstr "PDA nyaris kehabisan daya (%.0f%%). Perangkat ini akan segera berhenti berfungsi bila tidak diisi ulang." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1482 +#: ../plugins/power/gsd-power-manager.c:1559 #, c-format msgid "Cell phone is very low in power (%.0f%%). This device will soon stop functioning if not charged." msgstr "Telepon seluler nyaris kehabisan daya (%.0f%%). Perangkat ini akan segera berhenti berfungsi bila tidak diisi ulang." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1493 +#: ../plugins/power/gsd-power-manager.c:1570 #, c-format msgid "Media player is very low in power (%.0f%%). This device will soon stop functioning if not charged." msgstr "Pemutar media nyaris kehabisan daya (%.1f%%). Perangkat ini akan segera berhenti berfungsi bila tidak diisi ulang." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1502 +#: ../plugins/power/gsd-power-manager.c:1579 #, c-format msgid "Tablet is very low in power (%.0f%%). This device will soon stop functioning if not charged." msgstr "Tablet akan kehabisan daya (%.0f%%). Perangkat ini akan segera berhenti berfungsi bila tidak diisi ulang." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1511 +#: ../plugins/power/gsd-power-manager.c:1588 #, c-format msgid "Attached computer is very low in power (%.0f%%). The device will soon shutdown if not charged." msgstr "Komputer yang tersambung nyaris kehabisan daya (%.0f%%). Perangkat ini akan segera dimatikan bila tidak diisi ulang." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1551 -#: ../plugins/power/gsd-power-manager.c:1561 -#: ../plugins/power/gsd-power-manager.c:1697 +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 msgid "Battery is critically low" msgstr "Baterai nyaris habis" #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1606 +#: ../plugins/power/gsd-power-manager.c:1683 msgid "The battery is below the critical level and this computer will power-off when the battery becomes completely empty." msgstr "Baterai berada pada tingkat kritis dan komputer ini akan mati ketika baterai sama sekali kosong." #. TRANSLATORS: computer will suspend -#: ../plugins/power/gsd-power-manager.c:1612 -msgid "The battery is below the critical level and this computer is about to suspend.
NOTE: A small amount of power is required to keep your computer in a suspended state." -msgstr "Baterai berada di bawah tingkat kritis dan komputer ini akan disuspensi.
CATATAN: Sejumlah kecil tenaga diperlukan untuk menjaga komputer Anda dalam kondisi tersuspensi." +#: ../plugins/power/gsd-power-manager.c:1689 +#| msgid "" +#| "The battery is below the critical level and this computer is about to " +#| "suspend.
NOTE: A small amount of power is required to keep your " +#| "computer in a suspended state." +msgid "" +"The battery is below the critical level and this computer is about to suspend.\n" +"NOTE: A small amount of power is required to keep your computer in a suspended state." +msgstr "" +"Baterai berada di bawah tingkat kritis dan komputer ini akan disuspensi.\n" +" CATATAN: Sejumlah kecil tenaga diperlukan untuk menjaga komputer Anda dalam kondisi tersuspensi." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1619 +#: ../plugins/power/gsd-power-manager.c:1696 msgid "The battery is below the critical level and this computer is about to hibernate." msgstr "Baterai berada pada tingkat kritis dan komputer ini akan berhibernasi." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1624 +#: ../plugins/power/gsd-power-manager.c:1701 msgid "The battery is below the critical level and this computer is about to shutdown." msgstr "Baterai di bawah tingkat kritis dan komputer ini akan mati." #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1642 +#: ../plugins/power/gsd-power-manager.c:1719 msgid "UPS is below the critical level and this computer will power-off when the UPS becomes completely empty." msgstr "Baterai UPS di bawah tingkat kritis dan komputer ini akan dimatikan ketika baterai UPS benar-benar habis." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1648 +#: ../plugins/power/gsd-power-manager.c:1725 msgid "UPS is below the critical level and this computer is about to hibernate." msgstr "Baterai UPS di bawah tingkat kritis dan komputer ini akan berhibernasi." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1653 +#: ../plugins/power/gsd-power-manager.c:1730 msgid "UPS is below the critical level and this computer is about to shutdown." msgstr "Baterai UPS di bawah tingkat kritis dan komputer ini akan dimatikan." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2048 +#: ../plugins/power/gsd-power-manager.c:2224 msgid "Lid has been opened" msgstr "Lid telah dibuka" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2073 +#: ../plugins/power/gsd-power-manager.c:2301 msgid "Lid has been closed" msgstr "Lid telah ditutup" #. TRANSLATORS: this is the title of the power manager status icon #. * that is only shown in fallback mode -#: ../plugins/power/gsd-power-manager.c:3168 +#: ../plugins/power/gsd-power-manager.c:3692 msgid "Power Manager" msgstr "Manajer Daya" -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:1 -msgid "Authentication is required to modify the laptop brightness" -msgstr "Perlu otentikasi untuk mengubah kecerahan laptop" - #. SECURITY: #. - A normal active user on the local machine does not need permission #. to change the backlight brightness. #. -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:5 msgid "Modify the laptop brightness" msgstr "Ubah kecerahan laptop" -#: ../plugins/housekeeping/gsd-disk-space.c:332 -#, c-format -msgid "Low Disk Space on \"%s\"" -msgstr "Sisa Ruang Disk pada \"%s\" Sedikit" - -#: ../plugins/housekeeping/gsd-disk-space.c:334 -#, c-format -msgid "The volume \"%s\" has only %s disk space remaining. You may free up some space by emptying the trash." -msgstr "Volume \"%s\" hanya memiliki %s ruang kosong. Anda dapat menambah ruang kosong tersebut dengan mengosongkan folder tempat sampah." - -#: ../plugins/housekeeping/gsd-disk-space.c:338 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 -#, c-format -msgid "The volume \"%s\" has only %s disk space remaining." -msgstr "Volume \"%s\" hanya memiliki %s ruang kosong." - -#. Set up all the window stuff here -#: ../plugins/housekeeping/gsd-disk-space.c:343 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:204 -msgid "Low Disk Space" -msgstr "Ruang Kosong Tinggal Sedikit" - -#: ../plugins/housekeeping/gsd-disk-space.c:345 -#, c-format -msgid "This computer has only %s disk space remaining. You may free up some space by emptying the trash." -msgstr "Komputer ini hanya memiliki %s ruang kosong pada diska. Anda dapat menambah ruang kosong tersebut dengan mengosongkan folder tempat sampah." - -#: ../plugins/housekeeping/gsd-disk-space.c:348 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 -#, c-format -msgid "This computer has only %s disk space remaining." -msgstr "Komputer ini hanya memiliki %s ruang kosong pada diska." - -#: ../plugins/housekeeping/gsd-disk-space.c:363 -msgid "Disk space" -msgstr "Ruang disk" - -#: ../plugins/housekeeping/gsd-disk-space.c:370 -msgid "Examine" -msgstr "Periksa" - -#: ../plugins/housekeeping/gsd-disk-space.c:378 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:436 -msgid "Empty Trash" -msgstr "Kosongkan Tempat Sampah" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 -msgid "Don't show any warnings again for this file system" -msgstr "Jangan tampilkan lagi peringatan untuk sistem berkas ini" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:68 -msgid "Don't show any warnings again" -msgstr "Jangan tampilkan peringatan lagi" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 -msgid "You can free up disk space by emptying the Trash, removing unused programs or files, or moving files to another disk or partition." -msgstr "Anda dapat membebaskan ruang disk dengan mengosongkan Tong Sampah, menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk atau partisi lain." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 -msgid "You can free up disk space by removing unused programs or files, or by moving files to another disk or partition." -msgstr "Anda dapat membebaskan ruang disk dengan menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk atau partisi lain." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 -msgid "You can free up disk space by emptying the Trash, removing unused programs or files, or moving files to an external disk." -msgstr "Anda dapat membebaskan ruang disk dengan mengosongkan Tong Sampah, menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk eksternal." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 -msgid "You can free up disk space by removing unused programs or files, or by moving files to an external disk." -msgstr "Anda dapat membebaskan ruang disk dengan menghapus program atau berkas yang tak terpakai, atau dengan memindahkan berkas ke disk eksternal." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:444 -msgid "Examine
" -msgstr "Memeriksa..." - -#: ../plugins/keybindings/gsd-keybindings-manager.c:139 -#, c-format -msgid "Key binding (%s) is invalid (%d)" -msgstr "Kaitan kunci (%s) tak valid (%d)" - -#: ../plugins/keybindings/gsd-keybindings-manager.c:197 -#, c-format -msgid "Key binding (%s) is incomplete" -msgstr "Kaitan kunci (%s) tak lengkap" - -#: ../plugins/keybindings/gsd-keybindings-manager.c:493 -#, c-format -msgid "" -"Error while trying to run (%s)\n" -"which is linked to the key (%s)" -msgstr "" -"Error saat menjalankan (%s)\n" -"kebetulan ini terhubung ke tombol (%s)" - -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:1 -msgid "Keybindings" -msgstr "Kaitan tombol" - -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:2 -msgid "Keybindings plugin" -msgstr "Plugin kaitan kunci" - -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 -msgid "Keyboard plugin" -msgstr "Plugin papan tik" - -#: ../plugins/keyboard/gsd-keyboard-xkb.c:87 -#, c-format -msgid "" -"Error activating XKB configuration.\n" -"There can be various reasons for that.\n" -"\n" -"If you report this situation as a bug, include the results of\n" -" ‱ %s\n" -" ‱ %s\n" -" ‱ %s\n" -" ‱ %s" -msgstr "" -"Galat saat mengaktifkan konfigurasi XKB.\n" -"Ada berbagai alasan.\n" -"\n" -"Bila Anda melaporkan situasi ini, sertakan hasil dari\n" -" ‱ %s\n" -" ‱ %s\n" -" ‱ %s\n" -" ‱ %s" - -#: ../plugins/keyboard/gsd-keyboard-xkb.c:243 -msgid "_Layouts" -msgstr "Tata _Letak" - -#: ../plugins/keyboard/gsd-keyboard-xkb.c:249 -msgid "Show _Keyboard Layout..." -msgstr "Tampilkan Tata Leta_k Papan Tik..." - -#. translators note: -#. * This is the name of the gnome-control-center "region" panel -#: ../plugins/keyboard/gsd-keyboard-xkb.c:256 -msgid "Region and Language Settings" -msgstr "Pengaturan Bahasa dan Wilayah " +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +msgid "Authentication is required to modify the laptop brightness" +msgstr "Perlu otentikasi untuk mengubah kecerahan laptop" -#: ../plugins/media-keys/gsd-media-keys-manager.c:232 -msgid "Could not get default terminal. Verify that your default terminal command is set and points to a valid application." -msgstr "Tak bisa mendapat terminal bawaan. Pastikan bahwa perintah terminal baku Anda telah ditata dan mengacu ke aplikasi yang valid." +#: ../plugins/power/power.gnome-settings-plugin.in.h:2 +msgid "Power plugin" +msgstr "Plugin daya" -#: ../plugins/media-keys/gsd-media-keys-manager.c:272 -#, c-format -msgid "" -"Couldn't execute command: %s\n" -"Verify that this is a valid command." -msgstr "" -"Perintah tidak dapat dijalankan: %s\n" -"Periksa apakah perintah tersebut tersedia atau tidak." +#. Translators: We are configuring new printer +#: ../plugins/print-notifications/gsd-printer.c:908 +msgid "Configuring new printer" +msgstr "Mengonfigurasi pencetak baru" -#. translators: -#. * The device has been disabled -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1091 -msgid "Disabled" -msgstr "Tidak aktif" +#. Translators: Just wait +#: ../plugins/print-notifications/gsd-printer.c:910 +msgid "Please wait..." +msgstr "Mohon tunggu..." -#. translators: -#. * The number of sound outputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1098 -#, c-format -msgid "%u Output" -msgid_plural "%u Outputs" -msgstr[0] "%u Keluaran" +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:937 +msgid "Missing printer driver" +msgstr "Kehilangan pengandar pencetak" -#. translators: -#. * The number of sound inputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1108 +#. Translators: We have no driver installed for the device +#: ../plugins/print-notifications/gsd-printer.c:946 #, c-format -msgid "%u Input" -msgid_plural "%u Inputs" -msgstr[0] "%u Masukan" - -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1406 -msgid "System Sounds" -msgstr "Suara System" - -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 -msgid "Media keys" -msgstr "Tombol media" - -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 -msgid "Media keys plugin" -msgstr "Plugin tombol media" - -#: ../plugins/mouse/gsd-mouse-manager.c:818 -msgid "Could not enable mouse accessibility features" -msgstr "Tidak dapat mengaktifkan fitur aksesibilitas tetikus" - -#: ../plugins/mouse/gsd-mouse-manager.c:820 -msgid "Mouse accessibility requires Mousetweaks to be installed on your system." -msgstr "Aksesibilitas tetikus memerlukan terpasangnya Mousetweaks pada sistem Anda." - -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 -msgid "Mouse plugin" -msgstr "Plugin tetikus" +msgid "No printer driver for %s." +msgstr "Tidak ada pengandar untuk pencetak %s." -#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 -msgid "Print-notifications" -msgstr "Pemberitahuan cetak" +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:951 +msgid "No driver for this printer." +msgstr "Tidak ada pengandar untuk pencetak ini." -#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:2 -msgid "Print-notifications plugin" -msgstr "Plugin pemberitahuan cetak" +#: ../plugins/print-notifications/gsd-printer.c:1049 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:778 +msgid "Printers" +msgstr "Pencetak" #. Translators: The printer is low on toner (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:178 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 msgid "Toner low" msgstr "Toner tinggal sedikit" #. Translators: The printer has no toner left (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:180 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:299 msgid "Toner empty" msgstr "Toner habis" #. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:182 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:301 msgid "Not connected?" msgstr "Tidak terhubung?" #. Translators: One or more covers on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:184 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:303 msgid "Cover open" msgstr "Kover terbuka" -#. Trnaslators: A filter or backend is not installed (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:186 +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 msgid "Printer configuration error" msgstr "Galat konfigurasi pencetak" #. Translators: One or more doors on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:188 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:307 msgid "Door open" msgstr "Pintu terbuka" #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:190 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 msgid "Marker supply low" msgstr "Tinta sedikit" #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:192 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 msgid "Out of a marker supply" msgstr "Kehabisan tinta" #. Translators: At least one input tray is low on media (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:194 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 msgid "Paper low" msgstr "Kertas tinggal sedikit" #. Translators: At least one input tray is empty (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:196 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:315 msgid "Out of paper" msgstr "Kehabisan kertas" #. Translators: The printer is offline (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:198 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:317 msgid "Printer off-line" msgstr "Pencetak luring" #. Translators: The printer has detected an error (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:200 +#. Translators: This is a title of an error notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:319 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:721 msgid "Printer error" msgstr "Galat pencetak" #. Translators: The printer is low on toner (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:204 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:323 #, c-format msgid "Printer '%s' is low on toner." msgstr "Toner pencetak '%s' tinggal sedikit." #. Translators: The printer has no toner left (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:206 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:325 #, c-format msgid "Printer '%s' has no toner left." msgstr "Toner pencetak '%s' telah habis." #. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:208 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:327 #, c-format msgid "Printer '%s' may not be connected." msgstr "Pencetak '%s' mungkin tidak terhubung." #. Translators: One or more covers on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:210 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:329 #, c-format msgid "The cover is open on printer '%s'." msgstr "Pencetak '%s' kovernya terbuka." -#. Trnaslators: A filter or backend is not installed (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:212 +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:331 #, c-format msgid "There is a missing print filter for printer '%s'." msgstr "Kehilangan penyaring untuk pencetak '%s'." #. Translators: One or more doors on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:215 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 #, c-format msgid "The door is open on printer '%s'." msgstr "Pencetak '%s' pintunya terbuka." #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:217 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 #, c-format msgid "Printer '%s' is low on a marker supply." msgstr "Pencetak '%s' kekurangan tinta." #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:219 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 #, c-format msgid "Printer '%s' is out of a marker supply." msgstr "Pencetak '%s' kehabisan tinta." #. Translators: At least one input tray is low on media (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 #, c-format msgid "Printer '%s' is low on paper." msgstr "Kertas pencetak '%s' tinggal sedikit." #. Translators: At least one input tray is empty (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:223 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 #, c-format msgid "Printer '%s' is out of paper." msgstr "Pencetak '%s' kehabisan kertas." #. Translators: The printer is offline (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:225 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:344 #, c-format msgid "Printer '%s' is currently off-line." msgstr "Pencetak '%s' sedang luring." #. Translators: The printer has detected an error (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:227 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:346 #, c-format msgid "There is a problem on printer '%s'." msgstr "Terjadi masalah pada pencetak '%s'." -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:423 msgid "Printer added" msgstr "Pencetak ditambahkan" -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:431 msgid "Printer removed" msgstr "Pencetak dihapus" #. Translators: A print job has been stopped -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:322 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:448 msgid "Printing stopped" msgstr "Mencetak dihentikan" #. Translators: "print-job xy" on a printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:324 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:330 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:356 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:371 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:450 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:456 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:462 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:468 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:480 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:500 #, c-format msgid "\"%s\" on %s" msgstr "\"%s\" pada %s" #. Translators: A print job has been canceled -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:328 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:454 msgid "Printing canceled" msgstr "Mencetak dibatalkan" #. Translators: A print job has been aborted -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:460 msgid "Printing aborted" msgstr "Mencetak digagalkan" #. Translators: A print job has been completed -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:466 msgid "Printing completed" msgstr "Mencetak selesai" #. Translators: A job is printing -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:354 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:369 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:478 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:498 msgid "Printing" msgstr "Mencetak" -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:455 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:477 -#: ../plugins/print-notifications/gsd-printer.c:203 -msgid "Printers" -msgstr "Pencetak" - -#. Translators: We are configuring new printer -#: ../plugins/print-notifications/gsd-printer.c:91 -msgid "Configuring new printer" -msgstr "Mengonfigurasi pencetak baru" - -#. Translators: Just wait -#: ../plugins/print-notifications/gsd-printer.c:93 -msgid "Please wait..." -msgstr "Mohon tunggu..." - -#. name is a URI, no queue was generated, because no suitable -#. * driver was found -#. -#. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:114 -msgid "Missing printer driver" -msgstr "Kehilangan pengandar pencetak" - -#. Translators: We have no driver installed for the device -#: ../plugins/print-notifications/gsd-printer.c:123 -#, c-format -msgid "No printer driver for %s." -msgstr "Tidak ada pengandar untuk pencetak %s." - -#. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:128 -msgid "No driver for this printer." -msgstr "Tidak ada pengandar untuk pencetak ini." - -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 -msgid "Set up screen size and rotation settings" -msgstr "Atur tatanan ukuran dan rotasi layar" - -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 -msgid "XRandR" -msgstr "XRandR" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:418 -msgid "Could not switch the monitor configuration" -msgstr "Tak bisa menukar konfigurasi monitor" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:442 -msgid "Could not restore the display's configuration" -msgstr "Tidak dapat mengembalikan konfigurasi tampilan" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:467 -msgid "Could not restore the display's configuration from a backup" -msgstr "Tak bisa mengembalikan konfigurasi tampilan dari suatu cadangan" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:488 -#, c-format -msgid "The display will be reset to its previous configuration in %d second" -msgid_plural "The display will be reset to its previous configuration in %d seconds" -msgstr[0] "Tampilan akan dikembalikan ke konfigurasi sebelumnya dalam %d detik" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:537 -msgid "Does the display look OK?" -msgstr "Apakah tampilannya terlihat baik?" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:544 -msgid "_Restore Previous Configuration" -msgstr "Kembalikan Konfigu_rasi Sebelumnya" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:545 -msgid "_Keep This Configuration" -msgstr "Pertahankan _Konfigurasi Ini" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:626 -msgid "The selected configuration for displays could not be applied" -msgstr "Konfigurasi yang dipilih bagi tampilan tak dapat diterapkan" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1186 -#, c-format -msgid "Could not refresh the screen information: %s" -msgstr "Tak bisa menyegarkan informasi layar: %s" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1190 -msgid "Trying to switch the monitor configuration anyway." -msgstr "Tetap mencoba menukar konfigurasi monitor." - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1741 -msgid "Could not apply the stored configuration for monitors" -msgstr "Tak bisa menerapkan konfigurasi tersimpan bagi monitor" - -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 -msgid "Manage X Settings" -msgstr "Kelola Tatanan X" +#. Translators: This is a title of a report notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:715 +#| msgid "Printer error" +msgid "Printer report" +msgstr "Laporan pencetak" + +#. Translators: This is a title of a warning notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:718 +#| msgid "Printing" +msgid "Printer warning" +msgstr "Peringatan pencetak" + +#. Translators: "Printer 'MyPrinterName': 'Description of the report/warning/error from a PPD file'." +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:728 +#, c-format +#| msgid "Printer '%s' is low on toner." +msgid "Printer '%s': '%s'." +msgstr "Pencetak '%s': '%s'." -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 -msgid "X Settings" -msgstr "Pengaturan X" +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 +msgid "Print-notifications" +msgstr "Pemberitahuan cetak" -#: ../plugins/smartcard/gsd-smartcard-manager.c:187 -msgid "Module Path" -msgstr "Lokasi Modul" - -#: ../plugins/smartcard/gsd-smartcard-manager.c:188 -msgid "path to smartcard PKCS #11 driver" -msgstr "path ke penggerak PKCS #11 smartcard" +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:2 +msgid "Print-notifications plugin" +msgstr "Plugin pemberitahuan cetak" -#: ../plugins/smartcard/gsd-smartcard-manager.c:528 +#: ../plugins/smartcard/gsd-smartcard-manager.c:523 msgid "received error or hang up from event source" msgstr "menerima galat atau menggantung dari sumber kejadian" -#: ../plugins/smartcard/gsd-smartcard-manager.c:662 +#: ../plugins/smartcard/gsd-smartcard-manager.c:657 #, c-format msgid "NSS security system could not be initialized" msgstr "sistem keamanan NSS tak dapat diinisialisasi" -#: ../plugins/smartcard/gsd-smartcard-manager.c:790 +#: ../plugins/smartcard/gsd-smartcard-manager.c:785 #, c-format msgid "no suitable smartcard driver could be found" msgstr "tak ditemukan penggerak smartcard yang cocok" -#: ../plugins/smartcard/gsd-smartcard-manager.c:804 +#: ../plugins/smartcard/gsd-smartcard-manager.c:799 #, c-format msgid "smartcard driver '%s' could not be loaded" msgstr "penggerak smartcard '%s' tak dapat dimuat" -#: ../plugins/smartcard/gsd-smartcard-manager.c:876 +#: ../plugins/smartcard/gsd-smartcard-manager.c:871 #, c-format msgid "could not watch for incoming card events - %s" msgstr "tak bisa memantau kejadian kartu masuk - %s" -#: ../plugins/smartcard/gsd-smartcard-manager.c:1274 +#: ../plugins/smartcard/gsd-smartcard-manager.c:1269 #, c-format msgid "encountered unexpected error while waiting for smartcard events" msgstr "menjumpai galat yang tak diharapkan ketika menunggu kejadian smartcard" -#: ../plugins/smartcard/gsd-smartcard.c:158 -msgid "Slot ID" -msgstr "ID Slot" - -#: ../plugins/smartcard/gsd-smartcard.c:159 -msgid "The slot the card is in" -msgstr "Slot di mana kartu tertancap" - -#: ../plugins/smartcard/gsd-smartcard.c:165 -msgid "Slot Series" -msgstr "Seri Slot" - -#: ../plugins/smartcard/gsd-smartcard.c:166 -msgid "per-slot card identifier" -msgstr "identifier kartu per slot" - -#: ../plugins/smartcard/gsd-smartcard.c:172 -#: ../plugins/smartcard/gsd-smartcard.c:173 -msgid "name" -msgstr "nama" - -#: ../plugins/smartcard/gsd-smartcard.c:177 -msgid "Module" -msgstr "Modul" - -#: ../plugins/smartcard/gsd-smartcard.c:178 -msgid "smartcard driver" -msgstr "pengandar kartu cerdas" - -#: ../plugins/datetime/org.gnome.settingsdaemon.datetimemechanism.policy.in.h:1 -msgid "Change system time and date settings" -msgstr "Mengubah waktu dan tanggal sistem" - -#: ../plugins/datetime/org.gnome.settingsdaemon.datetimemechanism.policy.in.h:2 -msgid "To change time or date settings, you need to authenticate." -msgstr "Untuk mengubah tatanan waktu atau tanggal, Anda perlu diotentikasi." +#. TRANSLATORS: we need to restart so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:240 +msgid "You will need to restart this computer before the hardware will work correctly." +msgstr "Anda harus menyalakan ulang komputer ini sebelum perangkat kerasnya dapat bekerja dengan baik." -#. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 -#: ../plugins/updates/gsd-updates-manager.c:194 -msgid "Distribution upgrades available" -msgstr "Tersedia peningkatan versi distribusi" +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:243 +#: ../plugins/updates/gsd-updates-firmware.c:268 +#: ../plugins/updates/gsd-updates-firmware.c:293 +msgid "Additional software was installed" +msgstr "Perangkat lunak tambahan telah dipasang" -#: ../plugins/updates/gsd-updates-manager.c:196 -#: ../plugins/updates/gsd-updates-manager.c:319 -#: ../plugins/updates/gsd-updates-manager.c:376 -#: ../plugins/updates/gsd-updates-manager.c:431 -#: ../plugins/updates/gsd-updates-manager.c:562 -#: ../plugins/updates/gsd-updates-manager.c:649 #: ../plugins/updates/gsd-updates-firmware.c:244 #: ../plugins/updates/gsd-updates-firmware.c:269 #: ../plugins/updates/gsd-updates-firmware.c:294 -#: ../plugins/updates/gsd-updates-firmware.c:584 +#: ../plugins/updates/gsd-updates-firmware.c:583 +#: ../plugins/updates/gsd-updates-manager.c:203 +#: ../plugins/updates/gsd-updates-manager.c:328 +#: ../plugins/updates/gsd-updates-manager.c:387 +#: ../plugins/updates/gsd-updates-manager.c:443 +#: ../plugins/updates/gsd-updates-manager.c:575 +#: ../plugins/updates/gsd-updates-manager.c:663 msgid "Software Updates" msgstr "Pemutakhiran Perangkat Lunak" +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:265 +msgid "You will need to remove and then reinsert the hardware before it will work correctly." +msgstr "Anda harus mencabut lalu memasang perangkat lunaknya kembali sebelum dapat bekerja dengan baik." + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:290 +msgid "Your hardware has been set up and is now ready to use." +msgstr "Perangkat keras Anda telah disetel dan kini siap digunakan." + +#. TRANSLATORS: we need another package to keep udev quiet +#: ../plugins/updates/gsd-updates-firmware.c:568 +msgid "Additional firmware is required to make hardware in this computer function correctly." +msgstr "Diperlukan firmware tambahan untuk membuat perangkat keras di komputer ini dapat bekerja dengan baik." + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:582 +msgid "Additional firmware required" +msgstr "Diperlukan firmware tambahan" + +#. TRANSLATORS: button label +#: ../plugins/updates/gsd-updates-firmware.c:588 +msgid "Install firmware" +msgstr "Pasang firmware" + +#. TRANSLATORS: we should ignore this device and not ask anymore +#: ../plugins/updates/gsd-updates-firmware.c:591 +msgid "Ignore devices" +msgstr "Abaikan perangkat" + +#. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 +#: ../plugins/updates/gsd-updates-manager.c:199 +msgid "Distribution upgrades available" +msgstr "Tersedia peningkatan versi distribusi" + #. TRANSLATORS: provides more information about the upgrade -#: ../plugins/updates/gsd-updates-manager.c:201 +#: ../plugins/updates/gsd-updates-manager.c:208 msgid "More information" msgstr "Informasi lebih lanjut" #. TRANSLATORS: title in the libnotify popup -#: ../plugins/updates/gsd-updates-manager.c:304 -#: ../plugins/updates/gsd-updates-manager.c:361 +#: ../plugins/updates/gsd-updates-manager.c:311 +#: ../plugins/updates/gsd-updates-manager.c:370 msgid "Update" msgid_plural "Updates" msgstr[0] "Perbarui" #. TRANSLATORS: message when there are security updates -#: ../plugins/updates/gsd-updates-manager.c:307 +#: ../plugins/updates/gsd-updates-manager.c:314 msgid "An important software update is available" msgid_plural "Important software updates are available" msgstr[0] "Tersedia pemutakhiran perangkat lunak yang penting" #. TRANSLATORS: button: open the update viewer to install updates -#: ../plugins/updates/gsd-updates-manager.c:324 -#: ../plugins/updates/gsd-updates-manager.c:381 +#: ../plugins/updates/gsd-updates-manager.c:333 +#: ../plugins/updates/gsd-updates-manager.c:392 msgid "Install updates" msgstr "Pasang pemutakhiran" #. TRANSLATORS: message when there are non-security updates -#: ../plugins/updates/gsd-updates-manager.c:364 +#: ../plugins/updates/gsd-updates-manager.c:373 msgid "A software update is available." msgid_plural "Software updates are available." msgstr[0] "Pemutakhiran perangkat lunak telah tersedia." #. TRANSLATORS: policy says update, but we are on battery and so prompt -#: ../plugins/updates/gsd-updates-manager.c:427 +#: ../plugins/updates/gsd-updates-manager.c:438 msgid "Automatic updates are not being installed as the computer is running on battery power" msgstr "Pemutakhiran otomatis belum dipasang karena komputer sedang berjalan memakai tenaga baterai" #. TRANSLATORS: informs user will not install by default -#: ../plugins/updates/gsd-updates-manager.c:429 +#: ../plugins/updates/gsd-updates-manager.c:440 msgid "Updates not installed" msgstr "Pemutakhiran tak dipasang" #. TRANSLATORS: to hell with my battery life, just do it -#: ../plugins/updates/gsd-updates-manager.c:436 +#: ../plugins/updates/gsd-updates-manager.c:448 msgid "Install the updates anyway" msgstr "Pasang saja pemutakhiran" -#: ../plugins/updates/gsd-updates-manager.c:452 +#: ../plugins/updates/gsd-updates-manager.c:464 msgid "No restart is required." msgstr "Tidak harus menyalakan ulang komputer." -#: ../plugins/updates/gsd-updates-manager.c:455 +#: ../plugins/updates/gsd-updates-manager.c:467 msgid "A restart is required." msgstr "Harus menyalakan ulang komputer." -#: ../plugins/updates/gsd-updates-manager.c:458 +#: ../plugins/updates/gsd-updates-manager.c:470 msgid "You need to log out and log back in." msgstr "Anda harus log keluar untuk kemudian log masuk kembali." -#: ../plugins/updates/gsd-updates-manager.c:461 +#: ../plugins/updates/gsd-updates-manager.c:473 msgid "You need to restart the application." msgstr "Anda harus menjalankan ulang aplikasi." -#: ../plugins/updates/gsd-updates-manager.c:464 +#: ../plugins/updates/gsd-updates-manager.c:476 msgid "You need to log out and log back in to remain secure." msgstr "Anda harus log keluar untuk kemudian log masuk kembali agar tetap aman." -#: ../plugins/updates/gsd-updates-manager.c:467 +#: ../plugins/updates/gsd-updates-manager.c:479 msgid "A restart is required to remain secure." msgstr "Harus menyalakan ulang komputer agar tetap aman." #. TRANSLATORS: we did the update, but some updates were skipped and not applied -#: ../plugins/updates/gsd-updates-manager.c:528 +#: ../plugins/updates/gsd-updates-manager.c:540 msgid "One package was skipped:" msgid_plural "Some packages were skipped:" msgstr[0] "Sejumlah paket dilewati:" #. TRANSLATORS: title: system update completed all okay -#: ../plugins/updates/gsd-updates-manager.c:560 +#: ../plugins/updates/gsd-updates-manager.c:572 msgid "The system update has completed" msgstr "Pemutakhiran sistem telah selesai" #. TRANSLATORS: restart computer as system packages need update -#: ../plugins/updates/gsd-updates-manager.c:568 +#: ../plugins/updates/gsd-updates-manager.c:581 msgid "Restart computer now" msgstr "Nyalakan ulang komputer sekarang" #. TRANSLATORS: the updates mechanism -#: ../plugins/updates/gsd-updates-manager.c:639 +#: ../plugins/updates/gsd-updates-manager.c:651 msgid "Updates" msgstr "Pemutakhiran" #. TRANSLATORS: we failed to get the updates multiple times, #. * and now we need to inform the user that something might be wrong -#: ../plugins/updates/gsd-updates-manager.c:643 +#: ../plugins/updates/gsd-updates-manager.c:655 msgid "Unable to access software updates" msgstr "Tak bisa mengakses pemutakhiran perangkat lunak" #. TRANSLATORS: try again, this time launching the update viewer -#: ../plugins/updates/gsd-updates-manager.c:646 +#: ../plugins/updates/gsd-updates-manager.c:658 msgid "Try again" msgstr "Coba lagi" #. TRANSLATORS: the reason why we've inhibited it -#: ../plugins/updates/gsd-updates-manager.c:1082 +#: ../plugins/updates/gsd-updates-manager.c:1096 msgid "A transaction that cannot be interrupted is running" msgstr "Transaksi yang tidak dapat diputus sedang berjalan" -#. TRANSLATORS: we need to restart so the new hardware can re-request the firmware -#: ../plugins/updates/gsd-updates-firmware.c:240 -msgid "You will need to restart this computer before the hardware will work correctly." -msgstr "Anda harus menyalakan ulang komputer ini sebelum perangkat kerasnya dapat bekerja dengan baik." +#: ../plugins/wacom/gsd-wacom-device.c:909 +#, c-format +msgid "Left Ring Mode #%d" +msgstr "Mode Ring Kiri #%d" -#. TRANSLATORS: title of libnotify bubble -#: ../plugins/updates/gsd-updates-firmware.c:243 -#: ../plugins/updates/gsd-updates-firmware.c:268 -#: ../plugins/updates/gsd-updates-firmware.c:293 -msgid "Additional software was installed" -msgstr "Perangkat lunak tambahan telah dipasang" +#: ../plugins/wacom/gsd-wacom-device.c:916 +#, c-format +msgid "Right Ring Mode #%d" +msgstr "Mode Ring Kanan #%d" -#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware -#: ../plugins/updates/gsd-updates-firmware.c:265 -msgid "You will need to remove and then reinsert the hardware before it will work correctly." -msgstr "Anda harus mencabut lalu memasang perangkat lunaknya kembali sebelum dapat bekerja dengan baik." +#: ../plugins/wacom/gsd-wacom-device.c:944 +#, c-format +msgid "Left Touchstrip Mode #%d" +msgstr "Mode Touchstrip Kiri #%d" -#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware -#: ../plugins/updates/gsd-updates-firmware.c:290 -msgid "Your hardware has been set up and is now ready to use." -msgstr "Perangkat keras Anda telah disetel dan kini siap digunakan." +#: ../plugins/wacom/gsd-wacom-device.c:951 +#, c-format +msgid "Right Touchstrip Mode #%d" +msgstr "Mode Touchstrip Kanan #%d" -#. TRANSLATORS: we need another package to keep udev quiet -#: ../plugins/updates/gsd-updates-firmware.c:569 -msgid "Additional firmware is required to make hardware in this computer function correctly." -msgstr "Diperlukan firmware tambahan untuk membuat perangkat keras di komputer ini dapat bekerja dengan baik." +#: ../plugins/wacom/gsd-wacom-device.c:966 +#, c-format +msgid "Left Touchring Mode Switch" +msgstr "Penukaran Mode Touchring Kiri" -#. TRANSLATORS: title of libnotify bubble -#: ../plugins/updates/gsd-updates-firmware.c:583 -msgid "Additional firmware required" -msgstr "Diperlukan firmware tambahan" +#: ../plugins/wacom/gsd-wacom-device.c:968 +#, c-format +msgid "Right Touchring Mode Switch" +msgstr "Penukaran Mode Touchring Kanan" -#. TRANSLATORS: button label -#: ../plugins/updates/gsd-updates-firmware.c:589 -msgid "Install firmware" -msgstr "Pasang firmware" +#: ../plugins/wacom/gsd-wacom-device.c:971 +#, c-format +msgid "Left Touchstrip Mode Switch" +msgstr "Penukaran Mode Touchstrip Kiri" -#. TRANSLATORS: we should ignore this device and not ask anymore -#: ../plugins/updates/gsd-updates-firmware.c:592 -msgid "Ignore devices" -msgstr "Abaikan perangkat" +#: ../plugins/wacom/gsd-wacom-device.c:973 +#, c-format +msgid "Right Touchstrip Mode Switch" +msgstr "Penukaran Mode Touchstrip Kanan" + +#: ../plugins/wacom/gsd-wacom-device.c:978 +#, c-format +msgid "Mode Switch #%d" +msgstr "Penukaran Mode #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1050 +#, c-format +msgid "Left Button #%d" +msgstr "Tombol Kiri #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1053 +#, c-format +msgid "Right Button #%d" +msgstr "Tombol Kanan #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1056 +#, c-format +msgid "Top Button #%d" +msgstr "Tombol Puncak #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1059 +#, c-format +msgid "Bottom Button #%d" +msgstr "Tombol Dasar #%d" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:5 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "Ubah LED penyinaran bagi suatu tablet Wacom" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +#| msgid "Authentication is required to modify the laptop brightness" +msgid "Authentication is required to modify the lit LED for a Wacom tablet" +msgstr "Perlu otentikasi untuk mengubah LED penerangan bagi suatu tablet Wacom" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:500 +msgid "Could not switch the monitor configuration" +msgstr "Tak bisa menukar konfigurasi monitor" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:524 +msgid "Could not restore the display's configuration" +msgstr "Tidak dapat mengembalikan konfigurasi tampilan" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:549 +msgid "Could not restore the display's configuration from a backup" +msgstr "Tak bisa mengembalikan konfigurasi tampilan dari suatu cadangan" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:570 +#, c-format +msgid "The display will be reset to its previous configuration in %d second" +msgid_plural "The display will be reset to its previous configuration in %d seconds" +msgstr[0] "Tampilan akan dikembalikan ke konfigurasi sebelumnya dalam %d detik" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:619 +msgid "Does the display look OK?" +msgstr "Apakah tampilannya terlihat baik?" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:626 +msgid "_Restore Previous Configuration" +msgstr "Kembalikan Konfigu_rasi Sebelumnya" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:627 +msgid "_Keep This Configuration" +msgstr "Pertahankan _Konfigurasi Ini" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:708 +msgid "The selected configuration for displays could not be applied" +msgstr "Konfigurasi yang dipilih bagi tampilan tak dapat diterapkan" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:1358 +#, c-format +msgid "Could not refresh the screen information: %s" +msgstr "Tak bisa menyegarkan informasi layar: %s" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:1362 +msgid "Trying to switch the monitor configuration anyway." +msgstr "Tetap mencoba menukar konfigurasi monitor." + +#: ../plugins/xrandr/gsd-xrandr-manager.c:1793 +msgid "Could not apply the stored configuration for monitors" +msgstr "Tak bisa menerapkan konfigurasi tersimpan bagi monitor" + +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 +msgid "XRandR" +msgstr "XRandR" + +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 +msgid "Set up screen size and rotation settings" +msgstr "Atur tatanan ukuran dan rotasi layar" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 +msgid "X Settings" +msgstr "Pengaturan X" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 +msgid "Manage X Settings" +msgstr "Kelola Tatanan X" diff -Nru gnome-settings-daemon-3.4.0/po/it.po gnome-settings-daemon-3.4.1/po/it.po --- gnome-settings-daemon-3.4.0/po/it.po 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/it.po 2012-04-12 09:54:14.000000000 +0000 @@ -1,6 +1,6 @@ # Italian translation for gnome-settings-daemon # This file is relased with the same licence of gnome-settings-daemon package -# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. # Derivato dalla traduzione di gnome-control-center # Christopher R. Gabriel, 2001, 2002. # Alessio DessĂŹ , 2003, 2004, 2005, 2006, 2007. @@ -10,97 +10,74 @@ # low --> quasi scarica # critically low --> scarica # Luca Ferretti , 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012. +# Milo Casagrande , 2012. # msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon 2.9x\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" -"settings-daemon&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2012-02-16 15:01+0000\n" -"PO-Revision-Date: 2012-02-17 14:57+0100\n" -"Last-Translator: Luca Ferretti \n" -"Language-Team: Italiano \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-03 16:20+0000\n" +"PO-Revision-Date: 2012-04-07 18:12+0200\n" +"Last-Translator: Milo Casagrande \n" +"Language-Team: Italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" +"Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-DamnedLies-Scope: partial\n" +"X-Launchpad-Export-Date: 2012-04-07 15:32+0000\n" +"X-Generator: Launchpad (build 15060)\n" #: ../data/gnome-settings-daemon.desktop.in.in.h:1 msgid "GNOME Settings Daemon" msgstr "Demone di impostazioni per GNOME" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 -msgid "Smartcard removal action" -msgstr "Azione rimozione smartcard" +msgid "Command to be run when a device is added or removed." +msgstr "Comando da eseguire quando viene aggiunto o rimosso un dispositivo" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 -msgid "" -"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " -"action will get performed when the smartcard used for log in is removed." -msgstr "" -"Impostare questa chiave a \"none\", \"lock-screen\" oppure \"force-logout\". " -"L'azione indicata viene eseguita quando si rimuove la smartcard usata per " -"accedere." +msgid "Device hotplug custom command" +msgstr "Comando personalizzato per hotplug dispositivi" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 msgid "Disable touchpad while typing" msgstr "Disabilita il touchpad durante la digitazione" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 -msgid "" -"Set this to TRUE if you have problems with accidentally hitting the touchpad " -"while typing." -msgstr "" -"Impostare a VERO se si hanno problemi con pressioni accidentali del touchpad " -"mentre si digita." +msgid "Distance before a drag is started." +msgstr "Distanza prima di avviare un trascinamento." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 -msgid "Enable horizontal scrolling" -msgstr "Abilita lo scorrimento orizzontale" +msgid "Double click time" +msgstr "Tempo doppio-clic" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 -msgid "" -"Set this to TRUE to allow horizontal scrolling by the same method selected " -"with the scroll_method key." -msgstr "" -"Impostare a VERO per consentire lo scorrimento orizzontale per mezzo dello " -"stesso metodo impostato con la chiave scroll_method." +msgid "Drag threshold" +msgstr "Soglia trascinamento" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 -msgid "Select the touchpad scroll method" -msgstr "Seleziona il metodo di scorrimento del touchpad" +msgid "Enable horizontal scrolling" +msgstr "Abilita lo scorrimento orizzontale" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 -msgid "" -"Select the touchpad scroll method. Supported values are: \"disabled\", " -"\"edge-scrolling\", \"two-finger-scrolling\"." -msgstr "" -"Seleziona il metodo di scorrimento del touchpad. Valori ammessi sono: " -"\"disabled\" (disabilitato), \"edge-scrolling\" (sul bordo), \"two-finger-" -"scrolling\" (con due dita)" - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 msgid "Enable mouse clicks with touchpad" msgstr "Abilita clic del mouse col touchpad" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 +msgid "Enable touchpad" +msgstr "Abilita il touchpad" + #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 msgid "" -"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." +"Enables middle mouse button emulation through simultaneous left and right " +"button click." msgstr "" -"Impostare a VERO per essere in grado di inviare clic del mouse facendo tap " -"sul touchpad." +"Abilita l'emulazione del pulsante centrale del mouse attraverso la pressione " +"simultanea dei pulsanti destro e sinistro." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 -msgid "Enable touchpad" -msgstr "Abilita il touchpad" - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 -msgid "Set this to TRUE to enable all touchpads." -msgstr "Impostare a VERO per abilitare tutti i touchpad." - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 msgid "" "Highlights the current location of the pointer when the Control key is " "pressed and released." @@ -108,47 +85,72 @@ "Evidenzia la posizione attuale del puntatore quando viene premuto e poi " "rilasciato il tasto Control." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 +msgid "Length of a double click in milliseconds." +msgstr "Durata di un doppio clic in millisecondi." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 +msgid "Middle button emulation" +msgstr "Emulazione pulsante centrale" + #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 -msgid "Double click time" -msgstr "Tempo doppio-clic" +msgid "Select the touchpad scroll method" +msgstr "Seleziona il metodo di scorrimento del touchpad" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:15 -msgid "Length of a double click in milliseconds." -msgstr "Durata di un doppio clic in millisecondi." +msgid "" +"Select the touchpad scroll method. Supported values are: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "" +"Seleziona il metodo di scorrimento del touchpad. Valori ammessi sono: " +"\"disabled\" (disabilitato), \"edge-scrolling\" (sul bordo), \"two-finger-" +"scrolling\" (con due dita)" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:16 -msgid "Drag threshold" -msgstr "Soglia trascinamento" +msgid "" +"Set this to TRUE if you have problems with accidentally hitting the touchpad " +"while typing." +msgstr "" +"Impostare a VERO se si hanno problemi con pressioni accidentali del touchpad " +"mentre si digita." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:17 -msgid "Distance before a drag is started." -msgstr "Distanza prima di avviare un trascinamento." +msgid "" +"Set this to TRUE to allow horizontal scrolling by the same method selected " +"with the scroll_method key." +msgstr "" +"Impostare a VERO per consentire lo scorrimento orizzontale per mezzo dello " +"stesso metodo impostato con la chiave scroll_method." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 -msgid "Middle button emulation" -msgstr "Emulazione pulsante centrale" - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 msgid "" -"Enables middle mouse button emulation through simultaneous left and right " -"button click." +"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." msgstr "" -"Abilita l'emulazione del pulsante centrale del mouse attraverso la pressione " -"simultanea dei pulsanti destro e sinistro." +"Impostare a VERO per essere in grado di inviare clic del mouse facendo tap " +"sul touchpad." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 +msgid "Set this to TRUE to enable all touchpads." +msgstr "Impostare a VERO per abilitare tutti i touchpad." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 -msgid "Whether the tablet's orientation is locked, or rotated automatically." +msgid "" +"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " +"action will get performed when the smartcard used for log in is removed." msgstr "" -"Indica se l'orientamento del tablet Ăš bloccato o se Ăš ruotato " -"automaticamente." +"Impostare questa chiave a \"none\", \"lock-screen\" oppure \"force-logout\". " +"L'azione indicata viene eseguita quando si rimuove la smartcard usata per " +"accedere." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 -msgid "Device hotplug custom command" -msgstr "Comando personalizzato per hotplug dispositivi" +msgid "Smartcard removal action" +msgstr "Azione rimozione smartcard" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 -msgid "Command to be run when a device is added or removed." -msgstr "Comando da eseguire quando viene aggiunto o rimosso un dispositivo" +msgid "Whether the tablet's orientation is locked, or rotated automatically." +msgstr "" +"Indica se l'orientamento del tablet Ăš bloccato o se Ăš ruotato " +"automaticamente." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 @@ -160,80 +162,76 @@ #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 msgid "Activation of this plugin" msgstr "Attivazione di questo plugin" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 -msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgid "" +"EDID information of monitor to map tablet to. Must be in the format [vendor, " +"product, serial]. [\"\",\"\",\"\"] disables mapping." msgstr "" -"Indica se questo plugin deve essere attivato da gnome-settings-daemon oppure " -"no" +"Informazione EDID del monitor su cui mappare la tavoletta. Deve essere nel " +"formato [vendor, prodotto, seriale]. Con [\"\",\"\",\"\"] si disabilita la " +"mappatura." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 -#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 -#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 -msgid "Priority to use for this plugin" -msgstr "PrioritĂ  da usare per questo plugin" +msgid "Enable this to move the cursor when the user touches the tablet." +msgstr "" +"Abilitare per muovere il cursore solo quando l'utente tocca la tavoletta." -# FIXME: sarebbe da unificare con quello poco dopo #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 -#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 -#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 -msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" +msgid "Enable this to only report stylus events when the tip is pressed." msgstr "" -"PrioritĂ  da usare per questo plugin nella coda di avvio di gnome-settings-" -"daemon" +"Abilitare per segnalare solo gli eventi della penna quando la punta Ăš " +"premuta." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 -msgid "Wacom stylus absolute mode" -msgstr "ModalitĂ  assoluta penna Wacom" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 msgid "Enable this to set the tablet to absolute mode." msgstr "Abilitare per impostare la tavoletta alla modalitĂ  assoluta." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 +msgid "Key combination for the custom action" +msgstr "Combinazione di tasti per l'azione personalizzata" + +# (ndt) c'Ăš da capire realmente cosa sia un "elevator button", la documentazione tecnica delle tavolette wacom non riporta nulla in merito #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 -msgid "Wacom tablet area" -msgstr "Area tavoletta Wacom" +msgid "Key combinations for an elevator custom action" +msgstr "Combinazione di tasti per un'azione personalizzata" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." -msgstr "Impostare a x1, y1 e x2, y2 dell'area usabile dallo strumento" +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 +msgid "Priority to use for this plugin" +msgstr "PrioritĂ  da usare per questo plugin" +# FIXME: sarebbe da unificare con quello poco dopo #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 -msgid "Wacom tablet rotation" -msgstr "Rotazione tavoletta Wacom" +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" +msgstr "" +"PrioritĂ  da usare per questo plugin nella coda di avvio di gnome-settings-" +"daemon" # FIXME impostare a none per .... ?? #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 @@ -245,116 +243,136 @@ "180 gradi e \"ccw\" per 90 gradi in senso antiorario." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 -msgid "Wacom touch feature" -msgstr "Funzione touch Wacom" +msgid "Set this to the logical button mapping." +msgstr "Impostare alla mappatura logica dei pulsanti." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 -msgid "Enable this to move the cursor when the user touches the tablet." +msgid "" +"Set this to the pressure value at which a stylus click event is generated." msgstr "" -"Abilitare per muovere il cursore solo quando l'utente tocca la tavoletta." +"Impostare al valore di pressione al quale Ăš generato un evento clic della " +"penna." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 -msgid "Wacom tablet PC feature" -msgstr "Funzione PC tavoletta Wacom" +msgid "" +"Set this to the pressure value at which an eraser click event is generated." +msgstr "" +"Impostare al valore di pressione al quale Ăš generato un evento clic della " +"gomma." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 -msgid "Enable this to only report stylus events when the tip is pressed." -msgstr "" -"Abilitare per segnalare solo gli eventi della penna quando la punta Ăš " -"premuta." +msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." +msgstr "Impostare a x1, y1 e x2, y2 dell'area usabile dallo strumento" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 -msgid "Wacom display mapping" -msgstr "Mappatura display Wacom" +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." +msgstr "" +"Impostare a x1, y1 e x2, y2 della curva di pressione applicata alla gomma." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 msgid "" -"EDID information of monitor to map tablet to. Must be in the format [vendor, " -"product, serial]. [\"\",\"\",\"\"] disables mapping." +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." msgstr "" -"Informazione EDID del monitor su cui mappare la tavoletta. Deve essere nel " -"formato [vendor, prodotto, seriale]. Con [\"\",\"\",\"\"] si disabilita la " -"mappatura." +"Impostare a x1, y1 e x2, y2 della curva di pressione applicata alla penna." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 -msgid "Wacom stylus pressure curve" -msgstr "Curva pressione penna Wacom" +msgid "" +"The keyboard shortcut generated when the button is pressed for custom " +"actions." +msgstr "" +"La scorciatoia da tastiera generata quando viene premuto il pulsante per le " +"azioni personalizzate." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 msgid "" -"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." +"The keyboard shortcuts generated when a touchring or touchstrip is used for " +"custom actions (up followed by down)." msgstr "" -"Impostare a x1, y1 e x2, y2 della curva di pressione applicata alla penna." +"La scorciatoia da tastiera generata quando viene usato il touch-ring o il " +"touch-strip per le azioni personalizzate (su seguito da giĂč)." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 -msgid "Wacom stylus button mapping" -msgstr "Mappatura pulsanti penna Wacom" +msgid "The type of action triggered by the button being pressed." +msgstr "Il tipo di azione attivata dalla pressione del pulsante." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 -msgid "Set this to the logical button mapping." -msgstr "Impostare alla mappatura logica dei pulsanti." +msgid "Wacom button action type" +msgstr "Tipo azione pulsante Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 -msgid "Wacom stylus pressure threshold" -msgstr "Soglia pressione penna Wacom" +msgid "Wacom display mapping" +msgstr "Mappatura display Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 -msgid "" -"Set this to the pressure value at which a stylus click event is generated." -msgstr "" -"Impostare al valore di pressione al quale Ăš generato un evento clic della " -"penna." +msgid "Wacom eraser button mapping" +msgstr "Mappatura pulsanti gomma Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 msgid "Wacom eraser pressure curve" msgstr "Curva pressione gomma Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 -msgid "" -"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." -msgstr "" -"Impostare a x1, y1 e x2, y2 della curva di pressione applicata alla gomma." +msgid "Wacom eraser pressure threshold" +msgstr "Soglia pressione gomma Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 -msgid "Wacom eraser button mapping" -msgstr "Mappatura pulsanti gomma Wacom" +msgid "Wacom stylus absolute mode" +msgstr "ModalitĂ  assoluta penna Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 -msgid "Wacom eraser pressure threshold" -msgstr "Soglia pressione gomma Wacom" +msgid "Wacom stylus button mapping" +msgstr "Mappatura pulsanti penna Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 -msgid "" -"Set this to the pressure value at which an eraser click event is generated." -msgstr "" -"Impostare al valore di pressione al quale Ăš generato un evento clic della " -"gomma." +msgid "Wacom stylus pressure curve" +msgstr "Curva pressione penna Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 -msgid "Wacom button action type" -msgstr "Tipo azione pulsante Wacom" +msgid "Wacom stylus pressure threshold" +msgstr "Soglia pressione penna Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 -msgid "The type of action triggered by the button being pressed." -msgstr "Il tipo di azione attivata dalla pressione del pulsante." +msgid "Wacom tablet PC feature" +msgstr "Funzione PC tavoletta Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 -#| msgid "Binding for the custom binding" -msgid "Key combination for the custom action" -msgstr "Combinazione di tasti per l'azione personalizzata" +msgid "Wacom tablet area" +msgstr "Area tavoletta Wacom" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 -msgid "" -"The keyboard shortcut generated when the button is pressed for custom " -"actions." +msgid "Wacom tablet rotation" +msgstr "Rotazione tavoletta Wacom" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 +msgid "Wacom touch feature" +msgstr "Funzione touch Wacom" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 +msgid "Whether this plugin would be activated by gnome-settings-daemon or not" msgstr "" -"La scorciatoia da tastiera generata quando viene premuto il pulsante per le " -"azioni personalizzate." +"Indica se questo plugin deve essere attivato da gnome-settings-daemon oppure " +"no" -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 msgid "The duration a display profile is valid" msgstr "La durata di validitĂ  di un profilo di monitor" +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 +msgid "The duration a printer profile is valid" +msgstr "La durata di validitĂ  di un profilo di stampante" + #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 msgid "" "This is the number of days after which the display color profile is " @@ -364,10 +382,6 @@ "considerato non valido." #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 -msgid "The duration a printer profile is valid" -msgstr "La durata di validitĂ  di un profilo di stampante" - -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 msgid "" "This is the number of days after which the printer color profile is " "considered invalid." @@ -375,19 +389,21 @@ "Indica il numero di giorni dopo i quali il profilo di colore della stampante " "Ăš considerato non valido." +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 +msgid "Free percentage notify threshold" +msgstr "Soglia notifica percentuale libera" + #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 -msgid "Mount paths to ignore" -msgstr "Percorsi di mount da ignorare" +msgid "Free space notify threshold" +msgstr "Soglia notifica spazio libero" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 -msgid "Specify a list of mount paths to ignore when they run low on space." -msgstr "" -"Specifica un elenco di percorsi di mount da ignorare quando lo spazio sta " -"per esaurirsi." +msgid "Minimum notify period for repeated warnings" +msgstr "Intervallo di notifica minimo per avvertimenti ripetuti" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 -msgid "Free percentage notify threshold" -msgstr "Soglia notifica percentuale libera" +msgid "Mount paths to ignore" +msgstr "Percorsi di mount da ignorare" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 msgid "" @@ -398,23 +414,21 @@ "disco in esaurimento. Se la percentuale di spazio libero scende sotto questo " "valore, viene mostrato un avvertimento." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 -msgid "Subsequent free space percentage notify threshold" -msgstr "Soglia successiva di notifica percentuale spazio libero" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 +msgid "Specify a list of mount paths to ignore when they run low on space." +msgstr "" +"Specifica un elenco di percorsi di mount da ignorare quando lo spazio sta " +"per esaurirsi." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 msgid "" -"Specify the percentage that the free disk space should reduce by before " -"issuing a subsequent warning." +"Specify a time in minutes. Subsequent warnings for a volume will not appear " +"more often than this period." msgstr "" -"Specifica di quanto lo spazio libero su disco si debba ridurre in " -"percentuale prima di emettere un ulteriore avvertimento." - -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 -msgid "Free space notify threshold" -msgstr "Soglia notifica spazio libero" +"Specifica un tempo in minuti. I successivi avvertimenti per un volume non " +"appaiono piĂč frequentemente di quanto qui indicato." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 msgid "" "Specify an amount in GB. If the amount of free space is more than this, no " "warning will be shown." @@ -422,335 +436,344 @@ "Specifica una quantitĂ  in GB. Se la quantitĂ  di spazio libero Ăš maggiore di " "questo valore, non viene mostrato alcun avvertimento." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 -msgid "Minimum notify period for repeated warnings" -msgstr "Intervallo di notifica minimo per avvertimenti ripetuti" - #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 msgid "" -"Specify a time in minutes. Subsequent warnings for a volume will not appear " -"more often than this period." +"Specify the percentage that the free disk space should reduce by before " +"issuing a subsequent warning." msgstr "" -"Specifica un tempo in minuti. I successivi avvertimenti per un volume non " -"appaiono piĂč frequentemente di quanto qui indicato." +"Specifica di quanto lo spazio libero su disco si debba ridurre in " +"percentuale prima di emettere un ulteriore avvertimento." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 +msgid "Subsequent free space percentage notify threshold" +msgstr "Soglia successiva di notifica percentuale spazio libero" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 +msgid "Binding" +msgstr "Associazione" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 -msgid "Custom keybindings" -msgstr "Associazioni tasti personalizzate" +msgid "Binding for the custom binding" +msgstr "Associazione per l'associazione personalizzata" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 -#| msgid "Custom keybindings" -msgid "List of custom keybindings" -msgstr "Elenco di associazioni tasti personalizzate" +msgid "Binding for the magnifier to zoom in" +msgstr "Associazione per aumentare lo zoom dell'ingranditore di schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 -msgid "Launch calculator" -msgstr "Lancia la calcolatrice" +msgid "Binding for the magnifier to zoom out" +msgstr "Associazione per ridurre lo zoom dell'ingranditore di schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:6 -msgid "Binding to launch the calculator." -msgstr "Associazione per lanciare la calcolatrice." +msgid "Binding to copy a screenshot of a window to clipboard." +msgstr "Associazione per copiare una schermata di una finestra negli appunti." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:7 -msgid "Launch email client" -msgstr "Lancia il client email" +msgid "Binding to copy a screenshot of an area to clipboard." +msgstr "Associazione per copiare una schermata di un'area negli appunti." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:8 -msgid "Binding to launch the email client." -msgstr "Associazione per lanciare il client email." +msgid "Binding to copy a screenshot to clipboard." +msgstr "Associazione per copiare una schermata negli appunti." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 -msgid "Eject" -msgstr "Espelli" +msgid "Binding to decrease the text size" +msgstr "Associazione per diminuire la dimensione del testo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:10 msgid "Binding to eject an optical disc." msgstr "Associazione per espellere un disco ottico." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:11 -msgid "Launch help browser" -msgstr "Lancia il visualizzatore di manuali" +msgid "Binding to increase the text size" +msgstr "Associazione per incrementare la dimensione del testo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:12 -msgid "Binding to launch the help browser." -msgstr "Associazione per lanciare il visualizzatore di manuali." +msgid "Binding to launch the calculator." +msgstr "Associazione per lanciare la calcolatrice." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:13 -msgid "Home folder" -msgstr "Cartella home" +msgid "Binding to launch the email client." +msgstr "Associazione per lanciare il client email." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:14 -msgid "Binding to open the Home folder." -msgstr "Associazione per aprire la cartella home." +msgid "Binding to launch the help browser." +msgstr "Associazione per lanciare il visualizzatore di manuali." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:15 -msgid "Launch media player" -msgstr "Lancia il riproduttore multimediale" - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 msgid "Binding to launch the media player." msgstr "Associazione per lanciare il riproduttore multimediale." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 +msgid "Binding to launch the search tool." +msgstr "Associazione per lanciare lo strumento di ricerca." + #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:17 -msgid "Next track" -msgstr "Traccia successiva" +msgid "Binding to launch the web browser." +msgstr "Associazione per lanciare il browser web." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:18 -msgid "Binding to skip to next track." -msgstr "Associazione per saltare alla traccia successiva." +msgid "Binding to lock the screen." +msgstr "Associazione per bloccare lo schermo." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:19 -msgid "Pause playback" -msgstr "Riproduzione in pausa" +msgid "Binding to log out." +msgstr "Associazione per terminare la sessione." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:20 -msgid "Binding to pause playback." -msgstr "Associazione per mettere in pausa la riproduzione." +msgid "Binding to lower the system volume." +msgstr "Associazione per abbassare il volume di sistema." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:21 -msgid "Play (or play/pause)" -msgstr "Riproduci (o Riproduci/Pausa)" +msgid "Binding to mute the system volume." +msgstr "Associazione per escludere il volume di sistema." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:22 -msgid "Binding to start playback (or toggle play/pause)." -msgstr "" -"Associazione per avviare la riproduzione (o commutare tra riproduci/pausa)." +msgid "Binding to open the Home folder." +msgstr "Associazione per aprire la cartella home." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:23 -msgid "Log out" -msgstr "Termina la sessione" +msgid "Binding to pause playback." +msgstr "Associazione per mettere in pausa la riproduzione." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:24 -msgid "Binding to log out." -msgstr "Associazione per terminare la sessione." +msgid "Binding to raise the system volume." +msgstr "Associazione per alzare il volume di sistema." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:25 -msgid "Previous track" -msgstr "Traccia precedente" +msgid "Binding to show the on-screen keyboard" +msgstr "Associazione per mostrare la tastiera a schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:26 +msgid "Binding to show the screen magnifier" +msgstr "Associazione per mostrare l'ingranditore di schermo" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 +msgid "Binding to skip to next track." +msgstr "Associazione per saltare alla traccia successiva." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 msgid "Binding to skip to previous track." msgstr "Associazione per saltare alla traccia precedente." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:29 -msgid "Lock screen" -msgstr "Blocca lo schermo" +msgid "Binding to start playback (or toggle play/pause)." +msgstr "" +"Associazione per avviare la riproduzione (o commutare tra riproduci/pausa)." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:30 -msgid "Binding to lock the screen." -msgstr "Associazione per bloccare lo schermo." +msgid "Binding to start the screen reader" +msgstr "Associazione per avviare il lettore di schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:31 -msgid "Search" -msgstr "Cerca" +msgid "Binding to stop playback." +msgstr "Associazione per fermare la riproduzione." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:32 -msgid "Binding to launch the search tool." -msgstr "Associazione per lanciare lo strumento di ricerca." +msgid "Binding to take a screenshot of a window." +msgstr "Associazione per catturare una schermata di una finestra." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:33 -msgid "Stop playback" -msgstr "Ferma la riproduzione" +msgid "Binding to take a screenshot of an area." +msgstr "Associazione per catturare una schermata di un'area." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:34 -msgid "Binding to stop playback." -msgstr "Associazione per fermare la riproduzione." +msgid "Binding to take a screenshot." +msgstr "Associazione per catturare una schermata." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:35 -msgid "Volume down" -msgstr "Abbassa il volume" +msgid "Binding to toggle the interface contrast" +msgstr "Associazione per cambiare contrasto dell'interfaccia" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:36 -msgid "Binding to lower the system volume." -msgstr "Associazione per abbassare il volume di sistema." +msgid "Command" +msgstr "Comando" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:37 -msgid "Volume mute" -msgstr "Escludi l'audio" +msgid "Command to run when the binding is invoked" +msgstr "Comando da eseguire quando invocata l'associazione" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:38 -msgid "Binding to mute the system volume." -msgstr "Associazione per escludere il volume di sistema." +msgid "Copy a screenshot of a window to clipboard" +msgstr "Copia una schermata di una finestra negli appunti" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:39 -msgid "Volume up" -msgstr "Alza il volume" +msgid "Copy a screenshot of an area to clipboard" +msgstr "Copia una schermata di un'area negli appunti" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:40 -msgid "Binding to raise the system volume." -msgstr "Associazione per alzare il volume di sistema." +msgid "Copy a screenshot to clipboard" +msgstr "Copia una schermata negli appunti" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:41 -#| msgid "Binding to take a screenshot." -msgid "Take a screenshot" -msgstr "Cattura una schermata" +msgid "Custom keybindings" +msgstr "Associazioni tasti personalizzate" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:42 -msgid "Binding to take a screenshot." -msgstr "Associazione per catturare una schermata." +msgid "Decrease text size" +msgstr "Diminuisci dimensione testo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:43 -#| msgid "Binding to take a screenshot of a window." -msgid "Take a screenshot of a window" -msgstr "Cattura una schermata di una finestra" +msgid "Eject" +msgstr "Espelli" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:44 -msgid "Binding to take a screenshot of a window." -msgstr "Associazione per catturare una schermata di una finestra." +msgid "Home folder" +msgstr "Cartella home" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:45 -#| msgid "Binding to take a screenshot of an area." -msgid "Take a screenshot of an area" -msgstr "Cattura una schermata di un'area" +msgid "Increase text size" +msgstr "Incrementa dimensione testo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:46 -msgid "Binding to take a screenshot of an area." -msgstr "Associazione per catturare una schermata di un'area." +msgid "Launch calculator" +msgstr "Lancia la calcolatrice" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 -#| msgid "Binding to copy a screenshot to clipboard." -msgid "Copy a screenshot to clipboard" -msgstr "Copia una schermata negli appunti" +msgid "Launch email client" +msgstr "Lancia il client email" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 -msgid "Binding to copy a screenshot to clipboard." -msgstr "Associazione per copiare una schermata negli appunti." +msgid "Launch help browser" +msgstr "Lancia il visualizzatore di manuali" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:49 -#| msgid "Binding to copy a screenshot to clipboard." -msgid "Copy a screenshot of a window to clipboard" -msgstr "Copia una schermata di una finestra negli appunti" +msgid "Launch media player" +msgstr "Lancia il riproduttore multimediale" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:50 -#| msgid "Binding to copy a screenshot to clipboard." -msgid "Binding to copy a screenshot of a window to clipboard." -msgstr "Associazione per copiare una schermata di una finestra negli appunti." +msgid "Launch web browser" +msgstr "Lancia il browser web" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:51 -#| msgid "Binding to copy a screenshot to clipboard." -msgid "Copy a screenshot of an area to clipboard" -msgstr "Copia una schermata di un'area negli appunti" +msgid "List of custom keybindings" +msgstr "Elenco di associazioni tasti personalizzate" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:52 -#| msgid "Binding to copy a screenshot to clipboard." -msgid "Binding to copy a screenshot of an area to clipboard." -msgstr "Associazione per copiare una schermata di un'area negli appunti." +msgid "Lock screen" +msgstr "Blocca lo schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 -msgid "Launch web browser" -msgstr "Lancia il browser web" +msgid "Log out" +msgstr "Termina la sessione" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 -msgid "Binding to launch the web browser." -msgstr "Associazione per lanciare il browser web." +msgid "Magnifier zoom in" +msgstr "Aumenta zoom ingranditore" -# aggiunto schermo, vedi prima #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 -msgid "Toggle magnifier" -msgstr "Commuta l'ingranditore di schermo" +msgid "Magnifier zoom out" +msgstr "Riduci zoom ingranditore" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 -msgid "Binding to show the screen magnifier" -msgstr "Associazione per mostrare l'ingranditore di schermo" +msgid "Name" +msgstr "Nome" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 -msgid "Toggle screen reader" -msgstr "Commuta la lettore di schermo" +msgid "Name of the custom binding" +msgstr "Nome dell'associazione personalizzata" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 -msgid "Binding to start the screen reader" -msgstr "Associazione per avviare il lettore di schermo" +msgid "Next track" +msgstr "Traccia successiva" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:59 -msgid "Toggle on-screen keyboard" -msgstr "Commuta la tastiera a schermo" +msgid "Pause playback" +msgstr "Riproduzione in pausa" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:60 -msgid "Binding to show the on-screen keyboard" -msgstr "Associazione per mostrare la tastiera a schermo" +msgid "Play (or play/pause)" +msgstr "Riproduci (o Riproduci/Pausa)" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:61 -msgid "Increase text size" -msgstr "Incrementa dimensione testo" - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 -msgid "Binding to increase the text size" -msgstr "Associazione per incrementare la dimensione del testo" - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 -msgid "Decrease text size" -msgstr "Diminuisci dimensione testo" +msgid "Previous track" +msgstr "Traccia precedente" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:64 -msgid "Binding to decrease the text size" -msgstr "Associazione per diminuire la dimensione del testo" +msgid "Search" +msgstr "Cerca" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:65 -msgid "Toggle contrast" -msgstr "Commuta il contrasto" +msgid "Stop playback" +msgstr "Ferma la riproduzione" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:66 -msgid "Binding to toggle the interface contrast" -msgstr "Associazione per cambiare contrasto dell'interfaccia" +msgid "Take a screenshot" +msgstr "Cattura una schermata" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 -msgid "Magnifier zoom in" -msgstr "Aumenta zoom ingranditore" +msgid "Take a screenshot of a window" +msgstr "Cattura una schermata di una finestra" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 -msgid "Binding for the magnifier to zoom in" -msgstr "Associazione per aumentare lo zoom dell'ingranditore di schermo" +msgid "Take a screenshot of an area" +msgstr "Cattura una schermata di un'area" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 -msgid "Magnifier zoom out" -msgstr "Riduci zoom ingranditore" +msgid "Toggle contrast" +msgstr "Commuta il contrasto" +# aggiunto schermo, vedi prima #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 -msgid "Binding for the magnifier to zoom out" -msgstr "Associazione per ridurre lo zoom dell'ingranditore di schermo" +msgid "Toggle magnifier" +msgstr "Commuta l'ingranditore di schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 -msgid "Name" -msgstr "Nome" +msgid "Toggle on-screen keyboard" +msgstr "Commuta la tastiera a schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 -#| msgid "Binding for the custom binding" -msgid "Name of the custom binding" -msgstr "Nome dell'associazione personalizzata" +msgid "Toggle screen reader" +msgstr "Commuta la lettore di schermo" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 -msgid "Binding" -msgstr "Associazione" +msgid "Volume down" +msgstr "Abbassa il volume" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:74 -msgid "Binding for the custom binding" -msgstr "Associazione per l'associazione personalizzata" +msgid "Volume mute" +msgstr "Escludi l'audio" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:75 -msgid "Command" -msgstr "Comando" +msgid "Volume up" +msgstr "Alza il volume" -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 -msgid "Command to run when the binding is invoked" -msgstr "Comando da eseguire quando invocata l'associazione" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 +msgid "" +"If time based notifications should be used. If set to false, then the " +"percentage change is used instead, which may fix a broken ACPI BIOS." +msgstr "" +"Indica se devono essere usate le notifiche basate sul tempo. Se impostato a " +"FALSO, viene usato il cambio di percentuale che potrebbe risolvere i " +"problemi con alcuni BIOS con ACPI malfunzionante." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 -msgid "Percentage considered low" -msgstr "Percentuale considerata bassa" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 +msgid "If we should show the recalled battery warning for a broken battery" +msgstr "" +"Indica se mostrare l'avviso di richiamo batterie per una batteria danneggiata" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 msgid "" -"The percentage of the battery when it is considered low. Only valid when use-" -"time-for-policy is false." +"If we should show the recalled battery warning for a broken battery. Set " +"this to false only if you know your battery is okay." msgstr "" -"La percentuale di carica della batteria che Ăš considerata bassa. Valido solo " -"quando use-time-for-policy Ăš impostato a FALSO." +"Indica se mostrare l'avviso di richiamo batterie per una batteria " +"danneggiata. Impostare a FALSO solo nel caso in cui la batteria in uso sia " +"sicura." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 +msgid "Percentage action is taken" +msgstr "L'azione della percentuale Ăš eseguita" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 msgid "Percentage considered critical" msgstr "Percentuale considerata critica" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +msgid "Percentage considered low" +msgstr "Percentuale considerata bassa" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 msgid "" "The percentage of the battery when it is considered critical. Only valid " "when use-time-for-policy is false." @@ -758,11 +781,15 @@ "La percentuale di carica della batteria che Ăš considerata critica. Valido " "solo quando use-time-for-policy Ăš impostato a FALSO." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 -msgid "Percentage action is taken" -msgstr "L'azione della percentuale Ăš eseguita" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +msgid "" +"The percentage of the battery when it is considered low. Only valid when use-" +"time-for-policy is false." +msgstr "" +"La percentuale di carica della batteria che Ăš considerata bassa. Valido solo " +"quando use-time-for-policy Ăš impostato a FALSO." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 msgid "" "The percentage of the battery when the critical action is performed. Only " "valid when use-time-for-policy is false." @@ -770,114 +797,61 @@ "La percentuale di carica della batteria per eseguire l'azione critica. " "Valido solo quando use-time-for-policy Ăš impostato a FALSO." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 -msgid "The time remaining when low" -msgstr "Il tempo rimanente quando la carica Ăš bassa" - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 -msgid "" -"The time remaining in seconds of the battery when it is considered low. Only " -"valid when use-time-for-policy is true." -msgstr "" -"Il tempo rimanente in secondi per considerare la carica della batteria " -"bassa. Valido solo quando use-time-for-policy Ăš impostato a VERO." - #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 -msgid "The time remaining when critical" -msgstr "Il tempo rimanente quando la carica Ăš critica" - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 -msgid "" -"The time remaining in seconds of the battery when it is considered critical. " -"Only valid when use-time-for-policy is true." -msgstr "" -"Il tempo rimanente in secondi per considerare la carica della batteria " -"critica. Valido solo quando use-time-for-policy Ăš impostato a VERO." - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 -msgid "The time remaining when action is taken" -msgstr "Il tempo rimanente quando l'azione Ăš eseguita" - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 -msgid "" -"The time remaining in seconds of the battery when critical action is taken. " -"Only valid when use-time-for-policy is true." -msgstr "" -"Il tempo rimanente in secondi di carica della batteria per eseguire l'azione " -"critica. Valido solo quando use-time-for-policy Ăš impostato a VERO." - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 -msgid "Whether to use time-based notifications" -msgstr "Indica se usare notifiche basate sul tempo" - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 -msgid "" -"If time based notifications should be used. If set to false, then the " -"percentage change is used instead, which may fix a broken ACPI BIOS." -msgstr "" -"Indica se devono essere usate le notifiche basate sul tempo. Se impostato a " -"FALSO, viene usato il cambio di percentuale che potrebbe risolvere i " -"problemi con alcuni BIOS con ACPI malfunzionante." - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 -msgid "If we should show the recalled battery warning for a broken battery" -msgstr "" -"Indica se mostrare l'avviso di richiamo batterie per una batteria danneggiata" - -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 msgid "" -"If we should show the recalled battery warning for a broken battery. Set " -"this to false only if you know your battery is okay." +"The time remaining in seconds of the battery when critical action is taken. " +"Only valid when use-time-for-policy is true." msgstr "" -"Indica se mostrare l'avviso di richiamo batterie per una batteria " -"danneggiata. Impostare a FALSO solo nel caso in cui la batteria in uso sia " -"sicura." +"Il tempo rimanente in secondi di carica della batteria per eseguire l'azione " +"critica. Valido solo quando use-time-for-policy Ăš impostato a VERO." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 -msgid "The install root to use when adding and removing packages" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 +msgid "" +"The time remaining in seconds of the battery when it is considered critical. " +"Only valid when use-time-for-policy is true." msgstr "" -"La radice di installazione da usare durante l'aggiunta e la rimozione di " -"pacchetti" +"Il tempo rimanente in secondi per considerare la carica della batteria " +"critica. Valido solo quando use-time-for-policy Ăš impostato a VERO." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 msgid "" -"The install root to use when processing packages, which is changed when " -"using LTSP or when testing." +"The time remaining in seconds of the battery when it is considered low. Only " +"valid when use-time-for-policy is true." msgstr "" -"La radice di installazione da usare durante l'elaborazione dei pacchetti, " -"che Ăš cambiata quando si usa LTSP o quando si esegue del testing." +"Il tempo rimanente in secondi per considerare la carica della batteria " +"bassa. Valido solo quando use-time-for-policy Ăš impostato a VERO." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 -msgid "Use mobile broadband connections" -msgstr "Usa connessioni a banda larga mobile" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 +msgid "The time remaining when action is taken" +msgstr "Il tempo rimanente quando l'azione Ăš eseguita" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 -msgid "" -"Use mobile broadband connections such as GSM and CDMA to check for updates." -msgstr "" -"Usa connessioni a banda larga mobile (come GSM e CDMA) per controllare gli " -"aggiornamenti." +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 +msgid "The time remaining when critical" +msgstr "Il tempo rimanente quando la carica Ăš critica" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 -msgid "Use WiFi connections" -msgstr "Usa connessioni WiFi" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 +msgid "The time remaining when low" +msgstr "Il tempo rimanente quando la carica Ăš bassa" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 +msgid "Whether to use time-based notifications" +msgstr "Indica se usare notifiche basate sul tempo" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 +msgid "Ask the user if additional firmware should be installed" +msgstr "Chiede all'utente se installare firmware aggiuntivo" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 msgid "" -"Use WiFi (wireless LAN) connections to check for updates. It may be faster " -"to download packages when on a wired connection, and the VPN or proxy " -"required may also only be available on wired connections." +"Ask the user if additional firmware should be installed if it is available." msgstr "" -"Usa le connessioni WiFi (LAN wireless) per controllare gli aggiornamenti. " -"Potrebbe essere piĂč veloce scaricare i pacchetti usando una connessione via " -"cavo, cosĂŹ come la VPN o il proxy richiesto potrebbero essere disponibili " -"solo su connessioni via cavo." +"Chiede all'utente se installare firmware aggiuntivo, qualora sia disponibile." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 msgid "Automatically download updates in the background without confirmation" msgstr "Scarica automaticamente gli aggiornamenti in background senza conferma" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 msgid "" "Automatically download updates in the background without confirmation. " "Updates will be auto-downloaded when using wired network connnections, and " @@ -889,29 +863,63 @@ "di rete via cavo, cosĂŹ come via WiFi se Ăš abilitata \"connection-use-wifi\" " "e via banda larga mobile se Ăš abilitata \"connection-use-mobile\"." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 msgid "Automatically install these types of updates" msgstr "Installa automaticamente questi tipi di aggiornamenti" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 msgid "Automatically install these types of updates." msgstr "Installa automaticamente questi tipi di aggiornamenti." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 +msgid "Devices that should be ignored" +msgstr "Dispositivi da ignorare" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 +msgid "" +"Devices that should be ignored, separated by commas. These can include '*' " +"and '?' characters." +msgstr "" +"Dispositivi da ignorare, separati da virgole. È possibile includere i " +"caratteri '*' e '?'." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 +msgid "Firmware files that should not be searched for" +msgstr "File di firmware da non cercare" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 +msgid "" +"Firmware files that should not be searched for, separated by commas. These " +"can include '*' and '?' characters." +msgstr "" +"File di firmware da non cercare, separati da virgole. È possibile includere " +"i caratteri '*' e '?'." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 msgid "Get the update list when the session starts" msgstr "Recupera l'elenco degli aggiornamenti all'avvio della sessione" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 msgid "Get the update list when the session starts, even if not scheduled to." msgstr "" "Recupera l'elenco degli aggiornamenti all'avvio della sessione, anche quando " "non pianificato." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 +msgid "How often to check for distribution upgrades" +msgstr "Frequenza del controllo degli avanzamenti di distribuzione" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 +msgid "How often to check for distribution upgrades. Value is in seconds." +msgstr "" +"Frequenza del controllo degli avanzamenti di distribuzione. Valore espresso " +"in secondi." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 msgid "How often to check for updates" msgstr "Frequenza del controllo degli aggiornamenti" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 msgid "" "How often to check for updates. Value is in seconds. This is a maximum " "amount of time that can pass between a security update being published, and " @@ -922,13 +930,23 @@ "la pubblicazione di un aggiornamento di sicurezza e l'installazione " "automatica oppure la notifica utente dell'aggiornamento." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 msgid "How often to notify the user that non-critical updates are available" msgstr "" "Frequenza di notifica utente per la disponibilitĂ  di aggiornamenti non " "critici" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 +msgid "How often to refresh the package cache" +msgstr "Frequenza di aggiornamento della cache di pacchetto" + #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 +msgid "How often to refresh the package cache. Value is in seconds." +msgstr "" +"Frequenza di aggiornamento della cache di pacchetto. Valore espresso in " +"secondi." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 msgid "" "How often to tell the user there are non-critical updates. Value is in " "seconds. Security update notifications are always shown after the check for " @@ -940,163 +958,149 @@ "sicurezza sono sempre mostrate dopo il controllo degli aggiornamenti, mentre " "le notifiche non critiche dovrebbero apparire molto meno frequentemente." -# non fedele, ma "raccontate notifiche non critiche" Ăš assurdo... -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 -msgid "The last time we told the user about non-critical notifications" -msgstr "" -"L'ultima volta che sono stati notificati all'utente aggiornamenti non critici" - #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 -msgid "" -"The last time we notified the user about non-critical updates. Value is in " -"seconds since the epoch, or zero for never." +msgid "Install updates automatically when running on battery power" msgstr "" -"L'ultima volta che sono stati notificati all'utente aggiornamenti non " -"critici. Valore espresso in secondi da epoch, oppure zero per mai." +"Installa automaticamente gli aggiornamenti quando alimentato dalla batteria." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 -msgid "How often to check for distribution upgrades" -msgstr "Frequenza del controllo degli avanzamenti di distribuzione" +msgid "Install updates automatically when running on battery power." +msgstr "" +"Installa automaticamente gli aggiornamenti quando alimentato dalla batteria." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 -msgid "How often to check for distribution upgrades. Value is in seconds." -msgstr "" -"Frequenza del controllo degli avanzamenti di distribuzione. Valore espresso " -"in secondi." +msgid "Notify the user for completed updates" +msgstr "Notifica all'utente il completamento dell'aggiornamento" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 -msgid "How often to refresh the package cache" -msgstr "Frequenza di aggiornamento della cache di pacchetto" +msgid "Notify the user for completed updates where the user needs to restart" +msgstr "" +"Notifica all'utente il completamento dell'aggiornamento qualora sia " +"necessario riavviare" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 -msgid "How often to refresh the package cache. Value is in seconds." +msgid "Notify the user for completed updates where the user needs to restart." msgstr "" -"Frequenza di aggiornamento della cache di pacchetto. Valore espresso in " -"secondi." +"Notifica all'utente il completamento dell'aggiornamento qualora sia " +"necessario riavviare." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 msgid "" -"The number of seconds at session startup to wait before checking for updates" +"Notify the user for completed updates. This may be a useful notification for " +"some users as installing updates prevents shutdown." msgstr "" -"Il numero di secondi da attendere dall'avvio della sessione prima di " -"controllare gli aggiornamenti" +"Notifica all'utente il completamento dell'aggiornamento. Tale notifica " +"potrebbe essere utile per alcuni utenti poichĂ© l'installazione degli " +"aggiornamenti impedisce di arrestare il sistema." -# Geniale! Esprime il numero di secondi in... secondi!! #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 -msgid "" -"The number of seconds at session startup to wait before checking for " -"updates. Value is in seconds." -msgstr "" -"Il numero di secondi da attendere dall'avvio della sessione prima di " -"controllare gli aggiornamenti. Valore espresso in secondi." +msgid "Notify the user when distribution upgrades are available" +msgstr "Notifica all'utente la disponibilitĂ  di avanzamenti di distribuzione" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 -msgid "Install updates automatically when running on battery power" -msgstr "" -"Installa automaticamente gli aggiornamenti quando alimentato dalla batteria." +msgid "Notify the user when distribution upgrades are available." +msgstr "Notifica all'utente la disponibilitĂ  di avanzamenti di distribuzione." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 -msgid "Install updates automatically when running on battery power." +msgid "" +"Notify the user when the automatic update was not started on battery power" msgstr "" -"Installa automaticamente gli aggiornamenti quando alimentato dalla batteria." +"Notifica all'utente che l'aggiornamento automatico non Ăš stato avviato " +"perchĂ© alimentato con batteria" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 -msgid "Notify the user when distribution upgrades are available" -msgstr "Notifica all'utente la disponibilitĂ  di avanzamenti di distribuzione" +msgid "" +"Notify the user when the update was not automatically started because the " +"machine is running on battery power." +msgstr "" +"Notifica all'utente che l'aggiornamento non Ăš stato avviato in modo " +"automatico perchĂ© il sistema Ăš in esecuzione alimentato con batteria." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 -msgid "Notify the user when distribution upgrades are available." -msgstr "Notifica all'utente la disponibilitĂ  di avanzamenti di distribuzione." +msgid "Notify the user when the update was started" +msgstr "Notifica all'utente l'avvio dell'aggiornamento" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 -msgid "Notify the user for completed updates" -msgstr "Notifica all'utente il completamento dell'aggiornamento" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 -msgid "" -"Notify the user for completed updates. This may be a useful notification for " -"some users as installing updates prevents shutdown." -msgstr "" -"Notifica all'utente il completamento dell'aggiornamento. Tale notifica " -"potrebbe essere utile per alcuni utenti poichĂ© l'installazione degli " -"aggiornamenti impedisce di arrestare il sistema." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 -msgid "Notify the user for completed updates where the user needs to restart" -msgstr "" -"Notifica all'utente il completamento dell'aggiornamento qualora sia " -"necessario riavviare" +msgid "Notify the user when the update was started." +msgstr "Notifica all'utente l'avvio dell'aggiornamento." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 -msgid "Notify the user for completed updates where the user needs to restart." +msgid "The filenames on removable media that designate it a software source." msgstr "" -"Notifica all'utente il completamento dell'aggiornamento qualora sia " -"necessario riavviare." +"I nomi file sul supporto removibile che lo classificano come sorgente " +"software." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 -msgid "" -"Notify the user when the automatic update was not started on battery power" +msgid "The install root to use when adding and removing packages" msgstr "" -"Notifica all'utente che l'aggiornamento automatico non Ăš stato avviato " -"perchĂ© alimentato con batteria" +"La radice di installazione da usare durante l'aggiunta e la rimozione di " +"pacchetti" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 msgid "" -"Notify the user when the update was not automatically started because the " -"machine is running on battery power." +"The install root to use when processing packages, which is changed when " +"using LTSP or when testing." msgstr "" -"Notifica all'utente che l'aggiornamento non Ăš stato avviato in modo " -"automatico perchĂ© il sistema Ăš in esecuzione alimentato con batteria." +"La radice di installazione da usare durante l'elaborazione dei pacchetti, " +"che Ăš cambiata quando si usa LTSP o quando si esegue del testing." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 -msgid "Notify the user when the update was started" -msgstr "Notifica all'utente l'avvio dell'aggiornamento" +msgid "" +"The last time we notified the user about non-critical updates. Value is in " +"seconds since the epoch, or zero for never." +msgstr "" +"L'ultima volta che sono stati notificati all'utente aggiornamenti non " +"critici. Valore espresso in secondi da epoch, oppure zero per mai." +# non fedele, ma "raccontate notifiche non critiche" Ăš assurdo... #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 -msgid "Notify the user when the update was started." -msgstr "Notifica all'utente l'avvio dell'aggiornamento." +msgid "The last time we told the user about non-critical notifications" +msgstr "" +"L'ultima volta che sono stati notificati all'utente aggiornamenti non critici" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 -msgid "Ask the user if additional firmware should be installed" -msgstr "Chiede all'utente se installare firmware aggiuntivo" +msgid "" +"The number of seconds at session startup to wait before checking for updates" +msgstr "" +"Il numero di secondi da attendere dall'avvio della sessione prima di " +"controllare gli aggiornamenti" +# Geniale! Esprime il numero di secondi in... secondi!! #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 msgid "" -"Ask the user if additional firmware should be installed if it is available." +"The number of seconds at session startup to wait before checking for " +"updates. Value is in seconds." msgstr "" -"Chiede all'utente se installare firmware aggiuntivo, qualora sia disponibile." +"Il numero di secondi da attendere dall'avvio della sessione prima di " +"controllare gli aggiornamenti. Valore espresso in secondi." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 -msgid "Firmware files that should not be searched for" -msgstr "File di firmware da non cercare" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 msgid "" -"Firmware files that should not be searched for, separated by commas. These " -"can include '*' and '?' characters." +"Use WiFi (wireless LAN) connections to check for updates. It may be faster " +"to download packages when on a wired connection, and the VPN or proxy " +"required may also only be available on wired connections." msgstr "" -"File di firmware da non cercare, separati da virgole. È possibile includere " -"i caratteri '*' e '?'." +"Usa le connessioni WiFi (LAN wireless) per controllare gli aggiornamenti. " +"Potrebbe essere piĂč veloce scaricare i pacchetti usando una connessione via " +"cavo, cosĂŹ come la VPN o il proxy richiesto potrebbero essere disponibili " +"solo su connessioni via cavo." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 +msgid "Use WiFi connections" +msgstr "Usa connessioni WiFi" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 -msgid "Devices that should be ignored" -msgstr "Dispositivi da ignorare" +msgid "Use mobile broadband connections" +msgstr "Usa connessioni a banda larga mobile" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 msgid "" -"Devices that should be ignored, separated by commas. These can include '*' " -"and '?' characters." +"Use mobile broadband connections such as GSM and CDMA to check for updates." msgstr "" -"Dispositivi da ignorare, separati da virgole. È possibile includere i " -"caratteri '*' e '?'." +"Usa connessioni a banda larga mobile (come GSM e CDMA) per controllare gli " +"aggiornamenti." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 -msgid "The filenames on removable media that designate it a software source." -msgstr "" -"I nomi file sul supporto removibile che lo classificano come sorgente " -"software." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 msgid "" "When removable media is inserted, it is checked to see if it contains any " "important filenames in the root directory. If the filename matches, then an " @@ -1108,11 +1112,21 @@ "del nome viene eseguito un controllo degli aggiornamenti. CiĂČ permette di " "usare i dischi \"post-install\" per aggiornare i sistemi in esecuzione." +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 +msgid "" +"'clone' will display the same thing on all monitors, 'dock' will switch off " +"the internal monitor, 'do-nothing' will use the default Xorg behaviour " +"(extend the desktop in recent versions)" +msgstr "" +"\"clone\" mostra lo stesso contenuto su tutti i monitor, \"dock\" spegne il " +"monitor interno, \"do-nothing\" usa il comportamento predefinito di Xorg " +"(estende il desktop nelle versioni recenti)" + #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 msgid "File for default configuration for RandR" msgstr "File per la configurazione predefinita di RandR" -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 msgid "" "The XRandR plugin will look for a default configuration in the file " "specified by this key. This is similar to the ~/.config/monitors.xml that " @@ -1127,55 +1141,47 @@ "corrisponde alla impostazione dei monitor, allora viene usato il file " "specificato in questa chiave." -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 msgid "Whether to turn off specific monitors after boot" msgstr "Indica se spegnere alcuni monitor specifici dopo il boot" -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 msgid "" -"'clone' will display the same thing on all monitors, 'dock' will switch off " -"the internal monitor, 'do-nothing' will use the default Xorg behaviour " -"(extend the desktop in recent versions)" +"A list of strings representing the GTK+ modules that will be loaded, usually " +"in addition to conditional and forcibly disabled ones." msgstr "" -"\"clone\" mostra lo stesso contenuto su tutti i monitor, \"dock\" spegne il " -"monitor interno, \"do-nothing\" usa il comportamento predefinito di Xorg " -"(estende il desktop nelle versioni recenti)" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 -msgid "Antialiasing" -msgstr "Antialiasing" +"Un elenco di stringhe che rappresenta i moduli GTK+ da caricare, di solito " +"in aggiunta a quelli disabilitati in maniera condizionale e forzata." -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 msgid "" -"The type of antialiasing to use when rendering fonts. Possible values are: " -"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " -"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +"A list of strings representing the GTK+ modules that will not be loaded, " +"even if enabled by default in their configuration." msgstr "" -"Il tipo di antialiasing da usare nella resa a schermo dei tipi di caratteri. " -"Valori ammessi sono: \"none\" per nessun antialiasing, \"grayscale\" per " -"antialiasing standard in scala di grigi, \"rgba\" per antialiasing sul " -"subpixel (solo per schermi LCD)." +"Un elenco di stringhe che rappresenta i moduli GTK+ da non caricare, anche " +"se abilitati in modo predefinito dalle loro rispettive configurazioni." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +msgid "Antialiasing" +msgstr "Antialiasing" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 msgid "Hinting" msgstr "Hinting" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 -msgid "" -"The type of hinting to use when rendering fonts. Possible values are: \"none" -"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" -"\" for maximum hinting (may cause distortion of letter forms)." -msgstr "" -"Il tipo di approssimazione (hinting) da usare nella resa a schermo dei tipi " -"di carattere. Valori ammessi sono: \"none\" per nessuna approssimazione, " -"\"slight\" per essenziale, \"medium\" per moderata e \"full\" per la massima " -"approssimazione (puĂČ causare distorsioni nella forma delle lettere)." +msgid "List of explicitly disabled GTK+ modules" +msgstr "Elenco di moduli GTK+ esplicitamente disabilitati" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 +msgid "List of explicitly enabled GTK+ modules" +msgstr "Elenco di moduli GTK+ esplicitamente abilitati" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 msgid "RGBA order" msgstr "Ordine RGBA" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 msgid "" "The order of subpixel elements on an LCD screen; only used when antialiasing " "is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " @@ -1187,29 +1193,27 @@ "rosso a sinistra (il piĂč comune), \"bgr\" per blu a sinistra, \"vrgb\" per " "rosso in alto, \"vbgr\" per rosso in basso." -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 -msgid "List of explicitly disabled GTK+ modules" -msgstr "Elenco di moduli GTK+ esplicitamente disabilitati" - #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 msgid "" -"A list of strings representing the GTK+ modules that will not be loaded, " -"even if enabled by default in their configuration." +"The type of antialiasing to use when rendering fonts. Possible values are: " +"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " +"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." msgstr "" -"Un elenco di stringhe che rappresenta i moduli GTK+ da non caricare, anche " -"se abilitati in modo predefinito dalle loro rispettive configurazioni." +"Il tipo di antialiasing da usare nella resa a schermo dei tipi di caratteri. " +"Valori ammessi sono: \"none\" per nessun antialiasing, \"grayscale\" per " +"antialiasing standard in scala di grigi, \"rgba\" per antialiasing sul " +"subpixel (solo per schermi LCD)." #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 -msgid "List of explicitly enabled GTK+ modules" -msgstr "Elenco di moduli GTK+ esplicitamente abilitati" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 msgid "" -"A list of strings representing the GTK+ modules that will be loaded, usually " -"in addition to conditional and forcibly disabled ones." +"The type of hinting to use when rendering fonts. Possible values are: \"none" +"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" +"\" for maximum hinting (may cause distortion of letter forms)." msgstr "" -"Un elenco di stringhe che rappresenta i moduli GTK+ da caricare, di solito " -"in aggiunta a quelli disabilitati in maniera condizionale e forzata." +"Il tipo di approssimazione (hinting) da usare nella resa a schermo dei tipi " +"di carattere. Valori ammessi sono: \"none\" per nessuna approssimazione, " +"\"slight\" per essenziale, \"medium\" per moderata e \"full\" per la massima " +"approssimazione (puĂČ causare distorsioni nella forma delle lettere)." #: ../gnome-settings-daemon/main.c:54 msgid "Enable debugging code" @@ -1255,7 +1259,7 @@ #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 -#: ../plugins/mouse/gsd-mouse-manager.c:837 +#: ../plugins/mouse/gsd-mouse-manager.c:867 msgid "Universal Access" msgstr "Accesso universale" @@ -1269,7 +1273,6 @@ msgid "Turn On" msgstr "Attiva" -# riferito a funzione #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 msgid "Leave On" @@ -1332,33 +1335,33 @@ "determina il modo in cui opera la tastiera." #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 msgid "Universal Access Preferences" msgstr "Preferenze di accesso universale" +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 +msgid "Enhance _contrast in colors" +msgstr "Aumentare il c_ontrasto nei colori" + #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 -msgid "Use on-screen _keyboard" -msgstr "Usare la tastiera a sc_hermo" +msgid "Make _text larger and easier to read" +msgstr "Rendere il _testo piĂč grande e semplice da leggere" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 -msgid "Use screen _reader" -msgstr "Usare il l_ettore di schermo" - -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 -msgid "Use screen _magnifier" -msgstr "Usare l'in_granditore di schermo" +msgid "Press and _hold keys to accept them (Slow Keys)" +msgstr "_Premere e tenere premuti i tasti per accettarli (tasti lenti)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 -msgid "Enhance _contrast in colors" -msgstr "Aumentare il c_ontrasto nei colori" +msgid "Use on-screen _keyboard" +msgstr "Usare la tastiera a sc_hermo" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 -msgid "Make _text larger and easier to read" -msgstr "Rendere il _testo piĂč grande e semplice da leggere" +msgid "Use screen _magnifier" +msgstr "Usare l'in_granditore di schermo" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 -msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" -msgstr "Premere le _scorciatoie da tastiera un tasto per volta (tasti singoli)" +msgid "Use screen _reader" +msgstr "Usare il l_ettore di schermo" # anche ravvicinati... #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 @@ -1366,8 +1369,8 @@ msgstr "_Ignorare pressioni di tasto duplicate (tasti rimbalzati)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 -msgid "Press and _hold keys to accept them (Slow Keys)" -msgstr "_Premere e tenere premuti i tasti per accettarli (tasti lenti)" +msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" +msgstr "Premere le _scorciatoie da tastiera un tasto per volta (tasti singoli)" #: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:1 msgid "Accessibility settings" @@ -1378,13 +1381,13 @@ msgstr "Plugin per le impostazioni di accesso universale" #: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 -msgid "Mount Helper" -msgstr "Helper per mount" - -#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 msgid "Automount and autorun plugged devices" msgstr "Monta e manda in esecuzione automaticamente i dispositivi collegati" +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 +msgid "Mount Helper" +msgstr "Helper per mount" + #: ../plugins/automount/gsd-automount-manager.c:151 #, c-format msgid "Unable to mount %s" @@ -1525,7 +1528,7 @@ msgstr "Plugin per gli appunti" #: ../plugins/color/color.gnome-settings-plugin.in.h:1 -#: ../plugins/color/gsd-color-manager.c:1745 +#: ../plugins/color/gsd-color-manager.c:1757 msgid "Color" msgstr "Colore" @@ -1533,40 +1536,40 @@ msgid "Color plugin" msgstr "Plugin per il colore" -#: ../plugins/color/gsd-color-manager.c:1750 +#: ../plugins/color/gsd-color-manager.c:1762 msgid "Recalibrate now" msgstr "Ricalibra adesso" #. TRANSLATORS: this is when the device has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1792 +#: ../plugins/color/gsd-color-manager.c:1804 msgid "Recalibration required" msgstr "È richiesta una ricalibrazione" #. TRANSLATORS: this is when the display has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1804 +#: ../plugins/color/gsd-color-manager.c:1816 #, c-format msgid "The display '%s' should be recalibrated soon." msgstr "Il monitor «%s» dovrebbe essere ricalibrato a breve." #. TRANSLATORS: this is when the printer has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1813 +#: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." msgstr "La stampante «%s» dovrebbe essere ricalibrata a breve." #. TRANSLATORS: this is the application name -#: ../plugins/color/gsd-color-manager.c:2139 -#: ../plugins/color/gsd-color-manager.c:2155 +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 msgid "GNOME Settings Daemon Color Plugin" msgstr "Plugin Colore di GNOME Settings Daemon" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2141 +#: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" msgstr "Dispositivo calibrazione colore aggiunto" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2157 +#: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" msgstr "Dispositivo calibrazione colore rimosso" @@ -1766,14 +1769,14 @@ msgid "Media keys plugin" msgstr "Plugin per i tasti multimediali" -#: ../plugins/mouse/gsd-mouse-manager.c:833 +#: ../plugins/mouse/gsd-mouse-manager.c:863 msgid "Could not enable mouse accessibility features" msgstr "Impossibile abilitare le funzioni di accessibilitĂ  del mouse" # accesso universale perchĂ© Ăš testo secondario di # allerta, con accessibilitĂ  giĂ  usato in testo primario # (ossia messaggio precedente) -#: ../plugins/mouse/gsd-mouse-manager.c:835 +#: ../plugins/mouse/gsd-mouse-manager.c:865 msgid "" "Mouse accessibility requires Mousetweaks to be installed on your system." msgstr "" @@ -2275,12 +2278,12 @@ msgid "Computer is charged" msgstr "Computer carico" -#. TRANSLATORS: the battery may be recalled by it's vendor -#: ../plugins/power/gsd-power-manager.c:985 +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 msgid "Battery may be recalled" msgstr "Possibile richiamo per la batteria" -#: ../plugins/power/gsd-power-manager.c:988 +#: ../plugins/power/gsd-power-manager.c:994 #, c-format msgid "" "A battery in your computer may have been recalled by %s and you may be at " @@ -2290,65 +2293,65 @@ "programma di richiamo da parte di %s; ciĂČ potrebbe comportare un rischio per " "la sicurezza." -#: ../plugins/power/gsd-power-manager.c:991 +#: ../plugins/power/gsd-power-manager.c:997 msgid "For more information visit the battery recall website." msgstr "" "Per maggiori informazioni, consultare il sito web per il programma di " "richiamo" #. TRANSLATORS: button text, visit the manufacturers recall website -#: ../plugins/power/gsd-power-manager.c:1002 +#: ../plugins/power/gsd-power-manager.c:1008 msgid "Visit recall website" msgstr "Visita sito web richiamo" #. TRANSLATORS: button text, do not show this bubble again -#: ../plugins/power/gsd-power-manager.c:1006 +#: ../plugins/power/gsd-power-manager.c:1012 msgid "Do not show me this again" msgstr "Non mostrare piĂč questo avviso" #. TRANSLATORS: UPS is now discharging -#: ../plugins/power/gsd-power-manager.c:1217 +#: ../plugins/power/gsd-power-manager.c:1223 msgid "UPS Discharging" msgstr "UPS in fase di scarica" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1222 +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format msgid "%s of UPS backup power remaining" msgstr "Rimangono %s di autonomia tramite alimentazione di emergenza con l'UPS" #. TRANSLATORS: this is the notification application name -#: ../plugins/power/gsd-power-manager.c:1243 -#: ../plugins/power/gsd-power-manager.c:1421 -#: ../plugins/power/gsd-power-manager.c:1602 -#: ../plugins/power/gsd-power-manager.c:1751 +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 #: ../plugins/power/power.gnome-settings-plugin.in.h:1 msgid "Power" msgstr "Alimentazione" #. TRANSLATORS: laptop battery low, and we only have one battery -#: ../plugins/power/gsd-power-manager.c:1336 +#: ../plugins/power/gsd-power-manager.c:1342 msgid "Battery low" msgstr "Carica batteria bassa" #. TRANSLATORS: laptop battery low, and we have more than one kind of battery -#: ../plugins/power/gsd-power-manager.c:1339 +#: ../plugins/power/gsd-power-manager.c:1345 msgid "Laptop battery low" msgstr "Carica batteria del portatile bassa" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1345 +#: ../plugins/power/gsd-power-manager.c:1351 #, c-format msgid "Approximately %s remaining (%.0f%%)" msgstr "Rimangono circa %s di autonomia (%.0f%%)" #. TRANSLATORS: UPS is starting to get a little low -#: ../plugins/power/gsd-power-manager.c:1349 +#: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" msgstr "Carica UPS bassa" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1353 +#: ../plugins/power/gsd-power-manager.c:1359 #, c-format msgid "Approximately %s of remaining UPS backup power (%.0f%%)" msgstr "" @@ -2357,118 +2360,118 @@ #. TRANSLATORS: mouse is getting a little low #. TRANSLATORS: the mouse battery is very low -#: ../plugins/power/gsd-power-manager.c:1357 -#: ../plugins/power/gsd-power-manager.c:1523 +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 msgid "Mouse battery low" msgstr "Carica batteria mouse bassa" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1360 +#: ../plugins/power/gsd-power-manager.c:1366 #, c-format msgid "Wireless mouse is low in power (%.0f%%)" msgstr "La carica della batteria del mouse wireless Ăš bassa (%.0f%%)" #. TRANSLATORS: keyboard is getting a little low #. TRANSLATORS: the keyboard battery is very low -#: ../plugins/power/gsd-power-manager.c:1364 -#: ../plugins/power/gsd-power-manager.c:1531 +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 msgid "Keyboard battery low" msgstr "Carica batteria tastiera bassa" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1367 +#: ../plugins/power/gsd-power-manager.c:1373 #, c-format msgid "Wireless keyboard is low in power (%.0f%%)" msgstr "La carica della batteria della tastiera wireless Ăš bassa (%.0f%%)" #. TRANSLATORS: PDA is getting a little low #. TRANSLATORS: the PDA battery is very low -#: ../plugins/power/gsd-power-manager.c:1371 -#: ../plugins/power/gsd-power-manager.c:1540 +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 msgid "PDA battery low" msgstr "Carica batteria palmare bassa" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1374 +#: ../plugins/power/gsd-power-manager.c:1380 #, c-format msgid "PDA is low in power (%.0f%%)" msgstr "La carica della batteria del palmare Ăš bassa (%.0f%%)" #. TRANSLATORS: cell phone (mobile) is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1378 -#: ../plugins/power/gsd-power-manager.c:1550 -#: ../plugins/power/gsd-power-manager.c:1561 +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 msgid "Cell phone battery low" msgstr "Carica batteria cellulare bassa" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1381 +#: ../plugins/power/gsd-power-manager.c:1387 #, c-format msgid "Cell phone is low in power (%.0f%%)" msgstr "La carica della batteria del telefono cellulare Ăš bassa (%.0f%%)" #. TRANSLATORS: media player, e.g. mp3 is getting a little low -#: ../plugins/power/gsd-power-manager.c:1386 +#: ../plugins/power/gsd-power-manager.c:1392 msgid "Media player battery low" msgstr "Carica batteria lettore multimediale bassa" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1389 +#: ../plugins/power/gsd-power-manager.c:1395 #, c-format msgid "Media player is low in power (%.0f%%)" msgstr "La carica della batteria del lettore multimediale Ăš bassa (%.0f%%)" #. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1393 -#: ../plugins/power/gsd-power-manager.c:1570 +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 msgid "Tablet battery low" msgstr "Carica batteria tavoletta grafica bassa" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1396 +#: ../plugins/power/gsd-power-manager.c:1402 #, c-format msgid "Tablet is low in power (%.0f%%)" msgstr "La carica della batteria della tavoletta grafica Ăš bassa (%.0f%%)" #. TRANSLATORS: computer, e.g. ipad is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1400 -#: ../plugins/power/gsd-power-manager.c:1579 +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 msgid "Attached computer battery low" msgstr "Carica batteria computer collegato bassa" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1403 +#: ../plugins/power/gsd-power-manager.c:1409 #, c-format msgid "Attached computer is low in power (%.0f%%)" msgstr "La carica della batteria del computer collegato Ăš bassa (%.0f%%)" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1440 +#: ../plugins/power/gsd-power-manager.c:1446 msgid "Battery is low" msgstr "La carica della batteria Ăš bassa" #. TRANSLATORS: laptop battery critically low, and only have one kind of battery -#: ../plugins/power/gsd-power-manager.c:1482 +#: ../plugins/power/gsd-power-manager.c:1488 msgid "Battery critically low" msgstr "Carica batteria quasi esaurita" #. TRANSLATORS: laptop battery critically low, and we have more than one type of battery #. TRANSLATORS: laptop battery is really, really, low -#: ../plugins/power/gsd-power-manager.c:1485 -#: ../plugins/power/gsd-power-manager.c:1669 +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 msgid "Laptop battery critically low" msgstr "Carica batteria del portatile quasi esaurita" #. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything -#: ../plugins/power/gsd-power-manager.c:1494 +#: ../plugins/power/gsd-power-manager.c:1500 msgid "Plug in your AC adapter to avoid losing data." msgstr "Collegare il sistema alla rete elettrica per non perdere dati." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1498 +#: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." msgstr "" @@ -2476,7 +2479,7 @@ "in sospensione." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1502 +#: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." msgstr "" @@ -2484,7 +2487,7 @@ "in ibernazione." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1506 +#: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." msgstr "" @@ -2492,13 +2495,13 @@ #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low -#: ../plugins/power/gsd-power-manager.c:1513 -#: ../plugins/power/gsd-power-manager.c:1705 +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" msgstr "Carica UPS quasi esaurita" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1517 +#: ../plugins/power/gsd-power-manager.c:1523 #, c-format msgid "" "Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " @@ -2509,7 +2512,7 @@ "evitare la perdita di dati." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1526 +#: ../plugins/power/gsd-power-manager.c:1532 #, c-format msgid "" "Wireless mouse is very low in power (%.0f%%). This device will soon stop " @@ -2519,7 +2522,7 @@ "Se non viene ricaricato, il dispositivo smetterĂ  di funzionare." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1534 +#: ../plugins/power/gsd-power-manager.c:1540 #, c-format msgid "" "Wireless keyboard is very low in power (%.0f%%). This device will soon stop " @@ -2529,7 +2532,7 @@ "%%) Se non viene ricaricato, il dispositivo smetterĂ  di funzionare." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1543 +#: ../plugins/power/gsd-power-manager.c:1549 #, c-format msgid "" "PDA is very low in power (%.0f%%). This device will soon stop functioning if " @@ -2539,7 +2542,7 @@ "viene ricaricato, il dispositivo smetterĂ  di funzionare." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1553 +#: ../plugins/power/gsd-power-manager.c:1559 #, c-format msgid "" "Cell phone is very low in power (%.0f%%). This device will soon stop " @@ -2549,7 +2552,7 @@ "%%) Se non viene ricaricato, il dispositivo smetterĂ  di funzionare." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1564 +#: ../plugins/power/gsd-power-manager.c:1570 #, c-format msgid "" "Media player is very low in power (%.0f%%). This device will soon stop " @@ -2559,7 +2562,7 @@ "%%) Se non viene ricaricato, il dispositivo smetterĂ  di funzionare." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1573 +#: ../plugins/power/gsd-power-manager.c:1579 #, c-format msgid "" "Tablet is very low in power (%.0f%%). This device will soon stop functioning " @@ -2569,7 +2572,7 @@ "%%) Se non viene ricaricato, il dispositivo smetterĂ  di funzionare." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1582 +#: ../plugins/power/gsd-power-manager.c:1588 #, c-format msgid "" "Attached computer is very low in power (%.0f%%). The device will soon " @@ -2579,14 +2582,14 @@ "%%) Se non viene ricaricato, il dispositivo smetterĂ  di funzionare." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1622 -#: ../plugins/power/gsd-power-manager.c:1632 -#: ../plugins/power/gsd-power-manager.c:1768 +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 msgid "Battery is critically low" msgstr "La carica della batteria Ăš quasi esaurita" #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1677 +#: ../plugins/power/gsd-power-manager.c:1683 msgid "" "The battery is below the critical level and this computer will power-off when the battery becomes completely empty." @@ -2595,7 +2598,7 @@ "quando la batteria sarĂ  completamente esaurita." #. TRANSLATORS: computer will suspend -#: ../plugins/power/gsd-power-manager.c:1683 +#: ../plugins/power/gsd-power-manager.c:1689 msgid "" "The battery is below the critical level and this computer is about to " "suspend.\n" @@ -2608,7 +2611,7 @@ "il computer in sospensione." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1690 +#: ../plugins/power/gsd-power-manager.c:1696 msgid "" "The battery is below the critical level and this computer is about to " "hibernate." @@ -2617,7 +2620,7 @@ "ibernato." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1695 +#: ../plugins/power/gsd-power-manager.c:1701 msgid "" "The battery is below the critical level and this computer is about to " "shutdown." @@ -2626,7 +2629,7 @@ "spento." #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1713 +#: ../plugins/power/gsd-power-manager.c:1719 msgid "" "UPS is below the critical level and this computer will power-off when " "the UPS becomes completely empty." @@ -2635,7 +2638,7 @@ "spegnerĂ  quando la carica dell'UPS sarĂ  esaurita." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1719 +#: ../plugins/power/gsd-power-manager.c:1725 msgid "" "UPS is below the critical level and this computer is about to hibernate." msgstr "" @@ -2643,71 +2646,71 @@ "essere messo in ibernazione." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1724 +#: ../plugins/power/gsd-power-manager.c:1730 msgid "UPS is below the critical level and this computer is about to shutdown." msgstr "" "La carica dell'UPS Ăš sotto il livello critico e questo computer sta per " "essere spento." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2218 +#: ../plugins/power/gsd-power-manager.c:2224 msgid "Lid has been opened" msgstr "Coperchio aperto" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2295 +#: ../plugins/power/gsd-power-manager.c:2301 msgid "Lid has been closed" msgstr "Coperchio chiuso" #. TRANSLATORS: this is the title of the power manager status icon #. * that is only shown in fallback mode -#: ../plugins/power/gsd-power-manager.c:3616 +#: ../plugins/power/gsd-power-manager.c:3692 msgid "Power Manager" msgstr "Gestione alimentazione" +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:1 +msgid "Authentication is required to modify the laptop brightness" +msgstr "È necessario autenticarsi per modificare la luminositĂ  del portatile" + #. SECURITY: #. - A normal active user on the local machine does not need permission #. to change the backlight brightness. #. -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:5 +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 msgid "Modify the laptop brightness" msgstr "Modifica la luminitĂ  del portatile" -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 -msgid "Authentication is required to modify the laptop brightness" -msgstr "È necessario autenticarsi per modificare la luminositĂ  del portatile" - #: ../plugins/power/power.gnome-settings-plugin.in.h:2 msgid "Power plugin" msgstr "Plugin per l'alimentazione" #. Translators: We are configuring new printer -#: ../plugins/print-notifications/gsd-printer.c:942 +#: ../plugins/print-notifications/gsd-printer.c:908 msgid "Configuring new printer" msgstr "Configurazione nuova stampante" #. Translators: Just wait -#: ../plugins/print-notifications/gsd-printer.c:944 +#: ../plugins/print-notifications/gsd-printer.c:910 msgid "Please wait..." msgstr "Attendere..." #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:971 +#: ../plugins/print-notifications/gsd-printer.c:937 msgid "Missing printer driver" msgstr "Driver della stampante assente" #. Translators: We have no driver installed for the device -#: ../plugins/print-notifications/gsd-printer.c:980 +#: ../plugins/print-notifications/gsd-printer.c:946 #, c-format msgid "No printer driver for %s." msgstr "Nessun driver stampante per %s." #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:985 +#: ../plugins/print-notifications/gsd-printer.c:951 msgid "No driver for this printer." msgstr "Nessun driver per questa stampante." -#: ../plugins/print-notifications/gsd-printer.c:1088 +#: ../plugins/print-notifications/gsd-printer.c:1049 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 @@ -3137,70 +3140,83 @@ msgid "A transaction that cannot be interrupted is running" msgstr "È in esecuzione una transazione che non puĂČ essere interrotta" -#: ../plugins/wacom/gsd-wacom-device.c:882 +#: ../plugins/wacom/gsd-wacom-device.c:909 #, c-format msgid "Left Ring Mode #%d" -msgstr "" +msgstr "ModalitĂ  Ring sinistro #%d" -#: ../plugins/wacom/gsd-wacom-device.c:889 +#: ../plugins/wacom/gsd-wacom-device.c:916 #, c-format msgid "Right Ring Mode #%d" -msgstr "" +msgstr "ModalitĂ  Ring destro #%d" -#: ../plugins/wacom/gsd-wacom-device.c:917 +#: ../plugins/wacom/gsd-wacom-device.c:944 #, c-format msgid "Left Touchstrip Mode #%d" -msgstr "" +msgstr "ModalitĂ  Touch Strip sinistro #%d" -#: ../plugins/wacom/gsd-wacom-device.c:924 +#: ../plugins/wacom/gsd-wacom-device.c:951 #, c-format msgid "Right Touchstrip Mode #%d" -msgstr "" +msgstr "ModalitĂ  Touch Strip destro #%d" -#: ../plugins/wacom/gsd-wacom-device.c:939 +#: ../plugins/wacom/gsd-wacom-device.c:966 #, c-format msgid "Left Touchring Mode Switch" -msgstr "" +msgstr "Interruttore modalitĂ  Touch Ring sinistro" -#: ../plugins/wacom/gsd-wacom-device.c:941 +#: ../plugins/wacom/gsd-wacom-device.c:968 #, c-format msgid "Right Touchring Mode Switch" -msgstr "" +msgstr "Interruttore modalitĂ  Touch Ring destro" -#: ../plugins/wacom/gsd-wacom-device.c:944 +#: ../plugins/wacom/gsd-wacom-device.c:971 #, c-format msgid "Left Touchstrip Mode Switch" -msgstr "" +msgstr "Interruttore modalitĂ  Touch Strip sinistro" -#: ../plugins/wacom/gsd-wacom-device.c:946 +#: ../plugins/wacom/gsd-wacom-device.c:973 #, c-format msgid "Right Touchstrip Mode Switch" -msgstr "" +msgstr "Interruttore modalitĂ  Touch Strip destro" -#: ../plugins/wacom/gsd-wacom-device.c:951 +#: ../plugins/wacom/gsd-wacom-device.c:978 #, c-format msgid "Mode Switch #%d" -msgstr "" +msgstr "Interruttore modalitĂ  #%d" -#: ../plugins/wacom/gsd-wacom-device.c:1023 +#: ../plugins/wacom/gsd-wacom-device.c:1050 #, c-format msgid "Left Button #%d" -msgstr "" +msgstr "Pulsante sinistro #%d" -#: ../plugins/wacom/gsd-wacom-device.c:1026 +#: ../plugins/wacom/gsd-wacom-device.c:1053 #, c-format msgid "Right Button #%d" -msgstr "" +msgstr "Pulsante destro #%d" -#: ../plugins/wacom/gsd-wacom-device.c:1029 +#: ../plugins/wacom/gsd-wacom-device.c:1056 #, c-format msgid "Top Button #%d" -msgstr "" +msgstr "Pulsante superiore #%d" -#: ../plugins/wacom/gsd-wacom-device.c:1032 +#: ../plugins/wacom/gsd-wacom-device.c:1059 #, c-format msgid "Bottom Button #%d" +msgstr "Pulsante inferiore #%d" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:1 +msgid "Authentication is required to modify the lit LED for a Wacom tablet" msgstr "" +"È necessario autenticarsi per modificare il LED acceso di una tavoletta Wacom" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "Modifica il LED acceso di una tavoletta Wacom" #: ../plugins/xrandr/gsd-xrandr-manager.c:500 msgid "Could not switch the monitor configuration" @@ -3258,21 +3274,21 @@ msgstr "Impossibile applicare la configurazione memorizzata per i monitor" #: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 -msgid "XRandR" -msgstr "XRandR" - -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 msgid "Set up screen size and rotation settings" msgstr "Imposta la dimensione dello schermo e le impostazioni di rotazione" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 -msgid "X Settings" -msgstr "Impostazioni X" +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 +msgid "XRandR" +msgstr "XRandR" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 msgid "Manage X Settings" msgstr "Gestisce le impostazioni di X" +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 +msgid "X Settings" +msgstr "Impostazioni X" + #~ msgid "" #~ "Priority to use for this plugin in gnome-settings-daemon startup queue." #~ msgstr "" diff -Nru gnome-settings-daemon-3.4.0/po/kn.po gnome-settings-daemon-3.4.1/po/kn.po --- gnome-settings-daemon-3.4.0/po/kn.po 2011-02-16 18:39:20.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/kn.po 2012-04-16 12:34:36.000000000 +0000 @@ -2,1291 +2,3607 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Shankar Prasad , 2008, 2009, 2010. +# Shankar Prasad , 2008, 2009, 2010, 2012. msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon.master.kn\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-22 12:44+0530\n" -"PO-Revision-Date: 2010-04-22 12:45+0530\n" -"Last-Translator: Shankar Prasad \n" -"Language-Team: kn-IN <>\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" +"settings-daemon&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2012-03-26 16:43+0000\n" +"PO-Revision-Date: 2012-03-30 19:18+0530\n" +"Last-Translator: s\n" +"Language-Team: American English \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.0\n" +"X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: en_US\n" -#: ../data/50-accessibility.xml.in.h:1 -msgid "Accessibility" -msgstr "àČšàČżàČČàłàȕàČŁàł†" - -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:1 -msgid "Free percentage notify threshold" -msgstr "àČźàłàČ•àłàČ€ àČȘàłàČ°àČ€àČżàȶàČ€ àČžàł‚àȚàČšàł†àČŻ àČźàČżàČ€àČż" - -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:2 -msgid "Free space no notify threshold" -msgstr "àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ àČžàł‚àȚàČšàł† àȇàČ°àČŠ àČźàČżàČ€àČż" - -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:3 -msgid "Minimum notify period for repeated warnings" -msgstr "àČȘàłàČšàČ°àČŸàČ”àČ°àłàČ€àČżàČ€ àȎàČšàłàȚàČ°àČżàČ•àł†àȗàČł àȕàČšàČżàČ·àłàȟ àČžàł‚àȚàČšàČŸ àȕàČŸàČČàČŸàČ”àȧàČż" +#: ../data/gnome-settings-daemon.desktop.in.in.h:1 +msgid "GNOME Settings Daemon" +msgstr "GNOME àČžàČżàČŠàłàȧàČ€àł†àȗàČł àČĄàł€àČźàČšàł" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:4 -msgid "Mount paths to ignore" -msgstr "àȆàČČàČ•àłàČ·àČżàČžàČŹàł‡àȕàČżàČ°àłàČ” àȆàČ°àł‹àČčàČŁàČŸ àČźàČŸàČ°àłàȗàȗàČłàł" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 +msgid "Smartcard removal action" +msgstr "àČžàłàČźàČŸàČ°àłàČŸàł àȕàČŸàČ°àłàČĄàł àČ€àł†àČ—àł†àČŠàłàČčàČŸàČ•àłàČ”àČżàČ•àł† àČ•àłàČ°àČżàČŻàł†" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:5 +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 msgid "" -"Percentage free space threshold for initial warning of low disk space. If " -"the percentage free space drops below this, a warning will be shown" +"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " +"action will get performed when the smartcard used for log in is removed." msgstr "" -"àȕàČĄàČżàČźàł† àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àČżàČŠàł† àȎàȂàČŠàł àȎàČšàłàȚàČ°àČżàČžàČČàł àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ” àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ àČȘàłàČ°àČ€àČżàȶàČ€àČŠ àČźàČżàČ€àČż. àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ " -"àČȘàłàČ°àČ€àČżàȶàČ€àČ”àł àȇàČŠàČ•àłàȕàČżàȂàČ€ àȕàČĄàČżàČźàł†àČŻàČŸàČŠàČČàłàČČàČż, àȒàȂàČŠàł àȎàČšàłàȚàČ°àČżàČ•àł†àČŻàČšàłàČšàł àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:6 -msgid "Specify a list of mount paths to ignore when they run low on space." -msgstr "àČžàłàČ„àČłàČŸàČ”àȕàČŸàȶàČ”àł àȕàČĄàČżàČźàł† àȇàČŠàłàČŠàČŸàȗ àČŻàČŸàČ” àȆàČ°àł‹àČčàČŁàČŸ àČźàČŸàČ°àłàȗàȗàČł àČȘàČŸàłàȟàČżàČŻàČšàłàČšàł àȆàČČàČ•àłàČ·àČżàČžàČŹàł‡àČ•àł àȎàȂàČŠàł àČžàł‚àȚàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 +msgid "Disable touchpad while typing" +msgstr "àČŸàłˆàČȘàł àČźàČŸàČĄàłàČ”àČŸàȗ àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàČšàłàČšàł àȅàȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:7 +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 msgid "" -"Specify a time in minutes. Subsequent warnings for a volume will not appear " -"more often than this period." +"Set this to TRUE if you have problems with accidentally hitting the touchpad " +"while typing." msgstr "" -"àČžàČźàČŻàČ”àČšàłàČšàł àČšàČżàČźàČżàČ·àČŠàČČàłàČČàČż àČžàł‚àȚàČżàČžàČż. àȒàȂàČŠàł àČȘàČ°àČżàČźàČŸàČŁàČ•àłàČ•àł† àČ€àČ°àłàČ”àČŸàČŻàČŠ àȎàČšàłàȚàČ°àČżàČ•àł†àȗàČłàł àȈ àȕàČŸàČČàČŸàČ”àȧàČżàČŻ àČšàȂàČ€àČ° " -"àȕàČŸàČŁàČżàČžàČżàČ•àłŠàČłàłàČłàłàČ”àłàČŠàČżàČČàłàČČ." +"àČŸàłˆàČȘàČżàČžàłàČ”àČŸàȗ àȆàȕàČžàłàČźàČżàȕàČ”àČŸàȗàČż àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàł àČ—àł† àČ•àłˆ àČ€àČŸàČ—àłàČ” àČ€àłŠàȂàČŠàČ°àł† àȇàČŠàłàČŠàČ°àł† àȇàČŠàČšàłàČšàł TRUE àČ—àł† " +"àČŹàČŠàČČàČŸàČŻàČżàČžàČż." -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:8 -msgid "" -"Specify an amount in GB. If the amount of free space is more than this, no " -"warning will be shown" -msgstr "" -"àČȘàłàČ°àČźàČŸàČŁàČ”àČšàłàČšàł GB àČŻàČČàłàČČàČż àČžàł‚àȚàČżàČžàČż. àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ àČȘàłàČ°àČźàČŸàČŁàČ”àł àȇàČŠàČ•àłàȕàČżàȂàČ€ àČčàł†àČšàłàȚàČżàČŠàłàČŠàČČàłàČČàČż, àČŻàČŸàČ”àłàČŠàł† " -"àȎàČšàłàȚàČ°àČżàČ•àł†àȗàČłàł àȕàČŸàČŁàČżàČžàČżàČ•àłŠàČłàłàČłàłàČ”àłàČŠàČżàČČàłàČČ" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 +msgid "Enable horizontal scrolling" +msgstr "àȅàČĄàłàČĄ àȚàČČàČżàČžàłàČ”àČżàČ•àł†àČŻàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:9 +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 msgid "" -"Specify the percentage that the free disk space should reduce by before " -"issuing a subsequent warning" +"Set this to TRUE to allow horizontal scrolling by the same method selected " +"with the scroll_method key." msgstr "" -"àČ€àČ°àłàČ”àČŸàČŻàČŠ àȎàČšàłàȚàČ°àČżàČ•àł†àČŻàČšàłàČšàł àČšàł€àČĄàłàČ” àČźàłŠàČŠàČČàł àČĄàČżàČžàłàȕàČżàČš àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČ”àł àČŻàČŸàČ” àČȘàłàČ°àČ€àČżàȶàČ€àČ•àłàČ•àł† àȕàČĄàČżàČźàł† àȆàȗ " -"àČŹàł‡àČ•àł àȎàȂàČŠàł àČžàł‚àȚàČżàČžàČż" - -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:10 -msgid "Subsequent free percentage notify threshold" -msgstr "àȆàČšàȂàČ€àČ°àČŠ àČźàłàČ•àłàČ€ àČȘàłàČ°àČ€àČżàȶàČ€ àČžàł‚àȚàČšàČŸ àČźàČżàČ€àČż" +"scroll_method àČ•àł€àČČàČżàČŻàČżàȂàČŠ àȆàČ°àČżàČžàČČàČŸàČŠ àČ”àČżàȧàČŸàČšàČŠ àČ°àł€àČ€àČżàČŻàČČàłàČČàČżàČŻàł† àȅàČĄàłàČĄ àȚàČČàČšàł†àČŻàČšàłàČšàł àȅàČšàłàČźàČ€àČżàČžàČČàł " +"àȇàČŠàČšàłàČšàł TRUE àČ—àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČż." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:1 -msgid "Binding to eject an optical disk." -msgstr "àȒàȂàČŠàł àȆàČȘàłàȟàČżàȕàČČàł àČĄàČżàČžàłàȕàČšàłàČšàł àČčàłŠàČ°àČ€àČłàłàČłàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 +msgid "Select the touchpad scroll method" +msgstr "àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàł àȚàČČàČšàł†àČŻ àČ”àČżàȧàČŸàČšàČ”àČšàłàČšàł àȆàČ°àČżàČžàČż" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:2 +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 #, fuzzy -msgid "Binding to enable or disable the touchpad." -msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:3 -msgid "Binding to launch the calculator." -msgstr "àČ•àłàČŻàČŸàČČàłàČ•àłàČČàł‡àȟàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:4 -msgid "Binding to launch the email client." -msgstr "àȇàČźàłˆàČČàł àČ•àłàČČàłˆàȂàȟàČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:5 -msgid "Binding to launch the help browser." -msgstr "àČšàł†àČ°àČ”àČżàČš àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:6 -msgid "Binding to launch the media player." -msgstr "àČźàł€àČĄàČżàČŻàČŸ àČȘàłàČČàł‡àČŻàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:7 -msgid "Binding to launch the search tool." -msgstr "àČčàłàČĄàłàČ•àł àȉàČȘàȕàČ°àČŁàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#| msgid "" +#| "Select the touchpad scroll method. Supported values are: 0 - disabled, 1 " +#| "- edge scrolling, 2 - two-finger scrolling" +msgid "" +"Select the touchpad scroll method. Supported values are: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "" +"àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàł àȚàČČàČšàł†àČŻ àČ”àČżàȧàČŸàČšàČ”àČšàłàČšàł àȆàČ°àČżàČžàČż. àČŹàł†àȂàČŹàČČàČ”àČżàČ°àłàČ” àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: 0 - àȅàȶàČ•àłàČ€àČ—àłŠàȂàČĄ, 1 " +"- " +"àȅàȂàȚàČżàČšàČČàłàČČàČż àȚàČČàČšàł†, 2 - àȎàČ°àČĄàł àČŹàł†àČ°àČłàČżàČš àȚàČČàČšàł†" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:8 -msgid "Binding to launch the web browser." -msgstr "àȜàČŸàČČ àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 +msgid "Enable mouse clicks with touchpad" +msgstr "àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàČżàČšàČżàȂàČŠ àČźàłŒàČžàłâ€ŒàČ•àłàČČàČżàČ•àłâ€ŒàȗàČłàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČż" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:9 -msgid "Binding to lock the screen." -msgstr "àČ€àł†àČ°àł†àČŻàČšàłàČšàł àČČàČŸàČ•àł àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 +msgid "" +"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." +msgstr "" +"àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàłâ€ŒàČšàČČàłàČČàČż àČźàł†àČČàłàČČàČ—àł† àČ€àČŸàłàČŸàłàČ”àłàČŠàČ° àČźàł‚àČČàȕ àČźàłŒàČžàłâ€Œ àČ•àłàČČàČżàČ•àłâ€ŒàȗàČłàČšàłàČšàł àȕàČłàłàČčàČżàČžàłàČ”àłàČŠàČšàłàČšàł " +"àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł àȇàČŠàČšàłàČšàł " +"TRUE àČ—àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČż." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:10 -msgid "Binding to log out." -msgstr "àČšàČżàČ°àłàȗàČźàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 +msgid "Enable touchpad" +msgstr "àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàČšàłàČšàł àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:11 -msgid "Binding to lower the system volume." -msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àȕàČĄàČżàČźàł† àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 +msgid "Set this to TRUE to enable all touchpads." +msgstr "àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàłâ€Œ àȅàČšàłàČšàł àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àȇàČŠàČšàłàČšàł TRUE àČ—àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČż." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:12 -msgid "Binding to mute the system volume." -msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àČźàł‚àȕàČ—àłŠàČłàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 +msgid "" +"Highlights the current location of the pointer when the Control key is " +"pressed and released." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:13 -msgid "Binding to open the Home folder." -msgstr "àČšàł†àČČàł† àȕàČĄàČ€àČ•àł‹àȶàČ”àČšàłàČšàł àČ€àł†àČ°àł†àČŻàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 +msgid "Double click time" +msgstr "àČœàł‹àČĄàČż àČ•àłàČČàČżàČ•àł àČžàČźàČŻ" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:14 -msgid "Binding to pause playback." -msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàČ•àł àȅàČšàłàČšàł àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:15 +msgid "Length of a double click in milliseconds." +msgstr "àČœàł‹àČĄàČż-àČ•àłàČČàČżàČ•àłâ€ŒàČš (àČĄàČŹàČČàł àČ•àłàČČàČżàČ•àł) àȗàČŸàČ€àłàČ°, àČźàČżàČČàČżàČžàł†àČ•àł†àȂàČĄàłàȗàČłàČČàłàČČàČż." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:15 -msgid "Binding to raise the system volume." -msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:16 +msgid "Drag threshold" +msgstr "àȎàČłàł†àČŻàłàČ” àČźàČżàČ€àČż" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:16 -msgid "Binding to skip to next track." -msgstr "àČźàłàȂàČŠàČżàČš àČčàČŸàČĄàČżàČ—àł† àČčàł‹àȗàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:17 +msgid "Distance before a drag is started." +msgstr "àȎàČłàł†àČŻàłàČ”àČżàČ•àł†àČŻàČšàłàČšàł àȆàČ°àȂàČ­àČ—àłŠàČłàČżàČžàłàČ”àłàČŠàČ•àłàČ•àł‚ àČźàłàȂàȚàČżàČš àČŠàł‚àČ°." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:17 -msgid "Binding to skip to previous track." -msgstr "àČčàČżàȂàČŠàČżàČš àČčàČŸàČĄàČżàČ—àł† àČčàł‹àȗàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 +msgid "Middle button emulation" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:18 -msgid "Binding to start playback (or toggle play/pause)." -msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàČ•àł àȅàČšàłàČšàł(àȅàČ„àČ” àČȘàłàČČàł‡/àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€àČŠ àČšàČĄàłàČ”àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČČàł) àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 +msgid "" +"Enables middle mouse button emulation through simultaneous left and right " +"button click." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:19 -msgid "Binding to stop playback." -msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàČ•àł àȅàČšàłàČšàł àČšàČżàČČàłàČČàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 +msgid "Whether the tablet's orientation is locked, or rotated automatically." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:20 -msgid "Eject" -msgstr "àČčàłŠàČ°àČ€àČłàłàČłàł" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 +msgid "Device hotplug custom command" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:21 -msgid "Home folder" -msgstr "àČšàł†àČČàł† àȕàČĄàČ€àČ•àł‹àȶ" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 +msgid "Command to be run when a device is added or removed." +msgstr "àČžàČŸàȧàČšàČ”àČšàłàČšàł àČžàł‡àČ°àČżàČžàČżàČŠàČŸàȗ àȅàČ„àČ” àČ€àł†àČ—àł†àČŠàłàČčàČŸàȕàČżàČŠàČŸàȗ àȚàČČàČŸàČŻàČżàČžàČŹàł‡àȕàČżàČ°àłàČ” àȆàČœàłàČžàł†." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:22 -msgid "Launch calculator" -msgstr "àČ•àłàČŻàČŸàČČàłàČ•àłàČČàł‡àȟàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 +msgid "Activation of this plugin" +msgstr "àȈ àČȘàłàČČàČ—àłâ€ŒàȇàČšàłâ€ŒàČš àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČ•àł†" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:23 -msgid "Launch email client" -msgstr "àȇàČźàłˆàČČàł àČ•àłàČČàłˆàȂàȟàČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgstr "àȈ àČȘàłàČČàČ—àłâ€ŒàȇàČšàłâ€Œ àȅàČšàłàČšàł gnome-settings-daemon àȇàȂàČŠ àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČ•àł† àȅàČ„àČ” àČŹàł‡àČĄàČ”àł†" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:24 -msgid "Launch help browser" -msgstr "àČšàł†àČ°àČ”àČżàČš àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 +msgid "Priority to use for this plugin" +msgstr "àȈ àČȘàłàČČàČ—àłâ€ŒàȇàČšàłâ€ŒàȗàČŸàȗàČż àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àȆàČŠàłàČŻàČ€àł†" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:25 -msgid "Launch media player" -msgstr "àČźàł€àČĄàČżàČŻàČŸ àČȘàłàČČàł‡àČŻàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 +msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" +msgstr "" +"àȈ àČȘàłàČČàČ—àłâ€ŒàȇàČšàłâ€ŒàȗàČŸàȗàČż gnome-settings-daemon àȆàČ°àȂàČ­àČŠ àČžàČ°àČ€àČżàČŻàČČàłàČČàČż àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àȆàČŠàłàČŻàČ€àł†" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:26 -msgid "Launch web browser" -msgstr "àȜàČŸàČČ àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 +msgid "Wacom stylus absolute mode" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:27 -msgid "Lock screen" -msgstr "àČ€àł†àČ°àł†àČŻàČšàłàČšàł àČČàČŸàČ•àł àČźàČŸàČĄàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 +msgid "Enable this to set the tablet to absolute mode." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:28 -msgid "Log out" -msgstr "àČšàČżàČ°àłàȗàČźàČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 +msgid "Wacom tablet area" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:29 -msgid "Next track" -msgstr "àČźàłàȂàČŠàČżàČš àČčàČŸàČĄàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 +msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:30 -msgid "Pause playback" -msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàȕàČšàłàČšàł àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 +msgid "Wacom tablet rotation" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:31 -msgid "Play (or play/pause)" -msgstr "àČȘàłàČČàł‡ (àȅàČ„àČ” àČȘàłàČČàł‡/àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€)" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 +msgid "" +"Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " +"'ccw' for 90 degree counterclockwise." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:32 -msgid "Previous track" -msgstr "àČčàČżàȂàČŠàČżàČš àČčàČŸàČĄàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 +msgid "Wacom touch feature" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:33 -msgid "Search" -msgstr "àČčàłàČĄàłàČ•àł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 +msgid "Enable this to move the cursor when the user touches the tablet." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:34 -msgid "Stop playback" -msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàȕàČšàłàČšàł àČšàČżàČČàłàČČàČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 +msgid "Wacom tablet PC feature" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:35 -msgid "Toggle touchpad" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 +msgid "Enable this to only report stylus events when the tip is pressed." msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:36 -msgid "Volume down" -msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁ àȇàČłàČżàČ•àł†" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 +msgid "Wacom display mapping" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:37 -msgid "Volume mute" -msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁ àČźàł‚àȕ" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 +msgid "" +"EDID information of monitor to map tablet to. Must be in the format [vendor, " +"product, serial]. [\"\",\"\",\"\"] disables mapping." +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:38 -msgid "Volume step" -msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁàČŠ àČčàȂàČ€" - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:39 -msgid "Volume step as percentage of volume." -msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁàČŠ àČȘàłàČ°àČ€àČżàȶàČ€àČ”àČŸàȗàČż àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁàČŠ àČčàȂàČ€." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 +msgid "Wacom stylus pressure curve" +msgstr "" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:40 -msgid "Volume up" -msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁ àȏàČ°àČżàČ•àł†" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." +msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:1 -msgid "File for default configuration for RANDR" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 +msgid "Wacom stylus button mapping" msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:2 -msgid "" -"If a notification icon with display related things should be shown in the " -"panel." -msgstr "àČȘàłàČ°àČŠàČ°àłàȶàČšàČ•àłàČ•àł† àČžàȂàČŹàȂàȧàČżàČ€àČ”àČŸàČŠ àČ”àČżàČ·àČŻàȗàČłàČšàłàČšàł àȒàČłàČ—àłŠàȂàČĄ àȒàȂàČŠàł àČžàł‚àȚàČšàČŸ àȚàČżàČčàłàČšàł†àČŻàČšàłàČšàł àČ«àČČàȕàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàČŹàł‡àČ•àł†." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 +msgid "Set this to the logical button mapping." +msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:3 -msgid "Show Displays in Notification Area" -msgstr "àČžàł‚àȚàČšàł†àȗàČłàČšàłàČšàł àČžàł‚àȚàČšàČŸ àČžàłàČ„àČłàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 +msgid "Wacom stylus pressure threshold" +msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:4 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 msgid "" -"The XRANDR plugin will look for a default configuration in the file " -"specified by this key. This is similar to the ~/.config/monitors.xml that " -"normally gets stored in users' home directories. If a user does not have " -"such a file, or has one that does not match the user's setup of monitors, " -"then the file specified by this key will be used instead." +"Set this to the pressure value at which a stylus click event is generated." msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:5 -msgid "Turn on external monitor after system boot" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 +msgid "Wacom eraser pressure curve" msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:6 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 msgid "" -"Turn on external monitor after system boot if user plugin external monitor " -"when system boot." +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:7 -msgid "Turn on laptop monitor after system boot" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 +msgid "Wacom eraser button mapping" msgstr "" -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:8 -msgid "" -"Turn on laptop monitor after system boot if user plugin external monitor " -"when system boot." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 +msgid "Wacom eraser pressure threshold" msgstr "" -#: ../data/desktop_gnome_font_rendering.schemas.in.h:1 -msgid "Antialiasing" -msgstr "àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 +msgid "" +"Set this to the pressure value at which an eraser click event is generated." +msgstr "" -#: ../data/desktop_gnome_font_rendering.schemas.in.h:2 -msgid "DPI" -msgstr "DPI" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 +msgid "Wacom button action type" +msgstr "" -#: ../data/desktop_gnome_font_rendering.schemas.in.h:3 -msgid "Hinting" -msgstr "àČčàČżàȂàȟàČżàȂàČ—àł" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 +msgid "The type of action triggered by the button being pressed." +msgstr "" -#: ../data/desktop_gnome_font_rendering.schemas.in.h:4 -msgid "RGBA order" -msgstr "RGBA àČ•àłàČ°àČź" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 +msgid "Key combination for the custom action" +msgstr "àȅàȗàČ€àłàČŻàČŸàČšàłàČ—àłàČŁ àČ•àłàČ°àČżàČŻàł†àČŻ àČ•àł€àČČàČż àČžàȂàČŻàł‹àȜàČšàł†" -#: ../data/desktop_gnome_font_rendering.schemas.in.h:5 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 msgid "" -"The order of subpixel elements on an LCD screen; only used when antialiasing " -"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " -"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " -"on bottom." +"The keyboard shortcut generated when the button is pressed for custom " +"actions." msgstr "" -"àȒàȂàČŠàł LCD àČ€àł†àČ°àł†àČŻàČČàłàČČàČż àČžàČŹàłâ€ŒàČȘàČżàČ•àłàČžàł†àČČàłâ€Œ àȘàȟàȕàȗàČł àČ•àłàČ°àČź; àČ•àł‡àČ”àČČ \"rgba\" àČ—àł† àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł àČźàČŸàČĄàłàČ”àČŸàȗ " -"àČźàČŸàČ€àłàČ° àČŹàČłàČžàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†. àČžàČŸàČ§àłàČŻàČ”àČżàČ°àłàČ” àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: àȎàČĄàČ­àČŸàȗàČŠàČČàłàČČàČż àČ•àł†àȂàČȘàČżàȗàČŸàȗàČż \"rgb\" (àČžàČ°àłàČ”àł† " -"àČžàČŸàČźàČŸàČšàłàČŻ), àȎàČĄàČ­àČŸàȗàČŠàČČàłàČČàČż àČšàł€àČČàČżàȗàČŸàȗàČż \"bgr\", àČźàł‡àČČàłàČ­àČŸàȗàČŠàČČàłàČČàČż àČ•àł†àȂàČȘàČżàȗàČŸàȗàČż \"vrgb\", " -"àȅàČĄàČżàČ­àČŸàȗàČŠàČČàłàČČàČż àČ•àł†àȂàČȘàČżàȗàČŸàȗàČż \"vbgr\"." -#: ../data/desktop_gnome_font_rendering.schemas.in.h:6 -msgid "" -"The resolution used for converting font sizes to pixel sizes, in dots per " -"inch." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 +msgid "Key combinations for an elevator custom action" msgstr "" -"àȅàČ•àłàČ·àČ° àČ¶àłˆàČČàČżàČŻ àȗàČŸàČ€àłàČ°àȗàČłàČšàłàČšàł àČȘàČżàČ•àłàČžàł†àČČàłâ€Œ àȗàČŸàČ€àłàČ°àȗàČłàČŸàȗàČż àČŹàČŠàČČàČŸàČŻàČżàČžàČČàł àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àČ°àł†àČžàČČàłàČŻàł‚àȶàČšàł, àČȘàłàČ°àČ€àČż " -"àȇàȂàȚàČżàČšàČČàłàČČàČżàČš àČšàłàČ•àłàȕàČżàȗàČł àȆàȧàČŸàČ°àČŠàČČàłàČČàČż." -#: ../data/desktop_gnome_font_rendering.schemas.in.h:7 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 msgid "" -"The type of antialiasing to use when rendering fonts. Possible values are: " -"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " -"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +"The keyboard shortcuts generated when a touchring or touchstrip is used for " +"custom actions (up followed by down)." msgstr "" -"àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČżàȗàČłàČšàłàČšàł àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł àČźàČŸàČĄàłàČ”àČŸàȗ àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àČŹàČ—àł†àȗàČłàł. àČžàČŸàČ§àłàČŻàČ”àČżàČ°àłàČ” àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: " -"àČŻàČŸàČ”àłàČŠàł† àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł àČŹàł‡àČĄàČ”àČŸàČŠàČČàłàČČàČż \"àČŻàČŸàČ”àłàČŠàł‚ àȇàČČàłàČČ\", àČźàČŸàČšàłàČŻàČ”àČŸàČŠ àČ—àłàČ°àł‡àČžàłàČ•àł‡àČČàł " -"àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àłâ€ŒàȗàČŸàȗàČż \"àČ—àłàČ°àł‡àČžàłàČ•àł‡àČČàł\", àČčàČŸàČ—àł àČžàČŹàłâ€ŒàČȘàČżàČ•àłàČžàł†àČČàł àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àłâ€ŒàȗàČŸàȗàČż \"rgba" -"\" (àČ•àł‡àČ”àČČ LCD àČ€àł†àČ°àł†àȗàČłàČżàČ—àł† àČźàČŸàČ€àłàČ°)." -#: ../data/desktop_gnome_font_rendering.schemas.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 +#| msgid "The selected configuration for displays could not be applied" +msgid "The duration a display profile is valid" +msgstr "àČźàłàČŠàłàČ°àȕàČŠ àČȘàłàČ°àłŠàČ«àłˆàČČàł àȅàČźàČŸàČšàłàČŻàČ€àł†àČŻ àȕàČŸàČČàČŸàČ”àȧàČż" + +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 msgid "" -"The type of hinting to use when rendering fonts. Possible values are: \"none" -"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" -"\" for maximum hinting (may cause distortion of letter forms)." +"This is the number of days after which the display color profile is " +"considered invalid." msgstr "" -"àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČżàȗàČłàČšàłàČšàł àČ°àł†àȂàČĄàČ°àČżàȂàČ—àł àČźàČŸàČĄàČČàł àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àČčàČżàȂàȟàČżàȂàČ—àł àČȘàłàČ°àȕàČŸàČ°. àČžàČŸàČ§àłàČŻàČ”àČżàČ°àłàČ” àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: " -"àČŻàČŸàČ”àłàČŠàł† àČčàČżàȂàȟàČżàȂàČ—àł àČŹàł‡àČĄàČ”àČŸàČŠàČČàłàČČàČż \"àČŻàČŸàČ”àłàČŠàł‚ àȇàČČàłàČČ\", àȆàČ°àȂàČ­àČżàȕ àČźàČŸàłàȟàČ•àłàȕàČŸàȗàČż \"àČ•àłŠàȂàȚ\", àČźàČ§àłàČŻàČź " -"àČźàČŸàłàȟàČ•àłàȕàČŸàȗàČż \"àČźàČ§àłàČŻàČź\", àČčàČŸàČ—àł àȗàČ°àČżàČ·àłàȟ àČčàČżàȂàȟàČżàȂàČ—àłâ€ŒàȗàČŸàȗàČż \"àČžàȂàČȘàł‚àČ°àłàČŁ\" (àȇàČŠàł àȅàČ•àłàČ·àČ°àȗàČłàČšàłàČšàł " -"àČ”àČżàČ°àł‚àČȘàČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł)." +"àȇàČ·àłàČŸàł àČŠàČżàČšàȗàČł àČšàȂàČ€àČ° àČȘàłàČ°àČŠàČ°àłàȶàȕàČŠ àČŹàČŁàłàČŁàČŠ àČȘàłàČ°àłŠàČ«àłˆàČČàł àȅàČšàłàČšàł àȅàČźàČŸàČšàłàČŻàČ”àČŸàȗàČżàČŠàł† àȎàȂàČŠàł " +"àČȘàČ°àČżàȗàČŁàČżàČžàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†." -#: ../data/desktop_gnome_keybindings.schemas.in.h:1 -msgid "Allowed keys" -msgstr "àȅàČšàłàČźàČ€àČż àȇàČ°àłàČ” àČ•àł€àČČàČżàȗàČłàł" +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 +msgid "The duration a printer profile is valid" +msgstr "àČźàłàČŠàłàČ°àȕàČŠ àČȘàłàČ°àłŠàČ«àłˆàČČàł àČźàČŸàČšàłàČŻàČ”àČŸàȗàČżàČ°àłàČ” àȕàČŸàČČàČŸàČ”àȧàČż" -#: ../data/desktop_gnome_keybindings.schemas.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 msgid "" -"If non-empty, keybindings will be ignored unless their GConf directory is in " -"the list. This is useful for lockdown." +"This is the number of days after which the printer color profile is " +"considered invalid." msgstr "" -"àȖàČŸàČČàČż àȇàČČàłàČČàČŠàł† àČčàł‹àČŠàČČàłàČČàČż, GConf àČ•àł‹àȶàČ”àł àČȘàČŸàłàȟàČżàČŻàČČàłàČČàČż àȇàČ°àČŠ àČčàłŠàČ°àČ€àł àČ•àł€àČČàČżàČŹàłˆàȂàČĄàČżàȂàČ—àłâ€ŒàȗàČłàČšàłàČšàł " -"àȆàČČàČ•àłàČ·àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł. àȇàČŠàł àȒàȂàČŠàł àȉàČȘàČŻàłàČ•àłàČ€ àČČàČŸàČ•àłâ€ŒàČĄàłŒàČšàł àȆàȗàČżàČ°àłàČ€àłàČ€àČŠàł†." +"àȇàČ·àłàČŸàł àČŠàČżàČšàȗàČł àČšàȂàČ€àČ° àČźàłàČŠàłàČ°àȕàČŠ àČŹàČŁàłàČŁàČŠ àČȘàłàČ°àłŠàČ«àłˆàČČàł àȅàČšàłàČšàł àȅàČźàČŸàČšàłàČŻàČ”àČŸàȗàČżàČŠàł† àȎàȂàČŠàł " +"àČȘàČ°àČżàȗàČŁàČżàČžàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†." -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:1 -msgid "Disable touchpad while typing" -msgstr "àČŸàłˆàČȘàł àČźàČŸàČĄàłàČ”àČŸàȗ àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàČšàłàČšàł àȅàȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 +msgid "Mount paths to ignore" +msgstr "àȕàČĄàł†àȗàČŁàČżàČžàČŹàł‡àȕàČżàČ°àłàČ” àȏàČ°àČżàČ•àł†àČŻ àČźàČŸàČ°àłàȗàȗàČłàł" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:2 -msgid "Enable horizontal scrolling" -msgstr "àȅàČĄàłàČĄ àȚàČČàČżàČžàłàČ”àČżàČ•àł†àČŻàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 +msgid "Specify a list of mount paths to ignore when they run low on space." +msgstr "" +"àČžàłàČ„àČłàČŸàČ”àȕàČŸàȶàČ”àł àȕàČĄàČżàČźàł† àȇàČŠàłàČŠàČŸàȗ àČŻàČŸàČ” àȏàČ°àČżàČ•àł†àČŻ àČźàČŸàČ°àłàȗàȗàČł àČȘàČŸàłàȟàČżàČŻàČšàłàČšàł àȆàČČàČ•àłàČ·àČżàČžàČŹàł‡àČ•àł àȎàȂàČŠàł " +"àČžàł‚àȚàČżàČžàČż." -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:3 -msgid "Enable mouse clicks with touchpad" -msgstr "àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàČżàČšàČżàȂàČŠ àČźàłŒàČžàłâ€ŒàČ•àłàČČàČżàČ•àłâ€ŒàȗàČłàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČż" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 +msgid "Free percentage notify threshold" +msgstr "àČźàłàČ•àłàČ€ àČȘàłàČ°àČ€àČżàȶàČ€ àČžàł‚àȚàČšàł†àČŻ àČźàČżàČ€àČż" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 #, fuzzy -msgid "Enable touchpad" -msgstr "àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàČżàČšàČżàȂàČŠ àČźàłŒàČžàłâ€ŒàČ•àłàČČàČżàČ•àłâ€ŒàȗàČłàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČż" +#| msgid "" +#| "Percentage free space threshold for initial warning of low disk space. If " +#| "the percentage free space drops below this, a warning will be shown" +msgid "" +"Percentage free space threshold for initial warning of low disk space. If " +"the percentage free space drops below this, a warning will be shown." +msgstr "" +"àȕàČĄàČżàČźàł† àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àČżàČŠàł† àȎàȂàČŠàł àȎàČšàłàȚàČ°àČżàČžàČČàł àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ” àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ àČȘàłàČ°àČ€àČżàȶàČ€àČŠ àČźàČżàČ€àČż. " +"àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ " +"àČȘàłàČ°àČ€àČżàȶàČ€àČ”àł àȇàČŠàČ•àłàȕàČżàȂàČ€ àȕàČĄàČżàČźàł†àČŻàČŸàČŠàČČàłàČČàČż, àȒàȂàČŠàł àȎàČšàłàȚàČ°àČżàČ•àł†àČŻàČšàłàČšàł àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:5 -msgid "Select the touchpad scroll method" -msgstr "àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàł àȚàČČàČšàł†àČŻ àČ”àČżàȧàČŸàČšàČ”àČšàłàČšàł àȆàČ°àČżàČžàČż" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +#, fuzzy +#| msgid "Subsequent free percentage notify threshold" +msgid "Subsequent free space percentage notify threshold" +msgstr "àȆàČšàȂàČ€àČ°àČŠ àČźàłàČ•àłàČ€ àČȘàłàČ°àČ€àČżàȶàČ€ àČžàł‚àȚàČšàČŸ àČźàČżàČ€àČż" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +#, fuzzy +#| msgid "" +#| "Specify the percentage that the free disk space should reduce by before " +#| "issuing a subsequent warning" msgid "" -"Select the touchpad scroll method. Supported values are: 0 - disabled, 1 - " -"edge scrolling, 2 - two-finger scrolling" +"Specify the percentage that the free disk space should reduce by before " +"issuing a subsequent warning." msgstr "" -"àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàł àȚàČČàČšàł†àČŻ àČ”àČżàȧàČŸàČšàČ”àČšàłàČšàł àȆàČ°àČżàČžàČż. àČŹàł†àȂàČŹàČČàČ”àČżàČ°àłàČ” àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: 0 - àȅàȶàČ•àłàČ€àČ—àłŠàȂàČĄ, 1 - " -"àȅàȂàȚàČżàČšàČČàłàČČàČż àȚàČČàČšàł†, 2 - àȎàČ°àČĄàł àČŹàł†àČ°àČłàČżàČš àȚàČČàČšàł†" +"àČ€àČ°àłàČ”àČŸàČŻàČŠ àȎàČšàłàȚàČ°àČżàČ•àł†àČŻàČšàłàČšàł àČšàł€àČĄàłàČ” àČźàłŠàČŠàČČàł àČĄàČżàČžàłàȕàČżàČš àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČ”àł àČŻàČŸàČ” àČȘàłàČ°àČ€àČżàȶàČ€àČ•àłàČ•àł† àȕàČĄàČżàČźàł† " +"àȆàȗ " +"àČŹàł‡àČ•àł àȎàȂàČŠàł àČžàł‚àȚàČżàČžàČż" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:7 -msgid "" -"Set this to TRUE if you have problems with accidentally hitting the touchpad " -"while typing." -msgstr "àČŸàłˆàČȘàČżàČžàłàČ”àČŸàȗ àȆàȕàČžàłàČźàČżàȕàČ”àČŸàȗàČż àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàł àČ—àł† àČ•àłˆ àČ€àČŸàČ—àłàČ” àČ€àłŠàȂàČŠàČ°àł† àȇàČŠàłàČŠàČ°àł† àȇàČŠàČšàłàČšàł TRUE àČ—àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 +#, fuzzy +#| msgid "Free space no notify threshold" +msgid "Free space notify threshold" +msgstr "àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ àČžàł‚àȚàČšàł† àȇàČ°àČŠ àČźàČżàČ€àČż" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 +#, fuzzy +#| msgid "" +#| "Specify an amount in GB. If the amount of free space is more than this, " +#| "no warning will be shown" msgid "" -"Set this to TRUE to allow horizontal scrolling by the same method selected " -"with the scroll_method key." +"Specify an amount in GB. If the amount of free space is more than this, no " +"warning will be shown." msgstr "" -"scroll_method àČ•àł€àČČàČżàČŻàČżàȂàČŠ àȆàČ°àČżàČžàČČàČŸàČŠ àČ”àČżàȧàČŸàČšàČŠ àČ°àł€àČ€àČżàČŻàČČàłàČČàČżàČŻàł† àȅàČĄàłàČĄ àȚàČČàČšàł†àČŻàČšàłàČšàł àȅàČšàłàČźàČ€àČżàČžàČČàł " -"àȇàČŠàČšàłàČšàł TRUE àČ—àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČż." +"àČȘàłàČ°àČźàČŸàČŁàČ”àČšàłàČšàł GB àČŻàČČàłàČČàČż àČžàł‚àȚàČżàČžàČż. àČźàłàČ•àłàČ€ àČžàłàČ„àČłàČŠ àČȘàłàČ°àČźàČŸàČŁàČ”àł àȇàČŠàČ•àłàȕàČżàȂàČ€ àČčàł†àČšàłàȚàČżàČŠàłàČŠàČČàłàČČàČż, " +"àČŻàČŸàČ”àłàČŠàł† " +"àȎàČšàłàȚàČ°àČżàČ•àł†àȗàČłàł àȕàČŸàČŁàČżàČžàČżàČ•àłŠàČłàłàČłàłàČ”àłàČŠàČżàČČàłàČČ" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:9 -msgid "Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 +msgid "Minimum notify period for repeated warnings" +msgstr "àČȘàłàČšàČ°àČŸàČ”àČ°àłàČ€àČżàČ€ àȎàČšàłàȚàČ°àČżàČ•àł†àȗàČł àȕàČšàČżàČ·àłàȟ àČžàł‚àȚàČšàČŸ àȕàČŸàČČàČŸàČ”àȧàČż" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 +msgid "" +"Specify a time in minutes. Subsequent warnings for a volume will not appear " +"more often than this period." msgstr "" -"àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàłâ€ŒàČšàČČàłàČČàČż àČźàł†àČČàłàČČàČ—àł† àČ€àČŸàłàČŸàłàČ”àłàČŠàČ° àČźàł‚àČČàȕ àČźàłŒàČžàłâ€Œ àČ•àłàČČàČżàČ•àłâ€ŒàȗàČłàČšàłàČšàł àȕàČłàłàČčàČżàČžàłàČ”àłàČŠàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł àȇàČŠàČšàłàČšàł " -"TRUE àČ—àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČż." +"àČžàČźàČŻàČ”àČšàłàČšàł àČšàČżàČźàČżàČ·àČŠàČČàłàČČàČż àČžàł‚àȚàČżàČžàČż. àȒàȂàČŠàł àČȘàČ°àČżàČźàČŸàČŁàČ•àłàČ•àł† àČ€àČ°àłàČ”àČŸàČŻàČŠ àȎàČšàłàȚàČ°àČżàČ•àł†àȗàČłàł àȈ àȕàČŸàČČàČŸàČ”àȧàČżàČŻ " +"àČšàȂàČ€àČ° " +"àȕàČŸàČŁàČżàČžàČżàČ•àłŠàČłàłàČłàłàČ”àłàČŠàČżàČČàłàČČ." -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:10 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 #, fuzzy -msgid "Set this to TRUE to enable all touchpads." +#| msgid "Keybindings" +msgid "Custom keybindings" +msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àȗàČłàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 +msgid "List of custom keybindings" msgstr "" -"àȟàČšàłâ€ŒàČȘàłàČŻàČŸàČĄàłâ€ŒàČšàČČàłàČČàČż àČźàł†àČČàłàČČàČ—àł† àČ€àČŸàłàČŸàłàČ”àłàČŠàČ° àČźàł‚àČČàȕ àČźàłŒàČžàłâ€Œ àČ•àłàČČàČżàČ•àłâ€ŒàȗàČłàČšàłàČšàł àȕàČłàłàČčàČżàČžàłàČ”àłàČŠàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł àȇàČŠàČšàłàČšàł " -"TRUE àČ—àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČż." -#: ../data/gnome-settings-daemon.desktop.in.in.h:1 -msgid "GNOME Settings Daemon" -msgstr "GNOME àČžàČżàČŠàłàȧàČ€àł†àȗàČł àČĄàł€àČźàČšàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 +msgid "Launch calculator" +msgstr "àČ•àłàČŻàČŸàČČàłàČ•àłàČČàł‡àȟàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" -#: ../data/gnome-settings-daemon.schemas.in.h:1 -msgid "Binding to toggle the magnifier." -msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:6 +msgid "Binding to launch the calculator." +msgstr "àČ•àłàČŻàČŸàČČàłàČ•àłàČČàł‡àȟàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàłàČ” àČŹàČŠàłàȧàČ€àł†." -#: ../data/gnome-settings-daemon.schemas.in.h:2 -msgid "Binding to toggle the on-screen keyboard." -msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČżàČźàČŁàł†àČŻàČšàłàČšàł àȟàČŸàȗàČČàłâ€Œ àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:3 -msgid "Binding to toggle the screen reader." -msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:4 -msgid "Bounce keys" -msgstr "àČȘàłàȟàČżàČŻàłàČ” àČ•àł€àČČàČżàȗàČłàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:5 -msgid "Command used to turn the magnifier on or off." -msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àČšàłàČšàł àȆàČšàłâ€Œ àČźàČŸàČĄàČČàł àȅàČ„àČ” àȆàČ«àłâ€Œ àČŹàČłàČžàČČàČŸàČ—àłàČ” àȆàČœàłàČžàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:6 -msgid "Command used to turn the on-screen keyboard on or off." -msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČżàČš àČ•àł€àČČàČżàČźàČŁàł†àČŻàČšàłàČšàł àȆàČšàłâ€Œ àČźàČŸàČĄàČČàł àȅàČ„àČ” àȆàČ«àłâ€Œ àČŹàČłàČžàČČàČŸàČ—àłàČ” àȆàČœàłàČžàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:7 -msgid "Command used to turn the screen reader on or off." -msgstr "àȓàČŠàłàȗàČšàČšàłàČšàł àȆàČšàłâ€Œ àČźàČŸàČĄàČČàł àȅàČ„àČ” àȆàČ«àłâ€Œ àČŹàČłàČžàČČàČŸàČ—àłàČ” àȆàČœàłàČžàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:8 -msgid "Enable accessibility keyboard plugin" -msgstr "àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:9 -msgid "Enable background plugin" -msgstr "àČčàČżàČšàłàČšàČČàł† àČȘàłàČČàČ—àłâ€ŒàȇàČšàłâ€ŒàȗàČłàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:10 -msgid "Enable clipboard plugin" -msgstr "àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:11 -msgid "Enable font plugin" -msgstr "àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČż àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:12 -msgid "Enable housekeeping plugin" -msgstr "àČźàČšàł†àČžàłàČ”àČšàłàțàČ—àłŠàČłàČżàČžàłàČ” àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:13 -msgid "Enable keybindings plugin" -msgstr "àČ•àł€àČČàČż-àČŹàČŠàłàȧàČ€àł†àȗàČł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:14 -msgid "Enable keyboard plugin" -msgstr "àČ•àł€àČČàČżàČźàČŁàł† àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:15 -msgid "Enable media keys plugin" -msgstr "àČźàł€àČĄàČżàČŻàČŸ àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:16 -msgid "Enable mouse plugin" -msgstr "àČźàłŒàČžàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:17 -msgid "Enable sound plugin" -msgstr "àČ§àłàČ”àČšàČż àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:18 -msgid "Enable typing breaks plugin" -msgstr "àČ”àČżàČ°àČŸàČź àČ€àł†àČ—àł†àČŠàłàČ•àłŠàČłàłàČłàłàČ” àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:19 -msgid "Enable xrandr plugin" -msgstr "xrandr àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:20 -msgid "Enable xrdb plugin" -msgstr "xrdb àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" - -#: ../data/gnome-settings-daemon.schemas.in.h:21 -msgid "Enable xsettings plugin" -msgstr "xsettings àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:7 +msgid "Launch email client" +msgstr "àȇàČźàłˆàČČàł àČ•àłàČČàłˆàȂàȟàČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" -#: ../data/gnome-settings-daemon.schemas.in.h:22 -msgid "Mouse keys" -msgstr "àČźàłŒàČžàłâ€Œ àČ•àł€àČČàČżàȗàČłàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:8 +msgid "Binding to launch the email client." +msgstr "àȇàČźàłˆàČČàł àČ•àłàČČàłˆàȂàȟàČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàłàČ” àČŹàČŠàłàȧàČ€àł†." -#: ../data/gnome-settings-daemon.schemas.in.h:23 -msgid "On-screen keyboard" -msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 +msgid "Eject" +msgstr "àČčàłŠàČ°àČ€àČłàłàČłàł" -#: ../data/gnome-settings-daemon.schemas.in.h:24 -msgid "Screen magnifier" -msgstr "àČ€àł†àČ°àł†àČŻ àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČ°àłâ€Œ" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:10 +#| msgid "Binding to eject an optical disk." +msgid "Binding to eject an optical disc." +msgstr "àȒàȂàČŠàł àȆàČȘàłàȟàČżàȕàČČàł àČĄàČżàČžàłàȕàČšàłàČšàł àČčàłŠàČ°àČ€àČłàłàČłàłàČ” àČŹàČŠàłàȧàČ€àł†." -#: ../data/gnome-settings-daemon.schemas.in.h:25 -msgid "Screen reader" -msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗ" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:11 +msgid "Launch help browser" +msgstr "àČšàł†àČ°àČ”àČżàČš àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" -#: ../data/gnome-settings-daemon.schemas.in.h:26 -msgid "" -"Set to True to enable the housekeeping plugin, to prune transient file " -"caches." -msgstr "" -"àȅàȗàČ€àłàČŻàČ”àČżàČČàłàČČàČŠ àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àȕàČĄàČ€ àČ•àłàČŻàČŸàČ¶àł†àČŻàČšàłàČšàł àȅàČłàČżàČžàČżàČčàČŸàȕàČČàł, àČźàČšàł†àČžàłàČ”àČšàłàțàČ—àłŠàČłàČżàČžàłàČ” àČȘàłàČČàČ—àłàȇàČšàł àȅàČšàłàČšàł " -"àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:12 +msgid "Binding to launch the help browser." +msgstr "àČšàł†àČ°àČ”àČżàČš àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàłàČ” àČŹàČŠàłàȧàČ€àł†." -#: ../data/gnome-settings-daemon.schemas.in.h:27 -msgid "Set to True to enable the plugin to manage clipboard settings." -msgstr "" -"àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČš àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " -"àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:13 +msgid "Home folder" +msgstr "àČšàł†àČČàł† àȕàČĄàČ€àČ•àł‹àȶ" -#: ../data/gnome-settings-daemon.schemas.in.h:28 -msgid "Set to True to enable the plugin to manage desktop background settings." -msgstr "" -"àȗàČŁàȕàČ€àł†àČ°àł† àČčàČżàČšàłàČšàČČàł† àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " -"(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:14 +msgid "Binding to open the Home folder." +msgstr "àČšàł†àČČàł† àȕàČĄàČ€àČ•àł‹àȶàČ”àČšàłàČšàł àČ€àł†àČ°àł†àČŻàłàČ” àČŹàČŠàłàȧàČ€àł†." -#: ../data/gnome-settings-daemon.schemas.in.h:29 -msgid "Set to True to enable the plugin to manage font settings." -msgstr "" -"àȅàČ•àłàČ·àČ° àČ¶àłˆàČČàČż àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " -"àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:15 +msgid "Launch media player" +msgstr "àČźàł€àČĄàČżàČŻàČŸ àČȘàłàČČàł‡àČŻàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" -#: ../data/gnome-settings-daemon.schemas.in.h:30 -msgid "Set to True to enable the plugin to manage keyboard settings." -msgstr "" -"àČ•àł€àČČàČżàČźàČŁàł† àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " -"àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 +msgid "Binding to launch the media player." +msgstr "àČźàł€àČĄàČżàČŻàČŸ àČȘàłàČČàł‡àČŻàČ°àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàłàČ” àČŹàČŠàłàȧàČ€àł†." -#: ../data/gnome-settings-daemon.schemas.in.h:31 -msgid "Set to True to enable the plugin to manage mouse settings." -msgstr "àČźàłŒàČžàł àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:17 +msgid "Next track" +msgstr "àČźàłàȂàČŠàČżàČš àČčàČŸàČĄàł" -#: ../data/gnome-settings-daemon.schemas.in.h:32 -msgid "Set to True to enable the plugin to manage multimedia keys settings." -msgstr "" -"àČźàČČàłàȟàČżàČźàł€àČĄàČżàČŻàČŸ àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " -"àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:18 +msgid "Binding to skip to next track." +msgstr "àČźàłàȂàČŠàČżàČš àČčàČŸàČĄàČżàČ—àł† àČčàł‹àȗàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:33 -msgid "Set to True to enable the plugin to manage sound sample caches." -msgstr "" -"àČ§àłàČ”àČšàČż àČšàČźàł‚àČšàł† àČ•àłàČŻàČŸàČ¶àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " -"àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:19 +msgid "Pause playback" +msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàȕàČšàłàČšàł àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàł" -#: ../data/gnome-settings-daemon.schemas.in.h:34 -msgid "" -"Set to True to enable the plugin to manage the accessibility keyboard " -"settings." -msgstr "" -"àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł† àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " -"(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:20 +msgid "Binding to pause playback." +msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàČ•àł àȅàČšàłàČšàł àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:35 -msgid "Set to True to enable the plugin to manage the keybindings." -msgstr "" -"àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " -"(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:21 +msgid "Play (or play/pause)" +msgstr "àČȘàłàČČàł‡ (àȅàČ„àČ” àČȘàłàČČàł‡/àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€)" -#: ../data/gnome-settings-daemon.schemas.in.h:36 -msgid "Set to True to enable the plugin to manage typing breaks." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:22 +msgid "Binding to start playback (or toggle play/pause)." msgstr "" -"àČšàČźàł‚àČŠàČżàČžàłàČ” àČ”àČżàČ°àČŸàČźàȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " -"àČčàłŠàȂàČŠàČżàČžàČż." +"àČȘàłàČČàł‡àČŹàłàČŻàČŸàČ•àł àȅàČšàłàČšàł(àȅàČ„àČ” àČȘàłàČČàł‡/àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àČžàłàČ„àȗàČżàČ€àČŠ àČšàČĄàłàČ”àł† àČŹàČŠàČČàČŸàČŻàČżàČžàČČàł) àȆàČ°àȂàČ­àČżàČžàČČàł " +"àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:37 -msgid "Set to True to enable the plugin to manage xrandr settings." -msgstr "" -"xrandr àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " -"àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:23 +msgid "Log out" +msgstr "àČšàČżàČ°àłàȗàČźàČżàČžàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:24 +msgid "Binding to log out." +msgstr "àČšàČżàČ°àłàȗàČźàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:25 +msgid "Previous track" +msgstr "àČčàČżàȂàČŠàČżàČš àČčàČŸàČĄàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:26 +msgid "Binding to skip to previous track." +msgstr "àČčàČżàȂàČŠàČżàČš àČčàČŸàČĄàČżàČ—àł† àČčàł‹àȗàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:29 +msgid "Lock screen" +msgstr "àČ€àł†àČ°àł†àČŻàČšàłàČšàł àČČàČŸàČ•àł àČźàČŸàČĄàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:30 +msgid "Binding to lock the screen." +msgstr "àČ€àł†àČ°àł†àČŻàČšàłàČšàł àČČàČŸàČ•àł àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:31 +msgid "Search" +msgstr "àČčàłàČĄàłàČ•àł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:32 +msgid "Binding to launch the search tool." +msgstr "àČčàłàČĄàłàČ•àł àȉàČȘàȕàČ°àČŁàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:38 -msgid "Set to True to enable the plugin to manage xrdb settings." -msgstr "xrdb àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:33 +msgid "Stop playback" +msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàȕàČšàłàČšàł àČšàČżàČČàłàČČàČżàČžàł" -#: ../data/gnome-settings-daemon.schemas.in.h:39 -msgid "Set to True to enable the plugin to manage xsettings." -msgstr "xsettings àȅàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:34 +msgid "Binding to stop playback." +msgstr "àČȘàłàČČàł‡àČŹàłàČŻàČŸàČ•àł àȅàČšàłàČšàł àČšàČżàČČàłàČČàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:40 -msgid "Slow keys" -msgstr "àČšàČżàȧàČŸàČšàȗàČ€àČżàČŻ àČ•àł€àČČàČżàȗàČłàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:35 +msgid "Volume down" +msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁ àȇàČłàČżàČ•àł†" -#: ../data/gnome-settings-daemon.schemas.in.h:41 -msgid "Sticky keys" -msgstr "àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:36 +msgid "Binding to lower the system volume." +msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àȕàČĄàČżàČźàł† àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:42 -msgid "The name of the keyboard shortcut to toggle the magnifier" -msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:37 +msgid "Volume mute" +msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁ àČźàł‚àȕ" -#: ../data/gnome-settings-daemon.schemas.in.h:43 -msgid "The name of the keyboard shortcut to toggle the on-screen keyboard" -msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČżàČźàČŁàł†àČŻàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:38 +msgid "Binding to mute the system volume." +msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àČźàł‚àȕàČ—àłŠàČłàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:44 -msgid "The name of the keyboard shortcut to toggle the screen reader" -msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:39 +msgid "Volume up" +msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁ àȏàČ°àČżàČ•àł†" -#: ../data/gnome-settings-daemon.schemas.in.h:45 -msgid "" -"This is the name of the keyboard shortcut to toggle the magnifier. This name " -"will be shown in the keyboard shortcut preferences dialog." -msgstr "" -"àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł àȇàČŠàČŸàȗàČżàČŠàł†. àȈ àČčàł†àČžàČ°àČšàłàČšàł àČ•àł€àČČàČżàČźàČŁàł† " -"àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€Œ àȆàČŠàłàČŻàČ€àł†àȗàČł àČžàȂàČ”àČŸàČŠàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:40 +msgid "Binding to raise the system volume." +msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../data/gnome-settings-daemon.schemas.in.h:46 -msgid "" -"This is the name of the keyboard shortcut to toggle the on-screen keyboard. " -"This name will be shown in the keyboard shortcut preferences dialog." -msgstr "" -"àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†àČŻàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł àȇàČŠàČŸàȗàČżàČŠàł†. àȈ àČčàł†àČžàČ°àČšàłàČšàł " -"àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€Œ àȆàČŠàłàČŻàČ€àł†àȗàČł àČžàȂàČ”àČŸàČŠàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:41 +msgid "Take a screenshot" +msgstr "àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČ•àłŠ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:42 +#| msgid "Binding to lock the screen." +msgid "Binding to take a screenshot." +msgstr "àČ€àł†àČ°àł† àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČ•àłŠàČłàłàČłàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:43 +msgid "Take a screenshot of a window" +msgstr "àȕàČżàȟàȕàČżàČŻ àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČ•àłŠ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:44 +#| msgid "Binding to toggle the screen reader." +msgid "Binding to take a screenshot of a window." +msgstr "àȕàČżàȟàȕàČżàČŻ àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČ•àłŠàČłàłàČłàłàČ” àČŹàČŠàłàȧàČ€àł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:45 +msgid "Take a screenshot of an area" +msgstr "àȒàȂàČŠàł àȜàČŸàȗàČŠ àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČ•àłŠ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:46 +#| msgid "Binding to toggle the screen reader." +msgid "Binding to take a screenshot of an area." +msgstr "àȒàȂàČŠàł àȜàČŸàȗàČŠ àČ€àł†àČ°àł† àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČ•àłŠàČłàłàČłàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 +msgid "Copy a screenshot to clipboard" +msgstr "àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČ—àł† àČȘàłàČ°àČ€àČż àČźàČŸàČĄàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 +#| msgid "Binding to toggle the on-screen keyboard." +msgid "Binding to copy a screenshot to clipboard." +msgstr "àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČ—àł† àČȘàłàČ°àČ€àČż àČźàČŸàČĄàłàČ” àČŹàČŠàłàȧàČ€àł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:49 +msgid "Copy a screenshot of a window to clipboard" +msgstr "àȕàČżàȟàȕàČżàČŻ àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČ—àł† àČȘàłàČ°àČ€àČż àČźàČŸàČĄàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:50 +msgid "Binding to copy a screenshot of a window to clipboard." +msgstr "àȕàČżàȟàȕàČżàČŻ àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČ—àł† àČȘàłàČ°àČ€àČż àČźàČŸàČĄàłàČ” àČŹàČŠàłàȧàČ€àł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:51 +msgid "Copy a screenshot of an area to clipboard" +msgstr "àȒàȂàČŠàł àȜàČŸàȗàČŠ àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČ—àł† àČȘàłàČ°àČ€àČż àČźàČŸàČĄàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:52 +msgid "Binding to copy a screenshot of an area to clipboard." +msgstr "àȒàȂàČŠàł àȜàČŸàȗàČŠ àČ€àł†àČ°àł†àȚàČżàČ€àłàČ°àČ”àČšàłàČšàł àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČ—àł† àČȘàłàČ°àČ€àČż àČźàČŸàČĄàłàČ” àČŹàČŠàłàȧàČ€àł†." -#: ../data/gnome-settings-daemon.schemas.in.h:47 -msgid "" -"This is the name of the keyboard shortcut to toggle the screen reader. This " -"name will be shown in the keyboard shortcut preferences dialog." -msgstr "" -"àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł àȇàČŠàČŸàȗàČżàČŠàł†. àȈ àČčàł†àČžàČ°àČšàłàČšàł àČ•àł€àČČàČżàČźàČŁàł† " -"àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€Œ àȆàČŠàłàČŻàČ€àł†àȗàČł àČžàȂàČ”àČŸàČŠàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 +msgid "Launch web browser" +msgstr "àȜàČŸàČČ àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàł" -#: ../data/gnome-settings-daemon.schemas.in.h:48 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 +msgid "Binding to launch the web browser." +msgstr "àȜàČŸàČČ àČ”àł€àČ•àłàČ·àȕàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 msgid "Toggle magnifier" msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàł" -#: ../data/gnome-settings-daemon.schemas.in.h:49 -msgid "Toggle on-screen keyboard" -msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†àČŻàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 +#| msgid "Binding to toggle the magnifier." +msgid "Binding to show the screen magnifier" +msgstr "àČ€àł†àČ°àł†àČŻ àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àł àȅàČšàłàČšàł àČ€àł‹àČ°àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†" -#: ../data/gnome-settings-daemon.schemas.in.h:50 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 msgid "Toggle screen reader" msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàł" -#: ../data/gnome-settings-daemon.schemas.in.h:51 -msgid "Whether the bounce keys keyboard accessibility feature is turned on." -msgstr "àČȘàłàȟàČżàČ•àł† àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:52 -msgid "Whether the mouse keys keyboard accessibility feature is turned on." -msgstr "àČźàłŒàČžàłâ€ŒàČš àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:53 -msgid "Whether the on-screen keyboard is turned on." -msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČżàČźàČŁàł†àČŻàł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:54 -msgid "Whether the screen magnifier is turned on." -msgstr "àČ€àł†àČ°àł†àČŻ àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àČŻàČ°àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:55 -msgid "Whether the screen reader is turned on." -msgstr "àČ€àł†àČ°àł†àČŻ àȓàČŠàłàȗàČ”àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:56 -msgid "Whether the slow keys keyboard accessibility feature is turned on." -msgstr "àČšàČżàȧàČŸàČšàȗàČ€àČżàČŻ àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." - -#: ../data/gnome-settings-daemon.schemas.in.h:57 -msgid "Whether the sticky keys keyboard accessibility feature is turned on." -msgstr "àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." - -#: ../gnome-settings-daemon/main.c:55 -msgid "Enable debugging code" -msgstr "àČŠàł‹àČ·àČšàČżàČ”àČŸàČ°àČŁàČŸ àČžàȂàČ•àł‡àČ€àČ”àČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 +#| msgid "Binding to toggle the screen reader." +msgid "Binding to start the screen reader" +msgstr "àČ€àł†àČ°àł†àČŻ àȓàČŠàłàȗàČšàČšàłàČšàł àČ€àł‹àČ°àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†" -#: ../gnome-settings-daemon/main.c:56 -msgid "Don't become a daemon" -msgstr "àȒàȂàČŠàł àČĄàČżàČźàČšàł àȆàȗàČŹàł‡àČĄ" - -#: ../gnome-settings-daemon/main.c:57 -msgid "GConf prefix from which to load plugin settings" -msgstr "àČȘàłàČČàČ—àłàȇàČšàł àČžàČżàČŠàłàȧàČ€àł†àȗàČłàł àČČàł‹àČĄàł àȆàȗàČŹàł‡àȕàČżàČ°àłàČ” GConf àČȘàłàČ°àČżàČ«àČżàČ•àłàČžàłâ€" - -#: ../gnome-settings-daemon/main.c:58 -msgid "Exit after a time - for debugging" -msgstr "àČžàłàČ”àČČàłàČȘ àČžàČźàČŻàČŠ àČšàȂàČ€àČ° àČšàČżàČ°àłàȗàČźàČżàČžàł - àČŠàł‹àČ·àČšàČżàČ”àČŸàČ°àČŁàł†àȗàČŸàȗàČż" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:59 +msgid "Toggle on-screen keyboard" +msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†àČŻàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàł" -#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:1 -msgid "Accessibility Keyboard" -msgstr "àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł†" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:60 +#| msgid "Binding to toggle the on-screen keyboard." +msgid "Binding to show the on-screen keyboard" +msgstr "àČ€àł†àČ°àł†àČŻ-àČźàł‡àČČàČŁ àČ•àł€àČČàČżàČźàČŁàł†àČŻàČšàłàČšàł àČ€àł‹àČ°àČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:61 +msgid "Increase text size" +msgstr "àČȘàČ àłàČŻàČŠ àȗàČŸàČ€àłàČ°àČ”àČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàł" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 +#| msgid "Binding to raise the system volume." +msgid "Binding to increase the text size" +msgstr "àČȘàČ àłàČŻàČŠ àȗàČŸàČ€àłàČ°àČ”àČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 +msgid "Decrease text size" +msgstr "àČȘàČ àłàČŻàČŠ àȗàČŸàČ€àłàČ°àČ”àČšàłàČšàł àȕàČĄàČżàČźàł†àČźàČŸàČĄàł" -#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:2 -msgid "Accessibility keyboard plugin" -msgstr "àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:64 +#, fuzzy +#| msgid "Binding to raise the system volume." +msgid "Binding to decrease the text size" +msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:388 -#, c-format -msgid "There was an error displaying help: %s" -msgstr "àČšàł†àČ°àČ”àČšàłàČšàł àČ€àł‹àČ°àČżàČžàłàČ”àČŸàȗ àȒàȂàČŠàł àČŠàł‹àČ· àȉàȂàȟàČŸàȗàČżàČŠàł†: %s" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:65 +#, fuzzy +#| msgid "Toggle screen reader" +msgid "Toggle contrast" +msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàł" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:519 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:585 -msgid "Do you want to activate Slow Keys?" -msgstr "àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČšàł€àČ”àł àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:520 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:586 -msgid "Do you want to deactivate Slow Keys?" -msgstr "àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČšàł€àČ”àł àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:66 +#, fuzzy +#| msgid "Binding to toggle the magnifier." +msgid "Binding to toggle the interface contrast" +msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:521 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:587 -msgid "" -"You just held down the Shift key for 8 seconds. This is the shortcut for " -"the Slow Keys feature, which affects the way your keyboard works." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 +msgid "Magnifier zoom in" msgstr "" -"àČšàł€àČ”àł àȈàȗàČ€àČŸàČš àȶàČżàČ«àłàČŸàłâ€ àČ•àł€àČČàČżàČŻàČšàłàČšàł àȎàȂàČŸàł àČžàł†àČ•àł†àȂàČĄàłàȗàČł àȕàČŸàČČ àȒàČ€àłàČ€àČż àČčàČżàČĄàČżàČŠàČżàČŠàłàČŠàł€àČ°àČż. àȈ àȶàČŸàČ°àłàČŸàł-àȕàČŸàł, " -"àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČł àČžàČ”àČČàČ€àłàČ€àČŸàȗàČżàČŠàłàČŠàł, àČšàČżàČźàłàČź àČ•àł€àČČàČżàČźàČŁàł† àČ•àł†àČČàČžàČźàČŸàČĄàłàČ” àČ°àł€àČ€àČżàČŻ àČźàł‡àČČàł† àȇàČŠàł àČȘàČ°àČżàČŁàČŸàČź " -"àČŹàł€àČ°àłàČ€àłàČ€àČŠàł†." - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:546 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:685 -msgid "Don't activate" -msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:546 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:685 -msgid "Don't deactivate" -msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:552 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:691 -msgid "Activate" -msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:552 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:691 -msgid "Deactivate" -msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:608 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:749 -msgid "Do_n't activate" -msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ(_n)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:608 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:749 -msgid "Do_n't deactivate" -msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ(_n)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:611 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:752 -msgid "_Activate" -msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł(_A)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:611 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:752 -msgid "_Deactivate" -msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł(_D)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:615 -msgid "Slow Keys Alert" -msgstr "àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČł àȎàČšàłàȚàČ°àČżàČ•àł†" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:655 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:723 -msgid "Do you want to activate Sticky Keys?" -msgstr "àČšàł€àČ”àł àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:656 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:724 -msgid "Do you want to deactivate Sticky Keys?" -msgstr "àČšàł€àČ”àł àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:658 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:726 -msgid "" -"You just pressed the Shift key 5 times in a row. This is the shortcut for " -"the Sticky Keys feature, which affects the way your keyboard works." -msgstr "" -"àČšàł€àČ”àł àȈàȗàČ€àČŸàČš àȶàČżàČ«àłàČŸàłâ€ àČ•àł€àČČàČżàČŻàČšàłàČšàł àČ•àłàČ°àČźàČ”àČŸàȗàČż àȐàČŠàł àČŹàČŸàČ°àČż àȒàČ€àłàČ€àČżàČŠàłàČŠàł€àČ°àČż. àȈ àȶàČŸàČ°àłàČŸàł-àȕàČŸàł àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČł " -"àČžàČ”àČČàČ€àłàČ€àČŸàȗàČżàČŠàłàČŠàł, àČšàČżàČźàłàČź àČ•àł€àČČàČżàČźàČŁàł† àČ•àł†àČČàČžàČźàČŸàČĄàłàČ” àČ°àł€àČ€àČżàČŻ àČźàł‡àČČàł† àȇàČŠàł àČȘàČ°àČżàČŁàČŸàČź àČŹàł€àČ°àłàČ€àłàČ€àČŠàł†." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 +#, fuzzy +#| msgid "Binding to toggle the magnifier." +msgid "Binding for the magnifier to zoom in" +msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:660 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:728 -msgid "" -"You just pressed two keys at once, or pressed the Shift key 5 times in a " -"row. This turns off the Sticky Keys feature, which affects the way your " -"keyboard works." +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 +msgid "Magnifier zoom out" msgstr "" -"àČšàł€àČ”àł àȈàȗàČ€àČŸàČšàł† àȎàČ°àČĄàł àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àȒàȂàČŠàł† àČŹàČŸàČ°àČżàČ—àł†, àȅàČ„àČ” àȶàČżàČ«àłàČŸàłâ€ àČ•àł€àČČàČżàČŻàČšàłàČšàł àČ•àłàČ°àČźàČ”àČŸàȗàČż àȐàČŠàł àČŹàČŸàČ°àČż " -"àȒàČ€àłàČ€àČżàČŠàłàČŠàł€àČ°àČż àȈ àȶàČŸàČ°àłàČŸàł-àȕàČŸàł, àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČł àČžàČ”àČČàČ€àłàČ€àČŸàȗàČżàČŠàłàČŠàł, àČšàČżàČźàłàČź àČ•àł€àČČàČżàČźàČŁàł† àČ•àł†àČČàČžàČźàČŸàČĄàłàČ” àČ°àł€àČ€àČżàČŻ " -"àČźàł‡àČČàł† àȇàČŠàł àČȘàČ°àČżàČŁàČŸàČź àČŹàł€àČ°àłàČ€àłàČ€àČŠàł†." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:756 -msgid "Sticky Keys Alert" -msgstr "àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČł àȎàČšàłàȚàČ°àČżàČ•àł†" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 +#, fuzzy +#| msgid "Binding to toggle the magnifier." +msgid "Binding for the magnifier to zoom out" +msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:920 -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 -msgid "Universal Access Preferences" -msgstr "àȜàČŸàȗàČ€àČżàȕ àČšàČżàČČàłàȕàČŁàČŸ àȆàČŠàłàČŻàČ€àł†àȗàČłàł" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 +msgid "Name" +msgstr "àČčàł†àČžàČ°àł" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 -msgid "Enhance _contrast in colors" -msgstr "àČŹàČŁàłàČŁàȗàČł àȗàČŸàČąàČ€àł†àČŻàČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàł(_c)" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 +msgid "Name of the custom binding" +msgstr "àȅàȗàČ€àłàČŻàČŸàČšàłàȗàČŁ àČŹàČŠàłàȧàČ€àł†àČŻ àČčàł†àČžàČ°àł" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 -msgid "Make _text larger and easier to read" -msgstr "àČȘàČ àłàČŻàČ”àČšàłàČšàł àČŠàłŠàČĄàłàČĄàČŠàČŸàȗàČż, àȓàČŠàČČàł àČžàłàČČàČ­àČ”àČŸàČ—àłàČ”àȂàČ€àł† àČźàČŸàČĄàł(_t)" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 +#| msgid "Hinting" +msgid "Binding" +msgstr "àČŹàłˆàȂàČĄàČżàȂàČ—àł" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 -msgid "Press and _hold keys to accept them (Slow Keys)" -msgstr "àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àȅàȂàČ—àł€àȕàČ°àČżàČžàČČàł àȅàČ”àČšàłàČšàł àȒàČ€àłàČ€àČż àČčàČżàČĄàČżàČŻàČżàČ°àČż(àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàł) (_h)" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:74 +msgid "Binding for the custom binding" +msgstr "" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 -msgid "Use on-screen _keyboard" -msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†(_k)" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:75 +msgid "Command" +msgstr "àȆàČœàłàČžàł†" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 -msgid "Use screen _magnifier" -msgstr "àČ€àł†àČ°àł†àČŻ àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČ°àłâ€Œ àȅàČšàłàČšàł àČŹàČłàČžàł(_m)" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 +msgid "Command to run when the binding is invoked" +msgstr "àČŹàČŠàłàȧàČ€àł†àČŻàČšàłàČšàł àČ°àČŠàłàČŠàłàČ—àłŠàČłàČżàČžàČżàČŠàČŸàȗ àȚàČČàČŸàČŻàČżàČžàČŹàł‡àȕàČżàČ°àłàČ” àȆàČœàłàČžàł†" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 -msgid "Use screen _reader" -msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàłàČšàł àČŹàČłàČžàł(_r)" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 +msgid "Percentage considered low" +msgstr "àȕàČĄàČżàČźàł† àČȘàČ°àČżàȗàČŁàČżàČžàČČàČŸàČ—àłàČ” àČȘàłàČ°àČ€àČżàȶàČ€" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 -msgid "_Ignore duplicate keypresses (Bounce Keys)" -msgstr "àČšàȕàČČàČż àČ•àł€àČČàČżàȒàČ€àłàČ€àłàȗàČłàČšàłàČšàł àȆàČČàČ•àłàČ·àČżàČžàł(_I)" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 +msgid "" +"The percentage of the battery when it is considered low. Only valid when use-" +"time-for-policy is false." +msgstr "" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 -msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" -msgstr "àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàȗàČłàČšàłàČšàł àȒàȂàČŠàł àČŹàČŸàČ°àČżàČ—àł† àȒàȂàČŠàČ°àȂàČ€àł† àȒàČ€àłàČ€àł(_P) (àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàł)" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +msgid "Percentage considered critical" +msgstr "àȗàȂàČ­àł€àČ° àČȘàČ°àČżàȗàČŁàČżàČžàČČàČŸàČ—àłàČ” àČȘàłàČ°àČ€àČżàȶàČ€" -#: ../plugins/background/background.gnome-settings-plugin.in.h:1 -msgid "Background" -msgstr "àČčàČżàČšàłàČšàČČàł†" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +msgid "" +"The percentage of the battery when it is considered critical. Only valid " +"when use-time-for-policy is false." +msgstr "" -#: ../plugins/background/background.gnome-settings-plugin.in.h:2 -msgid "Background plugin" -msgstr "àČčàČżàČšàłàČšàČČàł† àČȘàłàČČàČ—àłàȇàČšàł" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +msgid "Percentage action is taken" +msgstr "" -#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:1 -msgid "Clipboard" -msgstr "àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàł" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +msgid "" +"The percentage of the battery when the critical action is performed. Only " +"valid when use-time-for-policy is false." +msgstr "" -#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:2 -msgid "Clipboard plugin" -msgstr "àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàł àČȘàłàČČàČ—àłàȇàČšàł" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +msgid "The time remaining when low" +msgstr "àȕàČĄàČżàČźàł† àȇàČŠàłàČŠàČŸàȗ àČŹàČŸàȕàČż àȇàČ°àłàČ” àČžàČźàČŻ" -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 -msgid "Dummy" -msgstr "àČĄàČźàłàČźàČż" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 +msgid "" +"The time remaining in seconds of the battery when it is considered low. Only " +"valid when use-time-for-policy is true." +msgstr "" -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 -msgid "Dummy plugin" -msgstr "àČĄàČźàłàČźàČż àČȘàłàČČàČ—àłàȇàČšàł" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 +msgid "The time remaining when critical" +msgstr "àȗàȂàČ­àł€àČ° àČžàłàČ„àČżàČ€àČżàČŻàČČàłàČČàČżàČŠàłàČŠàČŸàȗ àČŹàČŸàȕàČż àȇàČ°àłàČ” àČžàČźàČŻ" -#: ../plugins/font/font.gnome-settings-plugin.in.h:1 -msgid "Font" -msgstr "àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČż" - -#: ../plugins/font/font.gnome-settings-plugin.in.h:2 -msgid "Font plugin" -msgstr "àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČż àČȘàłàČČàČ—àłàȇàČšàł" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:64 -msgid "Don't show any warnings again for this filesystem" -msgstr "àȈ àȕàČĄàČ€ àČ”àłàČŻàČ”àČžàłàČ„àł†àȗàČŸàȗàČż àȈ àČžàȂàČŠàł‡àȶàČ”àČšàłàČšàł àČȘàłàČšàȃ àČ€àł‹àČ°àČżàČžàČŹàł‡àČĄ" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 +msgid "" +"The time remaining in seconds of the battery when it is considered critical. " +"Only valid when use-time-for-policy is true." +msgstr "" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 -msgid "Don't show any warnings again" -msgstr "àȈ àČžàȂàČŠàł‡àȶàČ”àČšàłàČšàł àČȘàłàČšàȃ àČ€àł‹àČ°àČżàČžàČŹàł‡àČĄ" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 +msgid "The time remaining when action is taken" +msgstr "" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:79 -#, c-format -msgid "The volume \"%s\" has only %s disk space remaining." -msgstr "àČȘàČ°àČżàČźàČŸàČŁ \"%s\" àČŠàČČàłàČČàČż àČ•àł‡àČ”àČČ %s àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àł àČźàČŸàČ€àłàČ° àČŹàČŸàȕàČż àȇàČŠàł†." +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 +msgid "" +"The time remaining in seconds of the battery when critical action is taken. " +"Only valid when use-time-for-policy is true." +msgstr "" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:82 -#, c-format -msgid "This computer has only %s disk space remaining." -msgstr "àȈ àȗàČŁàȕàČŠàČČàłàČČàČż àČ•àł‡àČ”àČČ %s àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àł àČźàČŸàČ€àłàČ° àČŹàČŸàȕàČż àȇàČŠàł†." +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 +msgid "Whether to use time-based notifications" +msgstr "àČžàČźàČŻ-àȆàȧàČ°àČżàČ€àČ”àČŸàČŠ àČžàł‚àȚàČšàł†àȗàČłàČšàłàČšàł àČŹàČłàČžàČŹàł‡àČ•àł†" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:98 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to another disk or partition." +"If time based notifications should be used. If set to false, then the " +"percentage change is used instead, which may fix a broken ACPI BIOS." msgstr "" -"àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàłàČ” àČźàł‚àČČàȕ, àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àČ€àł†àČ—àł†àČŻàłàČ” " -"àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àȇàČšàłàČšàłŠàȂàČŠàł àČĄàČżàČžàłàȕàČżàČ—àł† àȅàČ„àČ” àČ”àČżàČ­àČŸàȗàČ•àłàČ•àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż " -"àČžàłàČ„àČłàČ”àČšàłàČšàł àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:101 -msgid "" -"You can free up disk space by removing unused programs or files, or by " -"moving files to another disk or partition." +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 +msgid "If we should show the recalled battery warning for a broken battery" msgstr "" -"àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àČ€àł†àČ—àł†àČŻàłàČ” àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àČŹàł‡àČ°àłŠàȂàČŠàł " -"àČĄàČżàČžàłàȕàČżàČ—àł† àȅàČ„àČ” àČ”àČżàČ­àČŸàȗàČ•àłàČ•àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż àČžàłàČ„àČłàČ”àČšàłàČšàł àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:106 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to an external disk." +"If we should show the recalled battery warning for a broken battery. Set " +"this to false only if you know your battery is okay." msgstr "" -"àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàłàČ” àČźàł‚àČČàȕ, àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àČ€àł†àČ—àł†àČŻàłàČ” " -"àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àȒàȂàČŠàł àČčàłŠàČ°àȗàČżàČš àČĄàČżàČžàłàȕàČżàČ—àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż àČžàłàČ„àČłàČ”àČšàłàČšàł " -"àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:109 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 +msgid "The install root to use when adding and removing packages" +msgstr "àČȘàłàČŻàČŸàČ•àł‡àČœàłàȗàČłàČšàłàČšàł àČžàł‡àČ°àČżàČžàłàČ”àČŸàȗ àČźàČ€àłàČ€àł àČ€àł†àČ—àł†àČŠàłàČčàČŸàČ•àłàČ”àČŸàȗ àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àȅàČšàłàČžàłàČ„àČŸàČȘàČšàČŸ àČźàł‚àČČ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 msgid "" -"You can free up disk space by removing unused programs or files, or by " -"moving files to an external disk." +"The install root to use when processing packages, which is changed when " +"using LTSP or when testing." msgstr "" -"àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àČ€àł†àČ—àł†àČŻàłàČ” àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àȒàȂàČŠàł àČčàłŠàČ°àȗàČżàČš " -"àČĄàČżàČžàłàȕàČżàČ—àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż àČžàłàČ„àČłàČ”àČšàłàČšàł àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." +"àČȘàłàČŻàČŸàČ•àł‡àČœàłàȗàČłàČšàłàČšàł àČžàȂàČžàłàȕàČ°àČżàČžàłàČ”àČŸàȗ àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àȅàČšàłàČžàłàČ„àČŸàČȘàČšàČŸ àČźàł‚àČČ, LTSP àȅàČšàłàČšàł àČŹàČłàČžàłàČ”àČŸàȗ àȅàČ„àČ” " +"àČȘàČ°àł€àČ•àłàČ·àČżàČžàłàČ”àČŸàȗ àȇàČŠàł àČŹàČŠàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†." -#. Set up all the window stuff here -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:204 -msgid "Low Disk Space" -msgstr "àČĄàČżàČžàłàČ•àłâ€Œ àȜàČŸàȗ àȕàČĄàČżàČźàł† àȇàČŠàł†" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 +msgid "Use mobile broadband connections" +msgstr "àČźàłŠàČŹàłˆàČČàł àČŹàłàČ°àČŸàČĄàłâ€ŒàČŹàłàČŻàČŸàȂàČĄàł àČžàȂàČȘàČ°àłàȕàȗàČłàČšàłàČšàł àČŹàČłàČžàł" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:439 -msgid "Empty Trash" -msgstr "àȕàČžàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČżàČźàČŸàČĄàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 +msgid "" +"Use mobile broadband connections such as GSM and CDMA to check for updates." +msgstr "" +"àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČżàȗàČŸàȗàČż àČȘàČ°àČżàČ¶àł€àČČàČżàČžàČČàł GSM àČźàČ€àłàČ€àł CDMA àČŻàȂàČ€àČč àČźàłŠàČŹàłˆàČČàł àČŹàłàČ°àČŸàČĄàłâ€ŒàČŹàłàČŻàČŸàȂàČĄàł " +"àČžàȂàČȘàČ°àłàȕàȗàČłàČšàłàČšàł àČŹàČłàČžàł." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:447 -msgid "Examine..." -msgstr "àČȘàČ°àČżàČ¶àł€àČČàČżàČžàł..." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 +msgid "Use WiFi connections" +msgstr "WiFi àČžàȂàČȘàČ°àłàȕàȗàČłàČżàȗàČŸàȗàČż àČŹàČłàČžàČż" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:454 -msgid "Ignore" -msgstr "àȅàČČàČ•àłàČ·àČżàČžàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 +msgid "" +"Use WiFi (wireless LAN) connections to check for updates. It may be faster " +"to download packages when on a wired connection, and the VPN or proxy " +"required may also only be available on wired connections." +msgstr "" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:96 -#, c-format -msgid "Removing item %lu of %lu" -msgstr "%lu àȅàȂàȶàČ”àČšàłàČšàł (%lu àȗàČłàČČàłàČČàČż) àČ€àł†àČ—àł†àČŠàł àČčàČŸàȕàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 +msgid "Automatically download updates in the background without confirmation" +msgstr "" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:116 -#, c-format -msgid "Removing: %s" -msgstr "àČ€àł†àČ—àł†àČŠàł àČčàČŸàȕàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†: %s" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 +msgid "" +"Automatically download updates in the background without confirmation. " +"Updates will be auto-downloaded when using wired network connnections, and " +"also WiFi if 'connection-use-wifi' is enabled and mobile broadband if " +"'connection-use-mobile' is enabled." +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 +msgid "Automatically install these types of updates" +msgstr "àȈ àČŹàČ—àł†àČŻ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àČžàłàČ”àČŻàȂàȚàČŸàČČàČżàČ€àČ”àČŸàȗàČż àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàł" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:244 -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:293 -msgid "Emptying the trash" -msgstr "àȕàČžàČŠ àČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 +msgid "Automatically install these types of updates." +msgstr "àȈ àČŹàČ—àł†àČŻ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àČžàłàČ”àČŻàȂàȚàČŸàČČàČżàČ€àČ”àČŸàȗàČż àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàł." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:269 -msgid "Preparing to empty trash..." -msgstr "àȕàČžàČŠ àČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàČČàł àČžàČżàČŠàłàȧàČ—àłŠàČłàČżàČžàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†..." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 +msgid "Get the update list when the session starts" +msgstr "àȅàȧàČżàČ”àł‡àȶàČšàČ”àł àȆàČ°àȂàČ­àČ—àłŠàȂàČĄàČŸàȗ àȅàČȘàłâ€ŒàČĄàł‡àČŸàł àȆàČŠ àČȘàČŸàłàȟàČżàČŻàČšàłàČšàł àČȘàČĄàł†àČŠàłàČ•àłŠ" -#. Translators: "Emptying trash from " -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:296 -msgid "From: " -msgstr "àȇàȂàČŠ: " +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 +#, fuzzy +msgid "Get the update list when the session starts, even if not scheduled to." +msgstr "àȅàȧàČżàČ”àł‡àȶàČšàČ”àł àȆàČ°àȂàČ­àČ—àłŠàȂàČĄàČŸàȗ àȅàČȘàłâ€ŒàČĄàł‡àČŸàł àȆàČŠ àČȘàČŸàłàȟàČżàČŻàČšàłàČšàł àČȘàČĄàł†àČŠàłàČ•àłŠ" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:357 -msgid "Empty all of the items from the trash?" -msgstr "àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻàČČàłàČČàČżàČš àȎàČČàłàČČàČŸ àȅàȂàȶàȗàČłàČšàłàČšàł àȖàČŸàČČàČżàČźàČŸàČĄàČŹàł‡àČ•àł†?" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 +msgid "How often to check for updates" +msgstr "àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČżàȗàČŸàȗàČż àȎàČ·àłàČŸàł àČžàČźàČŻàČ•àłàČ•àłŠàČźàłàČźàł† àČȘàČ°àł€àČ•àłàČ·àČżàČžàČŹàł‡àČ•àł" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:360 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 msgid "" -"If you choose to empty the trash, all items in it will be permanently lost. " -"Please note that you can also delete them separately." +"How often to check for updates. Value is in seconds. This is a maximum " +"amount of time that can pass between a security update being published, and " +"the update being automatically installed or the user notified." msgstr "" -"àČšàł€àČ”àł àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻ àȅàȂàȶàȗàČłàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàČČàł àȆàČŻàłàČ•àł† àČźàČŸàČĄàČżàČŠàČČàłàČČàČż, àȅàČŠàČ°àČČàłàČČàČż àȎàČČàłàČČàČŸ àȅàȂàȶàȗàČłàł " -"àȶàČŸàČ¶àłàČ”àČ€àČ”àČŸàȗàČż àČšàČŸàȶàČ—àłŠàČłàłàČłàłàČ€àłàČ€àČ”àł†. àȅàČ”àČšàłàČšàł àČšàł€àČ”àł àČȘàłàČ°àČ€àłàČŻàł‡àȕàČ”àČŸàȗàČżàČŻàł‚ àČžàČč àȅàČłàČżàČžàČČàł àČžàČŸàČ§àłàČŻ àȎàČšàłàČšàłàČ”àČŠàČšàłàČšàł " -"àČŠàČŻàČ”àČżàČŸàłàČŸàł àȗàČźàČšàČżàČžàČż." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:367 -msgid "_Empty Trash" -msgstr "àȕàČžàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČżàČźàČŸàČĄàł(_E)" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 +msgid "How often to notify the user that non-critical updates are available" +msgstr "" -#: ../plugins/keybindings/gsd-keybindings-manager.c:139 -#, c-format -msgid "Key binding (%s) is invalid" -msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àČŻàł (%s) àȅàČźàČŸàČšàłàČŻàČ”àČŸàȗàČżàČŠàł†" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 +msgid "" +"How often to tell the user there are non-critical updates. Value is in " +"seconds. Security update notifications are always shown after the check for " +"updates, but non-critical notifications should be shown a lot less " +"frequently." +msgstr "" -#: ../plugins/keybindings/gsd-keybindings-manager.c:197 -#, c-format -msgid "Key binding (%s) is incomplete" -msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł† (%s) àČȘàł‚àČ°àłàČŁàČ”àČŸàȗàČżàČČàłàČČ" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 +msgid "The last time we told the user about non-critical notifications" +msgstr "" -#: ../plugins/keybindings/gsd-keybindings-manager.c:493 -#, c-format +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 msgid "" -"Error while trying to run (%s)\n" -"which is linked to the key (%s)" +"The last time we notified the user about non-critical updates. Value is in " +"seconds since the epoch, or zero for never." msgstr "" -"(%s) àȅàČšàłàČšàł àȚàČČàČŸàČŻàČżàČžàłàČ”àČŸàȗ àČŠàł‹àČ·\n" -"àȎàČŠàłàČ°àČŸàȗàČżàČŠàł†. àȅàČŠàł (%s) àČ•àł€àČČàČżàČ—àł† àČčàłŠàȂàČŠàČżàČ•àłŠàȂàČĄàČżàČŠàł†" -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:1 -msgid "Keybindings" -msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àȗàČłàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 +msgid "How often to check for distribution upgrades" +msgstr "àČ”àČżàČ€àČ°àČŁàł†àČŻ àČšàČ”àł€àȕàČ°àČŁàȗàČłàČżàȗàČŸàȗàČż àȎàČ·àłàČŸàł àČžàČźàČŻàČ•àłàČ•àłŠàČźàłàČźàł† àČȘàČ°àł€àČ•àłàČ·àČżàČžàČŹàł‡àČ•àł" -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:2 -msgid "Keybindings plugin" -msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àȗàČł àČȘàłàČČàČ—àłàȇàČšàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 +msgid "How often to check for distribution upgrades. Value is in seconds." +msgstr "àČ”àČżàČ€àČ°àČŁàł†àČŻ àČšàČ”àł€àȕàČ°àČŁàȗàČłàČżàȗàČŸàȗàČż àȎàČ·àłàČŸàł àČžàČźàČŻàČ•àłàČ•àłŠàČźàłàČźàł† àČȘàČ°àł€àČ•àłàČ·àČżàČžàČŹàł‡àČ•àł. àČžàł†àČ•àł†àȂàČĄàłàȗàČłàČČàłàČČàČż." -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 -msgid "Keyboard" -msgstr "àČ•àł€àČČàČż àČźàČŁàł†" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 +msgid "How often to refresh the package cache" +msgstr "àČȘàłàČŻàČŸàČ•àł‡àČœàł àČ•àłàČŻàČŸàČ¶àł†àČŻàČšàłàČšàł àȎàČ·àłàČŸàł àČžàČźàČŻàČ•àłàČ•àłŠàČźàłàČźàł† àČ€àČŸàȜàČŸàČ—àłŠàČłàČżàČžàČŹàł‡àČ•àł" -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 -msgid "Keyboard plugin" -msgstr "àČ•àł€àČČàČż àČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 +msgid "How often to refresh the package cache. Value is in seconds." +msgstr "àČȘàłàČŻàČŸàČ•àł‡àČœàł àČ•àłàČŻàČŸàČ¶àł†àČŻàČšàłàČšàł àȎàČ·àłàČŸàł àČžàČźàČŻàČ•àłàČ•àłŠàČźàłàČźàł† àČ€àČŸàȜàČŸàČ—àłŠàČłàČżàČžàČŹàł‡àČ•àł. àČžàł†àČ•àł†àȂàČĄàłàȗàČłàČČàłàČČàČż." -#: ../plugins/keyboard/gsd-keyboard-xkb.c:117 -#, c-format +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 msgid "" -"Error activating XKB configuration.\n" -"It can happen under various circumstances:\n" -"- a bug in libxklavier library\n" -"- a bug in X server (xkbcomp, xmodmap utilities)\n" -"- X server with incompatible libxkbfile implementation\n" -"\n" -"X server version data:\n" -"%s\n" -"%d\n" -"%s\n" -"If you report this situation as a bug, please include:\n" -"- The result of %s\n" -"- The result of %s" +"The number of seconds at session startup to wait before checking for updates" msgstr "" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:131 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 msgid "" -"You are using XFree 4.3.0.\n" -"There are known problems with complex XKB configurations.\n" -"Try using a simpler configuration or taking a fresher version of XFree " -"software." +"The number of seconds at session startup to wait before checking for " +"updates. Value is in seconds." msgstr "" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:203 -msgid "Unknown" -msgstr "àČ—àłŠàČ€àłàČ€àČżàČ°àČŠ" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 +msgid "Install updates automatically when running on battery power" +msgstr "" +"àČŹàłàČŻàČŸàȟàČ°àČż àČ”àČżàČŠàłàČŻàłàČšàłàțàČ•àłàČ€àČżàČŻàČČàłàČČàČż àȚàČČàČŸàČŻàČżàČ€àČ—àłŠàČłàłàČłàłàČ”àČŸàȗ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àČžàłàČ”àČŻàȂàȚàČŸàČČàČżàČ€àČ”àČŸàȗàČż " +"àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàł" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:272 -#, c-format -msgid "Keyboard Layout \"%s\"" -msgstr "\"%s\" àČ•àł€àČČàČżàČźàČŁàł† àČČàł‡àȔàČŸàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 +msgid "Install updates automatically when running on battery power." +msgstr "" +"àČŹàłàČŻàČŸàȟàČ°àČż àČ”àČżàČŠàłàČŻàłàČšàłàțàČ•àłàČ€àČżàČŻàČČàłàČČàČż àȚàČČàČŸàČŻàČżàČ€àČ—àłŠàČłàłàČłàłàČ”àČŸàȗ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àČžàłàČ”àČŻàȂàȚàČŸàČČàČżàČ€àČ”àČŸàȗàČż " +"àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàł." -#: ../plugins/keyboard/gsd-keyboard-xkb.c:395 -msgid "_Layouts" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 +msgid "Notify the user when distribution upgrades are available" +msgstr "àČ”àČżàČ€àČ°àČŁàł†àČŻ àČšàČ”àł€àȕàČ°àČŁàČ”àł àČČàČ­àłàČŻàČ”àČżàČŠàłàČŠàČŸàȗ àČŹàČłàČ•àł†àČŠàČŸàČ°àČ°àČżàČ—àł† àČžàł‚àȚàČżàČžàł" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 +msgid "Notify the user when distribution upgrades are available." +msgstr "àČ”àČżàČ€àČ°àČŁàł†àČŻ àČšàČ”àł€àȕàČ°àČŁàČ”àł àČČàČ­àłàČŻàČ”àČżàČŠàłàČŠàČŸàȗ àČŹàČłàČ•àł†àČŠàČŸàČ°àČ°àČżàČ—àł† àČžàł‚àȚàČżàČžàł." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 +msgid "Notify the user for completed updates" +msgstr "àČȘàł‚àČ°àłàČŁàČ—àłŠàȂàČĄ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČł àČŹàČ—àłàČ—àł† àČŹàČłàČ•àł†àČŠàČŸàČ°àČ°àČżàČ—àł† àČžàł‚àȚàČżàČžàł" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 +msgid "" +"Notify the user for completed updates. This may be a useful notification for " +"some users as installing updates prevents shutdown." msgstr "" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:402 -msgid "Keyboard _Preferences" -msgstr "àČ•àł€àČČàČżàČźàČŁàł† àȆàČŠàłàČŻàČ€àł†àȗàČłàł(_P)" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +msgid "Notify the user for completed updates where the user needs to restart" +msgstr "" +"àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČł àČȘàł‚àČ°àłàČŁàČ—àłŠàȂàČĄ àČšàȂàČ€àČ° àȗàČŁàȕàČ”àČšàłàČšàł àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČŠàłàČŠàČČàłàČČàČż àČŹàČłàČ•àł†àČŠàČŸàČ°àČ°àČżàČ—àł† " +"àČžàł‚àȚàČżàČžàł" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:408 -msgid "Show _Current Layout" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 +msgid "Notify the user for completed updates where the user needs to restart." msgstr "" +"àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČł àČȘàł‚àČ°àłàČŁàČ—àłŠàȂàČĄ àČšàȂàČ€àČ° àȗàČŁàȕàČ”àČšàłàČšàł àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČŠàłàČŠàČČàłàČČàČż àČŹàČłàČ•àł†àČŠàČŸàČ°àČ°àČżàČ—àł† " +"àČžàł‚àȚàČżàČžàł." -#: ../plugins/keyboard/modmap-dialog.ui.h:1 -msgid "A_vailable files:" -msgstr "àČČàČ­àłàČŻàČ”àČżàČ°àłàČ” àȕàČĄàČ€àȗàČłàł(_v):" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 +msgid "" +"Notify the user when the automatic update was not started on battery power" +msgstr "" -#: ../plugins/keyboard/modmap-dialog.ui.h:2 -msgid "Load modmap files" -msgstr "àČźàł‹àČĄàłâ€ŒàČźàłàČŻàČŸàČȘàł àȕàČĄàČ€àȗàČłàČšàłàČšàł àČČàł‹àČĄàł àČźàČŸàČĄàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 +msgid "" +"Notify the user when the update was not automatically started because the " +"machine is running on battery power." +msgstr "" -#: ../plugins/keyboard/modmap-dialog.ui.h:3 -msgid "Would you like to load the modmap file(s)?" -msgstr "àČźàł‹àČĄàłâ€ŒàČźàłàČŻàČŸàČȘàł àȕàČĄàČ€àČ”àČšàłàČšàł(àȗàČłàČšàłàČšàł) àČČàł‹àČĄàł àČźàČŸàČĄàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 +msgid "Notify the user when the update was started" +msgstr "àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€Œ àȆàČ°àȂàČ­àČ—àłŠàȂàČĄàČŸàȗ àČŹàČłàČ•àł†àČŠàČŸàČ°àČ°àČżàČ—àł† àČžàł‚àȚàČżàČžàł" -#: ../plugins/keyboard/modmap-dialog.ui.h:4 -msgid "_Do not show this message again" -msgstr "àȈ àČžàȂàČŠàł‡àȶàČ”àČšàłàČšàł àČȘàłàČšàȃ àČ€àł‹àČ°àČżàČžàČŹàł‡àČĄ(_D)" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 +msgid "Notify the user when the update was started." +msgstr "àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€Œ àȆàČ°àȂàČ­àČ—àłŠàȂàČĄàČŸàȗ àČŹàČłàČ•àł†àČŠàČŸàČ°àČ°àČżàČ—àł† àČžàł‚àȚàČżàČžàł." -#: ../plugins/keyboard/modmap-dialog.ui.h:5 -msgid "_Load" -msgstr "àČČàł‹àČĄàł àČźàČŸàČĄàł(_L)" - -#: ../plugins/keyboard/modmap-dialog.ui.h:6 -msgid "_Loaded files:" -msgstr "àČČàł‹àČĄàł àČźàČŸàČĄàČČàČŸàČŠ àȕàČĄàČ€àȗàČłàł(_L):" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 +msgid "Ask the user if additional firmware should be installed" +msgstr "" -#: ../plugins/keyboard/show-layout.ui.h:1 -msgid "Keyboard Layout" -msgstr "àČ•àł€àČČàČżàČźàČŁàł† àČČàł‡àȔàČŸàł" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 +msgid "" +"Ask the user if additional firmware should be installed if it is available." +msgstr "" -#: ../plugins/media-keys/gsd-media-keys-manager.c:195 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 +msgid "Firmware files that should not be searched for" +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 msgid "" -"Could not get default terminal. Verify that your default terminal command is " -"set and points to a valid application." +"Firmware files that should not be searched for, separated by commas. These " +"can include '*' and '?' characters." msgstr "" -"àČȘàł‚àČ°àłàČ”àČšàČżàČŻàł‹àȜàČżàČ€àȟàČ°àłàČźàČżàČšàČČàł àČȘàČĄàł†àČŻàČČàČŸàȗàČżàČČàłàČČ. àČšàČżàČźàłàČź àČȘàł‚àČ°àłàČ”àČšàČżàČŻàł‹àȜàČżàČ€ àȟàČ°àłàČźàČżàČšàČČàł àȆàČœàłàČžàł†àČŻàČšàłàČšàł àČčàłŠàȂàČŠàČżàČžàČČàČŸàȗàČżàČŠàł† " -"àČčàČŸàČ—àł àȒàȂàČŠàł àČźàČŸàČšàłàČŻàČ”àČŸàČŠ àȅàČšàłàČ”àČŻàČ•àłàČ•àł† àČžàł‚àȚàČżàČ€àČ—àłŠàȂàČĄàČżàČŠàł† àȎàȂàČŠàł àČȘàČ°àČżàČ¶àł€àČČàČżàČžàČż." -#: ../plugins/media-keys/gsd-media-keys-manager.c:235 -#, c-format +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 +msgid "Devices that should be ignored" +msgstr "àȕàČĄàł†àȗàČŁàČżàČžàČŹàł‡àȕàČżàČ°àłàČ” àČžàČŸàȧàČšàȗàČłàł" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 msgid "" -"Couldn't execute command: %s\n" -"Verify that this is a valid command." +"Devices that should be ignored, separated by commas. These can include '*' " +"and '?' characters." msgstr "" -"àȆàČœàłàČžàł†àČŻàČšàłàČšàł àȕàČŸàČ°àłàČŻàȗàČ€àČ—àłŠàČłàČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ: %s\n" -"àȇàČŠàł àȒàȂàČŠàł àČźàČŸàČšàłàČŻàČ”àČŸàČŠ àȆàČœàłàČžàł†àČŻàČŸàȗàČżàČŠàł† àȎàȂàČŠàł àȖàȚàČżàČ€àČȘàČĄàČżàČžàČżàČ•àłŠàČłàłàČłàČż." -#. translators: -#. * The device has been disabled -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:991 -msgid "Disabled" -msgstr "àȅàȶàČ•àłàČ€àČ—àłŠàȂàČĄ" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 +msgid "The filenames on removable media that designate it a software source." +msgstr "" -#. translators: -#. * The number of sound outputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:998 -#, c-format +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 +msgid "" +"When removable media is inserted, it is checked to see if it contains any " +"important filenames in the root directory. If the filename matches, then an " +"updates check is performed. This allows post-install disks to be used to " +"update running systems." +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 +msgid "File for default configuration for RandR" +msgstr "RandR àȗàČŸàȗàČżàČš àČȘàł‚àČ°àłàČ”àČšàČżàČŻàł‹àȜàČżàČ€ àČžàȂàČ°àȚàČšàł†àČŻ àȕàČĄàČ€" + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 +msgid "" +"The XRandR plugin will look for a default configuration in the file " +"specified by this key. This is similar to the ~/.config/monitors.xml that " +"normally gets stored in users' home directories. If a user does not have " +"such a file, or has one that does not match the user's setup of monitors, " +"then the file specified by this key will be used instead." +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 +msgid "Whether to turn off specific monitors after boot" +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +msgid "" +"'clone' will display the same thing on all monitors, 'dock' will switch off " +"the internal monitor, 'do-nothing' will use the default Xorg behaviour " +"(extend the desktop in recent versions)" +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 +msgid "Antialiasing" +msgstr "àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +msgid "" +"The type of antialiasing to use when rendering fonts. Possible values are: " +"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " +"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +msgstr "" +"àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČżàȗàČłàČšàłàČšàł àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł àČźàČŸàČĄàłàČ”àČŸàȗ àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àČŹàČ—àł†àȗàČłàł. àČžàČŸàČ§àłàČŻàČ”àČżàČ°àłàČ” " +"àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: " +"àČŻàČŸàČ”àłàČŠàł† àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł àČŹàł‡àČĄàČ”àČŸàČŠàČČàłàČČàČż \"àČŻàČŸàČ”àłàČŠàł‚ àȇàČČàłàČČ\", àČźàČŸàČšàłàČŻàČ”àČŸàČŠ àČ—àłàČ°àł‡àČžàłàČ•àł‡àČČàł " +"àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àłâ€ŒàȗàČŸàȗàČż \"àČ—àłàČ°àł‡àČžàłàČ•àł‡àČČàł\", àČčàČŸàČ—àł àČžàČŹàłâ€ŒàČȘàČżàČ•àłàČžàł†àČČàł àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àłâ€ŒàȗàČŸàȗàČż " +"\"rgba" +"\" (àČ•àł‡àČ”àČČ LCD àČ€àł†àČ°àł†àȗàČłàČżàČ—àł† àČźàČŸàČ€àłàČ°)." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 +msgid "Hinting" +msgstr "àČčàČżàȂàȟàČżàȂàČ—àł" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 +msgid "" +"The type of hinting to use when rendering fonts. Possible values are: \"none" +"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" +"\" for maximum hinting (may cause distortion of letter forms)." +msgstr "" +"àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČżàȗàČłàČšàłàČšàł àČ°àł†àȂàČĄàČ°àČżàȂàČ—àł àČźàČŸàČĄàČČàł àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àČčàČżàȂàȟàČżàȂàČ—àł àČȘàłàČ°àȕàČŸàČ°. àČžàČŸàČ§àłàČŻàČ”àČżàČ°àłàČ” " +"àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: " +"àČŻàČŸàČ”àłàČŠàł† àČčàČżàȂàȟàČżàȂàČ—àł àČŹàł‡àČĄàČ”àČŸàČŠàČČàłàČČàČż \"àČŻàČŸàČ”àłàČŠàł‚ àȇàČČàłàČČ\", àȆàČ°àȂàČ­àČżàȕ àČźàČŸàłàȟàČ•àłàȕàČŸàȗàČż \"àČ•àłŠàȂàȚ\", àČźàČ§àłàČŻàČź " +"àČźàČŸàłàȟàČ•àłàȕàČŸàȗàČż \"àČźàČ§àłàČŻàČź\", àČčàČŸàČ—àł àȗàČ°àČżàČ·àłàȟ àČčàČżàȂàȟàČżàȂàČ—àłâ€ŒàȗàČŸàȗàČż \"àČžàȂàČȘàł‚àČ°àłàČŁ\" (àȇàČŠàł àȅàČ•àłàČ·àČ°àȗàČłàČšàłàČšàł " +"àČ”àČżàČ°àł‚àČȘàČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł)." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +msgid "RGBA order" +msgstr "RGBA àČ•àłàČ°àČź" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 +msgid "" +"The order of subpixel elements on an LCD screen; only used when antialiasing " +"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " +"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " +"on bottom." +msgstr "" +"àȒàȂàČŠàł LCD àČ€àł†àČ°àł†àČŻàČČàłàČČàČż àČžàČŹàłâ€ŒàČȘàČżàČ•àłàČžàł†àČČàłâ€Œ àȘàȟàȕàȗàČł àČ•àłàČ°àČź; àČ•àł‡àČ”àČČ \"rgba\" àČ—àł† àȆàȂàȟàČżàȅàČČàČżàČŻàČŸàČžàČżàȂàČ—àł " +"àČźàČŸàČĄàłàČ”àČŸàȗ " +"àČźàČŸàČ€àłàČ° àČŹàČłàČžàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†. àČžàČŸàČ§àłàČŻàČ”àČżàČ°àłàČ” àČźàłŒàČČàłàČŻàȗàČłàł†àȂàČŠàČ°àł†: àȎàČĄàČ­àČŸàȗàČŠàČČàłàČČàČż àČ•àł†àȂàČȘàČżàȗàČŸàȗàČż \"rgb\" " +"(àČžàČ°àłàČ”àł† " +"àČžàČŸàČźàČŸàČšàłàČŻ), àȎàČĄàČ­àČŸàȗàČŠàČČàłàČČàČż àČšàł€àČČàČżàȗàČŸàȗàČż \"bgr\", àČźàł‡àČČàłàČ­àČŸàȗàČŠàČČàłàČČàČż àČ•àł†àȂàČȘàČżàȗàČŸàȗàČż \"vrgb\", " +"àȅàČĄàČżàČ­àČŸàȗàČŠàČČàłàČČàČż àČ•àł†àȂàČȘàČżàȗàČŸàȗàČż \"vbgr\"." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 +msgid "List of explicitly disabled GTK+ modules" +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 +msgid "" +"A list of strings representing the GTK+ modules that will not be loaded, " +"even if enabled by default in their configuration." +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 +msgid "List of explicitly enabled GTK+ modules" +msgstr "" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 +msgid "" +"A list of strings representing the GTK+ modules that will be loaded, usually " +"in addition to conditional and forcibly disabled ones." +msgstr "" + +#: ../gnome-settings-daemon/main.c:54 +msgid "Enable debugging code" +msgstr "àČŠàł‹àČ·àČšàČżàČ”àČŸàČ°àČŁàČŸ àČžàȂàČ•àł‡àČ€àČ”àČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#: ../gnome-settings-daemon/main.c:55 +#| msgid "Exit after a time - for debugging" +msgid "Exit after a time (for debugging)" +msgstr "àČšàČżàȗàČŠàČżàČ€ àČžàČźàČŻàČŠ àČšàȂàČ€àČ° àČšàČżàČ°àłàȗàČźàČżàČžàł (àČŠàł‹àČ·àČšàČżàČ”àČŸàČ°àČŁàł†àȗàČŸàȗàČż)" + +#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:1 +msgid "Accessibility Keyboard" +msgstr "àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł†" + +#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:2 +msgid "Accessibility keyboard plugin" +msgstr "àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:383 +#, c-format +msgid "There was an error displaying help: %s" +msgstr "àČšàł†àČ°àČ”àČšàłàČšàł àČ€àł‹àČ°àČżàČžàłàČ”àČŸàȗ àȒàȂàČŠàł àČŠàł‹àČ· àȉàȂàȟàČŸàȗàČżàČŠàł†: %s" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:508 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:572 +#| msgid "Slow Keys Alert" +msgid "Slow Keys Turned On" +msgstr "àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àȚàČŸàČČàČżàČ€àČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 +#| msgid "Slow Keys Alert" +msgid "Slow Keys Turned Off" +msgstr "àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 +msgid "" +"You just held down the Shift key for 8 seconds. This is the shortcut for " +"the Slow Keys feature, which affects the way your keyboard works." +msgstr "" +"àČšàł€àČ”àł àȈàȗàČ€àČŸàČš àȶàČżàČ«àłàČŸàłâ€ àČ•àł€àČČàČżàČŻàČšàłàČšàł àȎàȂàČŸàł àČžàł†àČ•àł†àȂàČĄàłàȗàČł àȕàČŸàČČ àȒàČ€àłàČ€àČż àČčàČżàČĄàČżàČŠàČżàČŠàłàČŠàł€àČ°àČż. àȈ " +"àȶàČŸàČ°àłàČŸàł-àȕàČŸàł, " +"àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČł àČžàČ”àČČàČ€àłàČ€àČŸàȗàČżàČŠàłàČŠàł, àČšàČżàČźàłàČź àČ•àł€àČČàČżàČźàČŁàł† àČ•àł†àČČàČžàČźàČŸàČĄàłàČ” àČ°àł€àČ€àČżàČŻ àČźàł‡àČČàł† àȇàČŠàł àČȘàČ°àČżàČŁàČŸàČź " +"àČŹàł€àČ°àłàČ€àłàČ€àČŠàł†." + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 +#: ../plugins/mouse/gsd-mouse-manager.c:867 +#| msgid "Universal Access Preferences" +msgid "Universal Access" +msgstr "àȜàČŸàȗàČ€àČżàȕ àČšàČżàČČàłàȕàČŁàł†" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn Off" +msgstr "àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàł" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn On" +msgstr "àȚàČŸàČČàČšàł†àČ—àłŠàČłàČżàČžàł" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave On" +msgstr "" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave Off" +msgstr "" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn Off" +msgstr "àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàł (_T)" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn On" +msgstr "àȚàČŸàČČàČšàł†àČ—àłŠàČłàČżàČžàł (_T)" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave On" +msgstr "" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave Off" +msgstr "" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:641 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:707 +#| msgid "Sticky Keys Alert" +msgid "Sticky Keys Turned On" +msgstr "àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àȚàČŸàČČàČšàł†àČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 +#| msgid "Sticky Keys Alert" +msgid "Sticky Keys Turned Off" +msgstr "àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 +msgid "" +"You just pressed the Shift key 5 times in a row. This is the shortcut for " +"the Sticky Keys feature, which affects the way your keyboard works." +msgstr "" +"àČšàł€àČ”àł àȈàȗàČ€àČŸàČš àȶàČżàČ«àłàČŸàłâ€ àČ•àł€àČČàČżàČŻàČšàłàČšàł àČ•àłàČ°àČźàČ”àČŸàȗàČż àȐàČŠàł àČŹàČŸàČ°àČż àȒàČ€àłàČ€àČżàČŠàłàČŠàł€àČ°àČż. àȈ àȶàČŸàČ°àłàČŸàł-àȕàČŸàł " +"àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČł " +"àČžàČ”àČČàČ€àłàČ€àČŸàȗàČżàČŠàłàČŠàł, àČšàČżàČźàłàČź àČ•àł€àČČàČżàČźàČŁàł† àČ•àł†àČČàČžàČźàČŸàČĄàłàČ” àČ°àł€àČ€àČżàČŻ àČźàł‡àČČàł† àȇàČŠàł àČȘàČ°àČżàČŁàČŸàČź àČŹàł€àČ°àłàČ€àłàČ€àČŠàł†." + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:646 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:712 +msgid "" +"You just pressed two keys at once, or pressed the Shift key 5 times in a " +"row. This turns off the Sticky Keys feature, which affects the way your " +"keyboard works." +msgstr "" +"àČšàł€àČ”àł àȈàȗàČ€àČŸàČšàł† àȎàČ°àČĄàł àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àȒàȂàČŠàł† àČŹàČŸàČ°àČżàČ—àł†, àȅàČ„àČ” àȶàČżàČ«àłàČŸàłâ€ àČ•àł€àČČàČżàČŻàČšàłàČšàł àČ•àłàČ°àČźàČ”àČŸàȗàČż àȐàČŠàł " +"àČŹàČŸàČ°àČż " +"àȒàČ€àłàČ€àČżàČŠàłàČŠàł€àČ°àČż àȈ àȶàČŸàČ°àłàČŸàł-àȕàČŸàł, àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČł àČžàČ”àČČàČ€àłàČ€àČŸàȗàČżàČŠàłàČŠàł, àČšàČżàČźàłàČź àČ•àł€àČČàČżàČźàČŁàł† " +"àČ•àł†àČČàČžàČźàČŸàČĄàłàČ” àČ°àł€àČ€àČżàČŻ " +"àČźàł‡àČČàł† àȇàČŠàł àČȘàČ°àČżàČŁàČŸàČź àČŹàł€àČ°àłàČ€àłàČ€àČŠàł†." + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 +msgid "Universal Access Preferences" +msgstr "àȜàČŸàȗàČ€àČżàȕ àČšàČżàČČàłàȕàČŁàČŸ àȆàČŠàłàČŻàČ€àł†àȗàČłàł" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 +msgid "Use on-screen _keyboard" +msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†(_k)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 +msgid "Use screen _reader" +msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàłàČšàł àČŹàČłàČžàł(_r)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +msgid "Use screen _magnifier" +msgstr "àČ€àł†àČ°àł†àČŻ àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČ°àłâ€Œ àȅàČšàłàČšàł àČŹàČłàČžàł(_m)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 +msgid "Enhance _contrast in colors" +msgstr "àČŹàČŁàłàČŁàȗàČł àȗàČŸàČąàČ€àł†àČŻàČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàł(_c)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 +msgid "Make _text larger and easier to read" +msgstr "àČȘàČ àłàČŻàČ”àČšàłàČšàł àČŠàłŠàČĄàłàČĄàČŠàČŸàȗàČż, àȓàČŠàČČàł àČžàłàČČàČ­àČ”àČŸàČ—àłàČ”àȂàČ€àł† àČźàČŸàČĄàł(_t)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 +msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" +msgstr "" +"àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàȗàČłàČšàłàČšàł àȒàȂàČŠàł àČŹàČŸàČ°àČżàČ—àł† àȒàȂàČŠàČ°àȂàČ€àł† àȒàČ€àłàČ€àł(_P) (àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàł)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 +msgid "_Ignore duplicate keypresses (Bounce Keys)" +msgstr "àČšàȕàČČàČż àČ•àł€àČČàČżàȒàČ€àłàČ€àłàȗàČłàČšàłàČšàł àȆàČČàČ•àłàČ·àČżàČžàł(_I)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 +msgid "Press and _hold keys to accept them (Slow Keys)" +msgstr "àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àȅàȂàČ—àł€àȕàČ°àČżàČžàČČàł àȅàČ”àČšàłàČšàł àȒàČ€àłàČ€àČż àČčàČżàČĄàČżàČŻàČżàČ°àČż(àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàł) (_h)" + +#: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:1 +#| msgid "Accessibility" +msgid "Accessibility settings" +msgstr "àČšàČżàČČàłàȕàČŁàł†àČŻ àČžàČżàČŠàłàȧàČ€àł†àȗàČłàł" + +#: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:2 +#| msgid "Accessibility keyboard plugin" +msgid "Accessibility settings plugin" +msgstr "àČšàČżàČČàłàȕàČŁàČŸ àČžàČżàČŠàłàȧàČ€àł†àȗàČł àČȘàłàČČàČ—àłàȇàČšàł" + +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 +msgid "Mount Helper" +msgstr "" + +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 +msgid "Automount and autorun plugged devices" +msgstr "" + +#: ../plugins/automount/gsd-automount-manager.c:151 +#, c-format +msgid "Unable to mount %s" +msgstr "%s àȎàČšàłàČšàł àȏàČ°àČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" + +#: ../plugins/automount/gsd-automount-manager.c:264 +#, c-format +msgid "Unable to open a folder for %s" +msgstr "%s àȎàČšàłàČšàłàČ”àČŠàČ•àłàȕàČŸàȗàČż àȕàČĄàČ€àČ•àł‹àȶàČ”àČšàłàČšàł àČ€àł†àČ°àł†àČŻàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" + +#: ../plugins/automount/gsd-autorun.c:340 +msgid "Ask what to do" +msgstr "àȏàČšàł àČźàČŸàČĄàČŹàł‡àČ•àł àȎàȂàČŠàł àČ•àł‡àČłàł" + +#: ../plugins/automount/gsd-autorun.c:346 +msgid "Do Nothing" +msgstr "àȏàČšàČšàłàČšàł‚ àČźàČŸàČĄàČŹàł‡àČĄ" + +#: ../plugins/automount/gsd-autorun.c:352 +#| msgid "Home folder" +msgid "Open Folder" +msgstr "àȕàČĄàČ€àČ•àł‹àȶàČ”àČšàłàČšàł àČ€àł†àČ°àł†" + +#: ../plugins/automount/gsd-autorun.c:495 +#, c-format +msgid "Unable to eject %p" +msgstr "%p àȅàČšàłàČšàł àČčàłŠàČ°àČ€àČłàłàČłàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" + +#: ../plugins/automount/gsd-autorun.c:497 +#, c-format +msgid "Unable to unmount %p" +msgstr "%p àȎàČšàłàČšàł àȇàČłàČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" + +#: ../plugins/automount/gsd-autorun.c:702 +msgid "You have just inserted an Audio CD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àȆàČĄàČżàČŻàł‹ CDàČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:704 +msgid "You have just inserted an Audio DVD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àȆàČĄàČżàČŻàł‹ DVD àČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:706 +msgid "You have just inserted a Video DVD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àČ”àł€àČĄàČżàČŻàł‹ DVD àČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:708 +msgid "You have just inserted a Video CD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àČ”àł€àČĄàČżàČŻàł‹ CD àČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:710 +msgid "You have just inserted a Super Video CD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àČžàł‚àČȘàČ°àł àČ”àł€àČĄàČżàČŻàł‹ CD àČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:712 +msgid "You have just inserted a blank CD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àȖàČŸàČČàČż CDàČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:714 +msgid "You have just inserted a blank DVD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àȖàČŸàČČàČż DVDàČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:716 +msgid "You have just inserted a blank Blu-Ray disc." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àȖàČŸàČČàČż àČŹàłàČČàł‚-àČ°àł‡ àČĄàČżàČžàłàȕàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:718 +msgid "You have just inserted a blank HD DVD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àȖàČŸàČČàČż HD DVDàČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:720 +msgid "You have just inserted a Photo CD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àČ«àł‹àČŸàłŠ CDàČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:722 +msgid "You have just inserted a Picture CD." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àČȘàČżàČ•àłàȚàČ°àł CDàČŻàČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:724 +msgid "You have just inserted a medium with digital photos." +msgstr "" +"àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àČĄàČżàȜàČżàȟàČČàł àČ«àł‹àČŸàłŠàȗàČłàČšàłàČšàł àČčàłŠàȂàČŠàČżàČ°àłàČ” àȒàȂàČŠàł àČźàČŸàČ§àłàČŻàČźàČ”àČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:726 +msgid "You have just inserted a digital audio player." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àČĄàČżàȜàČżàȟàČČàł àȆàČĄàČżàČŻàł‹ àȚàČŸàČČàȕàČ”àČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:728 +msgid "" +"You have just inserted a medium with software intended to be automatically " +"started." +msgstr "" +"àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àČžàłàČ”àČŻàȂàȚàČŸàČČàČżàČ€àČ”àČŸàȗàČż àȆàČ°àȂàČ­àČ—àłŠàČłàłàČłàłàČ” àČ€àȂàČ€àłàČ°àČŸàȂàȶàČ”àČšàłàČšàł àČčàłŠàȂàČŠàČżàČ°àłàČ” àČźàČŸàČ§àłàČŻàČźàČ”àČšàłàČšàł " +"àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#. fallback to generic greeting +#: ../plugins/automount/gsd-autorun.c:731 +msgid "You have just inserted a medium." +msgstr "àČšàł€àČ”àł àȈàȗ àČ€àČŸàČšàł† àȒàȂàČŠàł àČźàČŸàČ§àłàČŻàČźàČ”àČšàłàČšàł àČ€àł‚àČ°àČżàČžàČżàČŠàłàČŠàł€àČ°àČż." + +#: ../plugins/automount/gsd-autorun.c:733 +msgid "Choose what application to launch." +msgstr "àČŻàČŸàČ” àȅàČšàłàČ”àČŻàČ”àČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČŹàł‡àČ•àł àȎàČšàłàČšàłàČ”àłàČŠàČšàłàČšàł àȆàČŻàłàČ•àł† àČźàČŸàČĄàČż." + +#: ../plugins/automount/gsd-autorun.c:742 +#, c-format +msgid "" +"Select how to open \"%s\" and whether to perform this action in the future " +"for other media of type \"%s\"." +msgstr "" + +#: ../plugins/automount/gsd-autorun.c:769 +msgid "_Always perform this action" +msgstr "" + +#: ../plugins/automount/gsd-autorun.c:785 +#| msgid "Eject" +msgid "_Eject" +msgstr "àČčàłŠàČ°àČ€àČłàłàČłàł (_E)" + +#: ../plugins/automount/gsd-autorun.c:790 +msgid "_Unmount" +msgstr "àȇàČłàČżàČžàł (_U)" + +#: ../plugins/background/background.gnome-settings-plugin.in.h:1 +msgid "Background" +msgstr "àČčàČżàČšàłàČšàČČàł†" + +#: ../plugins/background/background.gnome-settings-plugin.in.h:2 +msgid "Background plugin" +msgstr "àČčàČżàČšàłàČšàČČàł† àČȘàłàČČàČ—àłàȇàČšàł" + +#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:1 +msgid "Clipboard" +msgstr "àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàł" + +#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:2 +msgid "Clipboard plugin" +msgstr "àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàł àČȘàłàČČàČ—àłàȇàČšàł" + +#: ../plugins/color/color.gnome-settings-plugin.in.h:1 +#: ../plugins/color/gsd-color-manager.c:1757 +msgid "Color" +msgstr "àČŹàČŁàłàČŁ" + +#: ../plugins/color/color.gnome-settings-plugin.in.h:2 +#| msgid "Clipboard plugin" +msgid "Color plugin" +msgstr "àČŹàČŁàłàČŁàČŠ àČȘàłàČČàČ—àłàȇàČšàł" + +#: ../plugins/color/gsd-color-manager.c:1762 +msgid "Recalibrate now" +msgstr "" + +#. TRANSLATORS: this is when the device has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1804 +msgid "Recalibration required" +msgstr "" + +#. TRANSLATORS: this is when the display has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1816 +#, c-format +msgid "The display '%s' should be recalibrated soon." +msgstr "" + +#. TRANSLATORS: this is when the printer has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1825 +#, c-format +msgid "The printer '%s' should be recalibrated soon." +msgstr "" + +#. TRANSLATORS: this is the application name +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 +#| msgid "GNOME Settings Daemon" +msgid "GNOME Settings Daemon Color Plugin" +msgstr "GNOME àČžàČżàČŠàłàȧàČ€àł†àȗàČł àČĄàł€àČźàČšàł àČŹàČŁàłàČŁàČŠ àČȘàłàČČàČ—àłâ€ŒàȇàČšàł" + +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2151 +msgid "Color calibration device added" +msgstr "" + +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2167 +msgid "Color calibration device removed" +msgstr "" + +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 +msgid "Dummy" +msgstr "àČĄàČźàłàČźàČż" + +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 +msgid "Dummy plugin" +msgstr "àČĄàČźàłàČźàČż àČȘàłàČČàČ—àłàȇàČšàł" + +#: ../plugins/housekeeping/gsd-disk-space.c:332 +#, c-format +#| msgid "Low Disk Space" +msgid "Low Disk Space on \"%s\"" +msgstr "\"%s\" àČĄàČżàČžàłàČ•àłâ€Œ àȜàČŸàȗ àȕàČĄàČżàČźàł† àȇàČŠàł†" + +#: ../plugins/housekeeping/gsd-disk-space.c:334 +#, fuzzy, c-format +#| msgid "The volume \"%s\" has only %s disk space remaining." +msgid "" +"The volume \"%s\" has only %s disk space remaining. You may free up some " +"space by emptying the trash." +msgstr "àČȘàČ°àČżàČźàČŸàČŁ \"%s\" àČŠàČČàłàČČàČż àČ•àł‡àČ”àČČ %s àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àł àČźàČŸàČ€àłàČ° àČŹàČŸàȕàČż àȇàČŠàł†." + +#: ../plugins/housekeeping/gsd-disk-space.c:338 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 +#, c-format +msgid "The volume \"%s\" has only %s disk space remaining." +msgstr "àČȘàČ°àČżàČźàČŸàČŁ \"%s\" àČŠàČČàłàČČàČż àČ•àł‡àČ”àČČ %s àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àł àČźàČŸàČ€àłàČ° àČŹàČŸàȕàČż àȇàČŠàł†." + +#. Set up all the window stuff here +#: ../plugins/housekeeping/gsd-disk-space.c:343 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:205 +msgid "Low Disk Space" +msgstr "àČĄàČżàČžàłàČ•àłâ€Œ àȜàČŸàȗ àȕàČĄàČżàČźàł† àȇàČŠàł†" + +#: ../plugins/housekeeping/gsd-disk-space.c:345 +#, fuzzy, c-format +#| msgid "This computer has only %s disk space remaining." +msgid "" +"This computer has only %s disk space remaining. You may free up some space " +"by emptying the trash." +msgstr "àȈ àȗàČŁàȕàČŠàČČàłàČČàČż àČ•àł‡àČ”àČČ %s àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àł àČźàČŸàČ€àłàČ° àČŹàČŸàȕàČż àȇàČŠàł†." + +#: ../plugins/housekeeping/gsd-disk-space.c:348 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 +#, c-format +msgid "This computer has only %s disk space remaining." +msgstr "àȈ àȗàČŁàȕàČŠàČČàłàČČàČż àČ•àł‡àČ”àČČ %s àČĄàČżàČžàłàČ•àł àČžàłàČ„àČłàČ”àł àČźàČŸàČ€àłàČ° àČŹàČŸàȕàČż àȇàČŠàł†." + +#: ../plugins/housekeeping/gsd-disk-space.c:363 +#| msgid "Low Disk Space" +msgid "Disk space" +msgstr "àČĄàČżàČžàłàČ•àłâ€Œ àȜàČŸàȗ" + +#: ../plugins/housekeeping/gsd-disk-space.c:370 +#| msgid "Examine..." +msgid "Examine" +msgstr "àČȘàČ°àČżàČ¶àł€àČČàČżàČžàł" + +#: ../plugins/housekeeping/gsd-disk-space.c:378 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:437 +msgid "Empty Trash" +msgstr "àȕàČžàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČżàČźàČŸàČĄàł" + +#: ../plugins/housekeeping/gsd-disk-space.c:385 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:452 +msgid "Ignore" +msgstr "àȅàČČàČ•àłàČ·àČżàČžàł" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 +#| msgid "Don't show any warnings again for this filesystem" +msgid "Don't show any warnings again for this file system" +msgstr "àȈ àȕàČĄàČ€ àČ”àłàČŻàČ”àČžàłàČ„àł†àȗàČŸàȗàČż àČȘàłàČšàȃ àČŻàČŸàČ”àłàČŠàł† àȎàČšàłàȚàČ°àČżàČ•àł†àȗàČłàČšàłàČšàł àČ€àł‹àČ°àČżàČžàČŹàł‡àČĄ" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:68 +msgid "Don't show any warnings again" +msgstr "àȈ àČžàȂàČŠàł‡àȶàČ”àČšàłàČšàł àČȘàłàČšàȃ àČ€àł‹àČ°àČżàČžàČŹàł‡àČĄ" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to another disk or partition." +msgstr "" +"àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàłàČ” àČźàł‚àČČàȕ, àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł " +"àČ€àł†àČ—àł†àČŻàłàČ” " +"àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àȇàČšàłàČšàłŠàȂàČŠàł àČĄàČżàČžàłàȕàČżàČ—àł† àȅàČ„àČ” àČ”àČżàČ­àČŸàȗàČ•àłàČ•àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ " +"àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż " +"àČžàłàČ„àČłàČ”àČšàłàČšàł àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to another disk or partition." +msgstr "" +"àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àČ€àł†àČ—àł†àČŻàłàČ” àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł " +"àČŹàł‡àČ°àłŠàȂàČŠàł " +"àČĄàČżàČžàłàȕàČżàČ—àł† àȅàČ„àČ” àČ”àČżàČ­àČŸàȗàČ•àłàČ•àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż àČžàłàČ„àČłàČ”àČšàłàČšàł " +"àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to an external disk." +msgstr "" +"àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàłàČ” àČźàł‚àČČàȕ, àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł " +"àČ€àł†àČ—àł†àČŻàłàČ” " +"àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àȒàȂàČŠàł àČčàłŠàČ°àȗàČżàČš àČĄàČżàČžàłàȕàČżàČ—àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż " +"àČžàłàČ„àČłàČ”àČšàłàČšàł " +"àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to an external disk." +msgstr "" +"àČŹàČłàČ•àł†àČ—àł† àČŹàČŸàČ°àČŠ àČȘàłàČ°àłŠàČ—àłàČ°àČŸàČźàłâ€ŒàȗàČłàČšàłàČšàł àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àČ€àł†àČ—àł†àČŻàłàČ” àČźàł‚àČČàȕ, àȅàČ„àČ” àȕàČĄàČ€àȗàČłàČšàłàČšàł àȒàȂàČŠàł " +"àČčàłŠàČ°àȗàČżàČš " +"àČĄàČżàČžàłàȕàČżàČ—àł† àČžàłàČ„àČłàČŸàȂàČ€àČ°àČżàČžàłàČ” àČźàł‚àČČàȕ àČĄàČżàČžàłàȕàČżàČšàČČàłàČČàČż àČžàłàČ„àČłàČ”àČšàłàČšàł àČźàłàČ•àłàČ€àČ—àłŠàČłàČżàČžàČŹàČčàłàČŠàł." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:445 +#| msgid "Examine..." +msgid "Examine
" +msgstr "àČȘàČ°àČżàČ¶àł€àČČàČżàČžàłâ€Š" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:87 +#, c-format +msgid "" +"Error activating XKB configuration.\n" +"There can be various reasons for that.\n" +"\n" +"If you report this situation as a bug, include the results of\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" +msgstr "" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:242 +msgid "_Layouts" +msgstr "àČ”àČżàČšàłàČŻàČŸàČžàȗàČłàł (_L)" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:248 +#| msgid "Keyboard Layout" +msgid "Show _Keyboard Layout..." +msgstr "àČ•àł€àČČàČżàČźàČŁàł† àČ”àČżàČšàłàČŻàČŸàČžàČ”àČšàłàČšàł àČ€àł‹àČ°àČżàČžàł (_K)..." + +#. translators note: +#. * This is the name of the gnome-control-center "region" panel +#: ../plugins/keyboard/gsd-keyboard-xkb.c:255 +#| msgid "Manage X Settings" +msgid "Region and Language Settings" +msgstr "àČȘàłàČ°àČŠàł‡àȶ àČźàČ€àłàČ€àł àČ­àČŸàČ·àł† àČžàČżàČŠàłàȧàČ€àł†àȗàČłàł" + +#. TRANSLATORS: wireless keyboard with internal battery +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:585 ../plugins/power/gpm-common.c:872 +#| msgid "Keyboard" +msgid "Keyboard" +msgid_plural "Keyboards" +msgstr[0] "àČ•àł€àČČàČżàČźàČŁàł†" +msgstr[1] "àČ•àł€àČČàČżàČźàČŁàł†àȗàČłàł" + +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 +msgid "Keyboard plugin" +msgstr "àČ•àł€àČČàČż àČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł" + +#. translators: +#. * The device has been disabled +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1087 +msgid "Disabled" +msgstr "àȅàȶàČ•àłàČ€àČ—àłŠàȂàČĄ" + +#. translators: +#. * The number of sound outputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1094 +#, c-format msgid "%u Output" msgid_plural "%u Outputs" msgstr[0] "%u àȔàČŸàłâ€ŒàČȘàłàČŸàłâ€Œ" msgstr[1] "%u àȔàČŸàłâ€ŒàČȘàłàČŸàłâ€ŒàȗàČłàł" -#. translators: -#. * The number of sound inputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1008 +#. translators: +#. * The number of sound inputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1104 +#, c-format +msgid "%u Input" +msgid_plural "%u Inputs" +msgstr[0] "%u àȇàČšàłâ€ŒàČȘàłàČŸàłâ€Œ" +msgstr[1] "%u àȇàČšàłâ€ŒàČȘàłàČŸàłâ€ŒàȗàČłàł" + +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1402 +msgid "System Sounds" +msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČżàȗàČłàł" + +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 +msgid "Media keys" +msgstr "àČźàł€àČĄàČżàČŻàČŸ àČ•àł€àČČàČżàȗàČłàł" + +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 +msgid "Media keys plugin" +msgstr "àČźàł€àČĄàČżàČŻàČŸ àČ•àł€àČČàČżàȗàČłàł àČȘàłàČČàČ—àłàȇàČšàł" + +#: ../plugins/mouse/gsd-mouse-manager.c:863 +msgid "Could not enable mouse accessibility features" +msgstr "àČźàłŒàČžàłâ€Œ àČšàČżàČČàłàȕàČŁàČŸ àČžàłŒàȕàČ°àłàČŻàȗàČłàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČČàłàČČ" + +#: ../plugins/mouse/gsd-mouse-manager.c:865 +#, fuzzy +#| msgid "" +#| "Mouse accessibility requires mousetweaks to be installed on your system." +msgid "" +"Mouse accessibility requires Mousetweaks to be installed on your system." +msgstr "" +"àČźàłŒàČžàłâ€Œ àČšàČżàČČàłàȕàČŁàł†àȗàČŸàȗàČż àČšàČżàČźàłàČź àȗàČŁàȕàČŠàČČàłàČČàČż àČźàłŒàČžàłâ€ŒàČŸàłàČ”àł€àČ•àłâ€ŒàȗàČłàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàČŹàł‡àȕàČŸàČ—àłàČ€àłàČ€àČŠàł†." + +#. TRANSLATORS: wireless mice with internal batteries +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:581 ../plugins/power/gpm-common.c:848 +#| msgid "Mouse" +msgid "Mouse" +msgid_plural "Mice" +msgstr[0] "àČźàłŒàČžàł" +msgstr[1] "àČźàłŒàČžàłâ€ŒàȗàČłàł" + +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 +msgid "Mouse plugin" +msgstr "àČźàłŒàČžàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł" + +#: ../plugins/power/gpm-common.c:47 +#| msgid "Unknown" +msgid "Unknown time" +msgstr "àČ—àłŠàČ€àłàČ€àČżàČ°àČŠ àČžàČźàČŻ" + +#: ../plugins/power/gpm-common.c:52 +#, c-format +msgid "%i minute" +msgid_plural "%i minutes" +msgstr[0] "%i àČšàČżàČźàČżàČ·" +msgstr[1] "%i àČšàČżàČźàČżàČ·àȗàČłàł" + +#: ../plugins/power/gpm-common.c:62 +#, c-format +msgid "%i hour" +msgid_plural "%i hours" +msgstr[0] "%i àȗàȂàČŸàł†" +msgstr[1] "%i àȗàȂàČŸàł†àȗàČłàł" + +#. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" +#. * Swap order with "%2$s %2$i %1$s %1$i if needed +#: ../plugins/power/gpm-common.c:68 +#, c-format +msgid "%i %s %i %s" +msgstr "%i %s %i %s" + +#: ../plugins/power/gpm-common.c:69 +msgid "hour" +msgid_plural "hours" +msgstr[0] "àȗàȂàČŸàł†" +msgstr[1] "àȗàȂàČŸàł†àȗàČłàł" + +#: ../plugins/power/gpm-common.c:70 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "àČšàČżàČźàČżàČ·" +msgstr[1] "àČšàČżàČźàČżàČ·àȗàČłàł" + +#. TRANSLATORS: The laptop battery is charged, and we know a time. +#. * The parameter is the time, e.g. 7 hours 6 minutes +#: ../plugins/power/gpm-common.c:317 +#, c-format +msgid "provides %s laptop runtime" +msgstr "" + +#. TRANSLATORS: the device is discharging, and we have a time remaining +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. 7 hours 6 minutes +#: ../plugins/power/gpm-common.c:328 +#, c-format +msgid "%s %s remaining" +msgstr "%s %s àČŹàČŸàȕàČż àȇàČŠàł†" + +#. TRANSLATORS: device is charging, and we have a time to full and a percentage +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. "7 hours 6 minutes" +#. TRANSLATORS: device is charging, and we have a time to full and a percentage. +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. "7 hours 6 minutes" +#: ../plugins/power/gpm-common.c:349 ../plugins/power/gpm-common.c:366 +#, c-format +msgid "%s %s until charged" +msgstr "" + +#. TRANSLATORS: the device is charging, and we have a time to full and empty. +#. * The parameter is a time string, e.g. "7 hours 6 minutes" +#: ../plugins/power/gpm-common.c:356 +#, c-format +msgid "provides %s battery runtime" +msgstr "" + +#. TRANSLATORS: the type of data, e.g. Laptop battery +#: ../plugins/power/gpm-common.c:447 +msgid "Product:" +msgstr "àȉàČ€àłàČȘàČšàłàČš:" + +#. TRANSLATORS: device is missing +#. TRANSLATORS: device is charged +#. TRANSLATORS: device is charging +#. TRANSLATORS: device is discharging +#: ../plugins/power/gpm-common.c:451 ../plugins/power/gpm-common.c:454 +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:460 +msgid "Status:" +msgstr "àČžàłàČ„àČżàČ€àČż:" + +#: ../plugins/power/gpm-common.c:451 +msgid "Missing" +msgstr "àȕàČŸàČŁàČżàČžàłàČ€àłàČ€àČżàČČàłàČČ" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:454 ../plugins/power/gpm-common.c:723 +msgid "Charged" +msgstr "àȚàČŸàČ°àłàČœàł àȆàȗàČżàČŠàł†" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:711 +msgid "Charging" +msgstr "àȚàČŸàČ°àłàČœàł àȆàČ—àłàČ€àłàČ€àČżàČŠàł†" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:460 ../plugins/power/gpm-common.c:715 +msgid "Discharging" +msgstr "" + +#. TRANSLATORS: percentage +#: ../plugins/power/gpm-common.c:465 +msgid "Percentage charge:" +msgstr "àȚàČŸàČ°àłàȜàČżàČš àČȘàłàČ°àČ€àČżàȶàČ€:" + +#. TRANSLATORS: manufacturer +#: ../plugins/power/gpm-common.c:469 +msgid "Vendor:" +msgstr "àČźàČŸàČ°àČŸàȟàȗàČŸàČ°:" + +#. TRANSLATORS: how the battery is made, e.g. Lithium Ion +#: ../plugins/power/gpm-common.c:474 +msgid "Technology:" +msgstr "àČ€àȂàČ€àłàČ°àČœàłàȞàČŸàČš:" + +#. TRANSLATORS: serial number of the battery +#: ../plugins/power/gpm-common.c:478 +msgid "Serial number:" +msgstr "àȅàČšàłàČ•àłàČ°àČź àČžàȂàČ–àłàČŻàł†:" + +#. TRANSLATORS: model number of the battery +#: ../plugins/power/gpm-common.c:482 +msgid "Model:" +msgstr "àČźàČŸàČŠàČ°àČż:" + +#. TRANSLATORS: time to fully charged +#: ../plugins/power/gpm-common.c:487 +msgid "Charge time:" +msgstr "àȚàČŸàČ°àłàȜàČżàČš àČžàČźàČŻ:" + +#. TRANSLATORS: time to empty +#: ../plugins/power/gpm-common.c:493 +msgid "Discharge time:" +msgstr "" + +#. TRANSLATORS: Excellent, Good, Fair and Poor are all related to battery Capacity +#: ../plugins/power/gpm-common.c:500 +msgid "Excellent" +msgstr "àȅàČ€àłàČŻàłàČ€àłàČ€àČź" + +#: ../plugins/power/gpm-common.c:502 +msgid "Good" +msgstr "àȉàČ€àłàČ€àČź" + +#: ../plugins/power/gpm-common.c:504 +msgid "Fair" +msgstr "àČ€àłƒàČȘàłàČ€àČżàȕàČ°" + +#: ../plugins/power/gpm-common.c:506 +msgid "Poor" +msgstr "" + +#: ../plugins/power/gpm-common.c:510 +msgid "Capacity:" +msgstr "àČžàČŸàČźàČ°àłàČ„àłàČŻ:" + +#: ../plugins/power/gpm-common.c:516 ../plugins/power/gpm-common.c:541 +msgid "Current charge:" +msgstr "" + +#: ../plugins/power/gpm-common.c:522 +msgid "Last full charge:" +msgstr "" + +#: ../plugins/power/gpm-common.c:528 ../plugins/power/gpm-common.c:546 +msgid "Design charge:" +msgstr "" + +#: ../plugins/power/gpm-common.c:533 +msgid "Charge rate:" +msgstr "" + +#. TRANSLATORS: system power cord +#: ../plugins/power/gpm-common.c:565 ../plugins/power/gpm-common.c:757 +msgid "AC adapter" +msgid_plural "AC adapters" +msgstr[0] "" +msgstr[1] "" + +#. TRANSLATORS: laptop primary battery +#: ../plugins/power/gpm-common.c:569 ../plugins/power/gpm-common.c:793 +msgid "Laptop battery" +msgid_plural "Laptop batteries" +msgstr[0] "" +msgstr[1] "" + +#. TRANSLATORS: battery-backed AC power source +#: ../plugins/power/gpm-common.c:573 ../plugins/power/gpm-common.c:817 +msgid "UPS" +msgid_plural "UPSs" +msgstr[0] "UPS" +msgstr[1] "UPSàȗàČłàł" + +#. TRANSLATORS: a monitor is a device to measure voltage and current +#: ../plugins/power/gpm-common.c:577 ../plugins/power/gpm-common.c:824 +msgid "Monitor" +msgid_plural "Monitors" +msgstr[0] "àČźàČŸàČšàČżàȟàČ°àł" +msgstr[1] "àČźàČŸàČšàČżàȟàČ°àłàȗàČłàł" + +#. TRANSLATORS: portable device +#: ../plugins/power/gpm-common.c:589 ../plugins/power/gpm-common.c:896 +msgid "PDA" +msgid_plural "PDAs" +msgstr[0] "PDA" +msgstr[1] "" + +#. TRANSLATORS: cell phone (mobile...) +#: ../plugins/power/gpm-common.c:593 ../plugins/power/gpm-common.c:920 +msgid "Cell phone" +msgid_plural "Cell phones" +msgstr[0] "àČžàł†àČČàł àČ«àł‹àČšàł" +msgstr[1] "àČžàł†àČČàłâ€Œ àČ«àł‹àČšàłâ€ŒàȗàČłàł" + +#. TRANSLATORS: media player, mp3 etc +#: ../plugins/power/gpm-common.c:598 ../plugins/power/gpm-common.c:945 +#| msgid "Launch media player" +msgid "Media player" +msgid_plural "Media players" +msgstr[0] "àČźàČŸàČ§àłàČŻàČź àȚàČŸàČČàȕ" +msgstr[1] "àČźàČŸàČ§àłàČŻàČź àȚàČŸàČČàȕàȗàČłàł" + +#. TRANSLATORS: tablet device +#: ../plugins/power/gpm-common.c:602 ../plugins/power/gpm-common.c:969 +msgid "Tablet" +msgid_plural "Tablets" +msgstr[0] "àȕàČżàČžàł†àȗàČŁàȕ (àČŸàłàČŻàČŸàČŹàłàČČàł†àČŸàł)" +msgstr[1] "àȕàČżàČžàł†àȗàČŁàȕàȗàČłàł (àČŸàłàČŻàČŸàČŹàłàČČàł†àČŸàłàČžàłâ€)" + +#. TRANSLATORS: tablet device +#: ../plugins/power/gpm-common.c:606 ../plugins/power/gpm-common.c:993 +msgid "Computer" +msgid_plural "Computers" +msgstr[0] "àȗàČŁàȕ" +msgstr[1] "àȗàČŁàȕàȗàČłàł" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:670 +msgid "Lithium Ion" +msgstr "" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:674 +msgid "Lithium Polymer" +msgstr "" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:678 +msgid "Lithium Iron Phosphate" +msgstr "" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:682 +msgid "Lead acid" +msgstr "" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:686 +msgid "Nickel Cadmium" +msgstr "" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:690 +msgid "Nickel metal hydride" +msgstr "" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:694 +msgid "Unknown technology" +msgstr "àČ—àłŠàČ€àłàČ€àČżàČ°àČŠ àČ€àȂàČ€àłàČ°àČœàłàȞàČŸàČš" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:719 +#| msgid "Empty Trash" +msgid "Empty" +msgstr "àȖàČŸàČČàČż" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:727 +msgid "Waiting to charge" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:731 +msgid "Waiting to discharge" +msgstr "" + +#. TRANSLATORS: device not present +#: ../plugins/power/gpm-common.c:765 +msgid "Laptop battery not present" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:769 +msgid "Laptop battery is charging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:773 +msgid "Laptop battery is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:777 +msgid "Laptop battery is empty" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:781 +msgid "Laptop battery is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:785 +msgid "Laptop battery is waiting to charge" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:789 +msgid "Laptop battery is waiting to discharge" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:801 +msgid "UPS is charging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:805 +msgid "UPS is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:809 +msgid "UPS is empty" +msgstr "UPS àȖàČŸàČČàČż àȇàČŠàł†" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:813 +msgid "UPS is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:832 +#, fuzzy +#| msgid "Mouse plugin" +msgid "Mouse is charging" +msgstr "àČźàłŒàČžàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:836 +msgid "Mouse is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:840 +#, fuzzy +#| msgid "Mouse keys" +msgid "Mouse is empty" +msgstr "àČźàłŒàČžàłâ€Œ àČ•àł€àČČàČżàȗàČłàł" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:844 +msgid "Mouse is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:856 +#, fuzzy +#| msgid "Keyboard plugin" +msgid "Keyboard is charging" +msgstr "àČ•àł€àČČàČż àČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:860 +#, fuzzy +#| msgid "Keyboard plugin" +msgid "Keyboard is discharging" +msgstr "àČ•àł€àČČàČż àČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:864 +#, fuzzy +#| msgid "Keyboard" +msgid "Keyboard is empty" +msgstr "àČ•àł€àČČàČż àČźàČŁàł†" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:868 +msgid "Keyboard is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:880 +msgid "PDA is charging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:884 +msgid "PDA is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:888 +msgid "PDA is empty" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:892 +msgid "PDA is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:904 +msgid "Cell phone is charging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:908 +msgid "Cell phone is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:912 +msgid "Cell phone is empty" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:916 +msgid "Cell phone is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:929 +msgid "Media player is charging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:933 +msgid "Media player is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:937 +msgid "Media player is empty" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:941 +msgid "Media player is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:953 +msgid "Tablet is charging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:957 +msgid "Tablet is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:961 +msgid "Tablet is empty" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:965 +msgid "Tablet is charged" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:977 +msgid "Computer is charging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:981 +msgid "Computer is discharging" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:985 +msgid "Computer is empty" +msgstr "" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:989 +msgid "Computer is charged" +msgstr "" + +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 +msgid "Battery may be recalled" +msgstr "" + +#: ../plugins/power/gsd-power-manager.c:994 +#, c-format +msgid "" +"A battery in your computer may have been recalled by %s and you may be at " +"risk." +msgstr "" + +#: ../plugins/power/gsd-power-manager.c:997 +msgid "For more information visit the battery recall website." +msgstr "" + +#. TRANSLATORS: button text, visit the manufacturers recall website +#: ../plugins/power/gsd-power-manager.c:1008 +msgid "Visit recall website" +msgstr "" + +#. TRANSLATORS: button text, do not show this bubble again +#: ../plugins/power/gsd-power-manager.c:1012 +#, fuzzy +#| msgid "_Do not show this message again" +msgid "Do not show me this again" +msgstr "àȈ àČžàȂàČŠàł‡àȶàČ”àČšàłàČšàł àČȘàłàČšàȃ àČ€àł‹àČ°àČżàČžàČŹàł‡àČĄ(_D)" + +#. TRANSLATORS: UPS is now discharging +#: ../plugins/power/gsd-power-manager.c:1223 +msgid "UPS Discharging" +msgstr "" + +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1228 +#, c-format +msgid "%s of UPS backup power remaining" +msgstr "" + +#. TRANSLATORS: this is the notification application name +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 +#: ../plugins/power/power.gnome-settings-plugin.in.h:1 +msgid "Power" +msgstr "àČ”àČżàČŠàłàČŻàłàČšàłàțàČ•àłàČ€àČż" + +#. TRANSLATORS: laptop battery low, and we only have one battery +#: ../plugins/power/gsd-power-manager.c:1342 +msgid "Battery low" +msgstr "" + +#. TRANSLATORS: laptop battery low, and we have more than one kind of battery +#: ../plugins/power/gsd-power-manager.c:1345 +msgid "Laptop battery low" +msgstr "" + +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1351 +#, c-format +msgid "Approximately %s remaining (%.0f%%)" +msgstr "" + +#. TRANSLATORS: UPS is starting to get a little low +#: ../plugins/power/gsd-power-manager.c:1355 +msgid "UPS low" +msgstr "" + +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1359 +#, c-format +msgid "Approximately %s of remaining UPS backup power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: mouse is getting a little low +#. TRANSLATORS: the mouse battery is very low +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 +msgid "Mouse battery low" +msgstr "" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1366 +#, c-format +msgid "Wireless mouse is low in power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: keyboard is getting a little low +#. TRANSLATORS: the keyboard battery is very low +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 +#, fuzzy +#| msgid "Keyboard Layout" +msgid "Keyboard battery low" +msgstr "àČ•àł€àČČàČżàČźàČŁàł† àČČàł‡àȔàČŸàł" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1373 +#, c-format +msgid "Wireless keyboard is low in power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: PDA is getting a little low +#. TRANSLATORS: the PDA battery is very low +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 +msgid "PDA battery low" +msgstr "" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1380 +#, c-format +msgid "PDA is low in power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: cell phone (mobile) is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 +msgid "Cell phone battery low" +msgstr "" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1387 +#, c-format +msgid "Cell phone is low in power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: media player, e.g. mp3 is getting a little low +#: ../plugins/power/gsd-power-manager.c:1392 +msgid "Media player battery low" +msgstr "" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1395 +#, c-format +msgid "Media player is low in power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 +msgid "Tablet battery low" +msgstr "" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1402 +#, c-format +msgid "Tablet is low in power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: computer, e.g. ipad is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 +msgid "Attached computer battery low" +msgstr "" + +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1409 +#, c-format +msgid "Attached computer is low in power (%.0f%%)" +msgstr "" + +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:1446 +msgid "Battery is low" +msgstr "" + +#. TRANSLATORS: laptop battery critically low, and only have one kind of battery +#: ../plugins/power/gsd-power-manager.c:1488 +msgid "Battery critically low" +msgstr "" + +#. TRANSLATORS: laptop battery critically low, and we have more than one type of battery +#. TRANSLATORS: laptop battery is really, really, low +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 +msgid "Laptop battery critically low" +msgstr "" + +#. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything +#: ../plugins/power/gsd-power-manager.c:1500 +msgid "Plug in your AC adapter to avoid losing data." +msgstr "" + +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1504 +#, c-format +msgid "Computer will suspend very soon unless it is plugged in." +msgstr "" + +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1508 +#, c-format +msgid "Computer will hibernate very soon unless it is plugged in." +msgstr "" + +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1512 +#, c-format +msgid "Computer will shutdown very soon unless it is plugged in." +msgstr "" + +#. TRANSLATORS: the UPS is very low +#. TRANSLATORS: UPS is really, really, low +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 +msgid "UPS critically low" +msgstr "" + +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1523 +#, c-format +msgid "" +"Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " +"your computer to avoid losing data." +msgstr "" + +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1532 +#, c-format +msgid "" +"Wireless mouse is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" + +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1540 +#, c-format +msgid "" +"Wireless keyboard is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" + +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1549 +#, c-format +msgid "" +"PDA is very low in power (%.0f%%). This device will soon stop functioning if " +"not charged." +msgstr "" + +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1559 +#, c-format +msgid "" +"Cell phone is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" + +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1570 +#, c-format +msgid "" +"Media player is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" + +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1579 +#, c-format +msgid "" +"Tablet is very low in power (%.0f%%). This device will soon stop functioning " +"if not charged." +msgstr "" + +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1588 +#, c-format +msgid "" +"Attached computer is very low in power (%.0f%%). The device will soon " +"shutdown if not charged." +msgstr "" + +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 +msgid "Battery is critically low" +msgstr "" + +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1683 +msgid "" +"The battery is below the critical level and this computer will power-off when the battery becomes completely empty." +msgstr "" + +#. TRANSLATORS: computer will suspend +#: ../plugins/power/gsd-power-manager.c:1689 +msgid "" +"The battery is below the critical level and this computer is about to " +"suspend.\n" +"NOTE: A small amount of power is required to keep your computer in a " +"suspended state." +msgstr "" + +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1696 +msgid "" +"The battery is below the critical level and this computer is about to " +"hibernate." +msgstr "" + +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1701 +msgid "" +"The battery is below the critical level and this computer is about to " +"shutdown." +msgstr "" + +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1719 +msgid "" +"UPS is below the critical level and this computer will power-off when " +"the UPS becomes completely empty." +msgstr "" + +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1725 +msgid "" +"UPS is below the critical level and this computer is about to hibernate." +msgstr "" + +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1730 +msgid "UPS is below the critical level and this computer is about to shutdown." +msgstr "" + +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2224 +msgid "Lid has been opened" +msgstr "àČźàłàČšàłàȚàČłàČ”àČšàłàČšàł àČ€àł†àČ°àł†àČŻàČČàČŸàȗàČżàČŠàł†" + +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2301 +msgid "Lid has been closed" +msgstr "àČźàłàČšàłàȚàČłàČ”àČšàłàČšàł àČźàłàČšàłàȚàČČàČŸàȗàČżàČŠàł†" + +#. TRANSLATORS: this is the title of the power manager status icon +#. * that is only shown in fallback mode +#: ../plugins/power/gsd-power-manager.c:3692 +msgid "Power Manager" +msgstr "àČ”àČżàČŠàłàČŻàłàČšàłàțàČ•àłàČ€àČż àČ”àłàČŻàČ”àČžàłàČ„àČŸàČȘàȕ" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the backlight brightness. +#. +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:5 +msgid "Modify the laptop brightness" +msgstr "àČČàłàČŻàČŸàČȘàłâ€ŒàȟàČŸàČȘàłâ€ŒàČš àČȘàłàČ°àȕàČŸàȶàČ€àł†àČŻàČšàłàČšàł àČźàČŸàČ°àłàČȘàČĄàČżàČžàł" + +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +msgid "Authentication is required to modify the laptop brightness" +msgstr "àČČàłàČŻàČŸàČȘàłâ€ŒàȟàČŸàČȘàłâ€ŒàČš àČȘàłàČ°àȕàČŸàȶàČ€àł†àČŻàČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàČČàł àČŠàłƒàČąàł€àȕàČ°àČŁàČŠ àȅàȗàČ€àłàČŻàČ”àČżàČŠàł†" + +#: ../plugins/power/power.gnome-settings-plugin.in.h:2 +#| msgid "Mouse plugin" +msgid "Power plugin" +msgstr "àČȘàČ”àČ°àł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł" + +#. Translators: We are configuring new printer +#: ../plugins/print-notifications/gsd-printer.c:908 +msgid "Configuring new printer" +msgstr "" + +#. Translators: Just wait +#: ../plugins/print-notifications/gsd-printer.c:910 +msgid "Please wait..." +msgstr "" + +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:937 +msgid "Missing printer driver" +msgstr "" + +#. Translators: We have no driver installed for the device +#: ../plugins/print-notifications/gsd-printer.c:946 +#, c-format +msgid "No printer driver for %s." +msgstr "" + +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:951 +msgid "No driver for this printer." +msgstr "" + +#: ../plugins/print-notifications/gsd-printer.c:1049 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:778 +msgid "Printers" +msgstr "" + +#. Translators: The printer is low on toner (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 +msgid "Toner low" +msgstr "" + +#. Translators: The printer has no toner left (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:299 +msgid "Toner empty" +msgstr "" + +#. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:301 +msgid "Not connected?" +msgstr "" + +#. Translators: One or more covers on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:303 +msgid "Cover open" +msgstr "" + +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 +msgid "Printer configuration error" +msgstr "" + +#. Translators: One or more doors on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:307 +msgid "Door open" +msgstr "" + +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 +msgid "Marker supply low" +msgstr "" + +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 +msgid "Out of a marker supply" +msgstr "" + +#. Translators: At least one input tray is low on media (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 +msgid "Paper low" +msgstr "" + +#. Translators: At least one input tray is empty (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:315 +msgid "Out of paper" +msgstr "" + +#. Translators: The printer is offline (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:317 +msgid "Printer off-line" +msgstr "" + +#. Translators: The printer has detected an error (same as in system-config-printer) +#. Translators: This is a title of an error notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:319 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:721 +msgid "Printer error" +msgstr "" + +#. Translators: The printer is low on toner (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:323 +#, c-format +msgid "Printer '%s' is low on toner." +msgstr "" + +#. Translators: The printer has no toner left (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:325 +#, c-format +msgid "Printer '%s' has no toner left." +msgstr "'%s' àČźàłàČŠàłàČ°àȕàČŠàČČàłàČČàČż àČŸàł‹àČšàČ°àł àȖàČŸàČČàČżàČŻàČŸàȗàČżàČŠàł†." + +#. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:327 +#, c-format +msgid "Printer '%s' may not be connected." +msgstr "'%s' àČźàłàČŠàłàČ°àČŁàČ”àł àČžàȂàČȘàČ°àłàȕàČżàČ€àČ—àłŠàȂàČĄàČżàČČàłàČČàČŠàČżàČ°àČŹàČčàłàČŠàł." + +#. Translators: One or more covers on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:329 #, c-format -msgid "%u Input" -msgid_plural "%u Inputs" -msgstr[0] "%u àȇàČšàłâ€ŒàČȘàłàČŸàłâ€Œ" -msgstr[1] "%u àȇàČšàłâ€ŒàČȘàłàČŸàłâ€ŒàȗàČłàł" +msgid "The cover is open on printer '%s'." +msgstr "'%s' àČźàłàČŠàłàČ°àȕàČŠ àČźàłàČšàłàȚàČłàČ”àł àČ€àł†àČ°àł†àČŠàČżàČŠàł†." -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1304 -msgid "System Sounds" -msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČżàȗàČłàł" +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:331 +#, c-format +msgid "There is a missing print filter for printer '%s'." +msgstr "'%s' àČźàłàČŠàłàČ°àȕàČŠàČČàłàČČàČż àČźàłàČŠàłàČ°àČŁ àČ¶àł‹àȧàȕàČŠ àČ•àłŠàČ°àČ€àł† àȇàČŠàł†." -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 -msgid "Media keys" -msgstr "àČźàł€àČĄàČżàČŻàČŸ àČ•àł€àČČàČżàȗàČłàł" +#. Translators: One or more doors on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 +#, c-format +msgid "The door is open on printer '%s'." +msgstr "'%s' àČźàłàČŠàłàČ°àȕàČŠ àČŹàČŸàȗàČżàČČàł àČ€àł†àČ°àł†àČŠàČżàČŠàł†." -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 -msgid "Media keys plugin" -msgstr "àČźàł€àČĄàČżàČŻàČŸ àČ•àł€àČČàČżàȗàČłàł àČȘàłàČČàČ—àłàȇàČšàł" +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 +#, c-format +msgid "Printer '%s' is low on a marker supply." +msgstr "'%s' àȎàȂàČŹ àČźàłàČŠàłàČ°àȕàČŠàČČàłàČČàČż àČźàČŸàČ°àłàȕàČ°àł àȕàČĄàČżàČźàł†àČŻàČŸàȗàČżàČŠàł†." -#: ../plugins/mouse/gsd-mouse-manager.c:882 -msgid "Could not enable mouse accessibility features" -msgstr "àČźàłŒàČžàłâ€Œ àČšàČżàČČàłàȕàČŁàČŸ àČžàłŒàȕàČ°àłàČŻàȗàČłàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČČàłàČČ" +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 +#, c-format +msgid "Printer '%s' is out of a marker supply." +msgstr "'%s' àȎàȂàČŹ àČźàłàČŠàłàČ°àȕàČŠàČČàłàČČàČż àČźàČŸàČ°àłàȕàČ°àł àČȘàł‚àČ°àłˆàČ•àł† àȇàČČàłàČČàČ”àČŸàȗàČżàČŠàł†." -#: ../plugins/mouse/gsd-mouse-manager.c:884 -msgid "Mouse accessibility requires mousetweaks to be installed on your system." -msgstr "àČźàłŒàČžàłâ€Œ àČšàČżàČČàłàȕàČŁàł†àȗàČŸàȗàČż àČšàČżàČźàłàČź àȗàČŁàȕàČŠàČČàłàČČàČż àČźàłŒàČžàłâ€ŒàČŸàłàČ”àł€àČ•àłâ€ŒàȗàČłàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàČŹàł‡àȕàČŸàČ—àłàČ€àłàČ€àČŠàł†." - -#: ../plugins/mouse/gsd-mouse-manager.c:887 -msgid "Mouse Preferences" -msgstr "àČźàłŒàČžàł àȆàČŠàłàČŻàČ€àł†àȗàČłàł" +#. Translators: At least one input tray is low on media (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 +#, c-format +msgid "Printer '%s' is low on paper." +msgstr "'%s' àȎàȂàČŹ àČźàłàČŠàłàČ°àȕàČŠàČČàłàČČàČż àȕàČŸàȗàČŠàČ”àł àȕàČĄàČżàČźàł†àČŻàČŸàȗàČżàČŠàł†." -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 -msgid "Mouse" -msgstr "àČźàłŒàČžàł" +#. Translators: At least one input tray is empty (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 +#, c-format +msgid "Printer '%s' is out of paper." +msgstr "'%s' àȎàȂàČŹ àČźàłàČŠàłàČ°àȕàČŠàČČàłàČČàČż àȕàČŸàȗàČŠàČ”àł àȖàČŸàČČàČżàČŻàČŸàȗàČżàČŠàł†." -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 -msgid "Mouse plugin" -msgstr "àČźàłŒàČžàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł" +#. Translators: The printer is offline (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:344 +#, c-format +msgid "Printer '%s' is currently off-line." +msgstr "'%s' àȎàȂàČŹ àČźàłàČŠàłàČ°àȕàČ”àł àČȘàłàČ°àČžàłàČ€àłàČ€ àȆàČ«àłâ€Œ-àČČàłˆàČšàČżàČšàČČàłàČČàČżàČŠàł†." -#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:1 -msgid "Typing Break" -msgstr "àČŸàłˆàČȘàČżàȂàČ—àł àČ”àČżàČ°àČŸàČź" - -#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:2 -msgid "Typing break plugin" -msgstr "àČŸàłˆàČȘàČżàȂàČ—àł àČ”àČżàČ°àČŸàČź àČȘàłàČČàČ—àłàȇàČšàł" +#. Translators: The printer has detected an error (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:346 +#, c-format +msgid "There is a problem on printer '%s'." +msgstr "'%s' àČźàłàČŠàłàČ°àȕàČŠàČČàłàČČàČż àȒàȂàČŠàł àČ€àłŠàȂàČŠàČ°àł† àȕàȂàČĄàłàČŹàȂàČŠàČżàČŠàł†." -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 -msgid "Set up screen size and rotation settings" -msgstr "àČ€àł†àČ°àł†àČŻ àȗàČŸàČ€àłàČ° àČčàČŸàČ—àł àČžàłàČ€àłàČ€àłàČ”àČżàČ•àł†àČŻàČšàłàČšàł àČčàłŠàȂàČŠàČżàČžàł" +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:423 +msgid "Printer added" +msgstr "àČźàłàČŠàłàČ°àȕàČ”àČšàłàČšàł àČžàł‡àČ°àČżàČžàČČàČŸàȗàČżàČŠàł†" + +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:431 +msgid "Printer removed" +msgstr "àČźàłàČŠàłàČ°àȕàČ”àČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČčàČŸàȕàČČàČŸàȗàČżàČŠàł†" + +#. Translators: A print job has been stopped +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:448 +msgid "Printing stopped" +msgstr "àČźàłàČŠàłàČ°àČŁàČ”àČšàłàČšàł àČšàČżàČČàłàČČàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#. Translators: "print-job xy" on a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:450 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:456 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:462 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:468 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:480 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:500 +#, c-format +msgid "\"%s\" on %s" +msgstr "\"%s\", %s àČšàČČàłàČČàČż" -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 -msgid "XRandR" -msgstr "XRandR" +#. Translators: A print job has been canceled +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:454 +msgid "Printing canceled" +msgstr "àČźàłàČŠàłàČ°àČŁàČ”àČšàłàČšàł àČ°àČŠàłàČŠàłàČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#. Translators: A print job has been aborted +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:460 +msgid "Printing aborted" +msgstr "àČźàłàČŠàłàČ°àČŁàČ”àČšàłàČšàł àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#. Translators: A print job has been completed +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:466 +msgid "Printing completed" +msgstr "àČźàłàČŠàłàČ°àČŁ àČȘàł‚àČ°àłàČŁàČ—àłŠàȂàČĄàČżàČŠàł†" + +#. Translators: A job is printing +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:478 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:498 +#| msgid "Hinting" +msgid "Printing" +msgstr "àČźàłàČŠàłàČ°àČŁ" + +#. Translators: This is a title of a report notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:715 +msgid "Printer report" +msgstr "àČźàłàČŠàłàČ°àȕàČŠ àČ”àČ°àČŠàČż" + +#. Translators: This is a title of a warning notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:718 +msgid "Printer warning" +msgstr "àČźàłàČŠàłàČ°àČŁ àȎàČšàłàȚàČ°àČżàČ•àł†" + +#. Translators: "Printer 'MyPrinterName': 'Description of the report/warning/error from a PPD file'." +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:728 +#, c-format +msgid "Printer '%s': '%s'." +msgstr "àČźàłàČŠàłàČ°àȕ '%s': '%s'." + +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 +msgid "Print-notifications" +msgstr "àČźàłàČŠàłàČ°àČŁ-àČžàł‚àȚàČšàł†àȗàČłàł" + +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:2 +msgid "Print-notifications plugin" +msgstr "àČźàłàČŠàłàČ°àČŁ-àČžàł‚àȚàČšàł†àȗàČł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:523 +msgid "received error or hang up from event source" +msgstr "" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:657 +#, c-format +msgid "NSS security system could not be initialized" +msgstr "NSS àČžàłàČ°àČ•àłàČ·àČ€àČŸ àČ”àłàČŻàČ”àČžàłàČ„àł†àČŻàČšàłàČšàł àȆàČ°àȂàČ­àČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:785 +#, c-format +msgid "no suitable smartcard driver could be found" +msgstr "àČžàł‚àČ•àłàČ€àČ”àČŸàČŠ àČŻàČŸàČ”àłàČŠàł† àČžàłàČźàČŸàČ°àłàČŸàł àȕàČŸàČ°àłàČĄàł àȚàČŸàČČàȕàČ”àł àȕàȂàČĄàłàČŹàȂàČŠàČżàČČàłàČČ" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:799 +#, c-format +msgid "smartcard driver '%s' could not be loaded" +msgstr "àČžàłàČźàČŸàČ°àłàČŸàł àȕàČŸàČ°àłàČĄàł àȚàČŸàČČàȕ '%s' àȅàČšàłàČšàł àČČàł‹àČĄàł àČźàČŸàČĄàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:871 +#, c-format +msgid "could not watch for incoming card events - %s" +msgstr "" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:1269 +#, c-format +msgid "encountered unexpected error while waiting for smartcard events" +msgstr "" +"àČžàłàČźàČŸàČ°àłàČŸàł àȕàČŸàČ°àłàČĄàłàȗàČł àȘàȟàČšàł†àȗàČłàČżàȗàČŸàȗàČż àȎàČŠàłàČ°àł àČšàł‹àČĄàłàČ”àČŸàȗ àȅàČšàČżàČ°àł€àČ•àłàČ·àČżàČ€ àČŠàł‹àČ·àČ”àł àȕàȂàČĄàłàČŹàȂàČŠàČżàČŠàł†" + +#. TRANSLATORS: we need to restart so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:240 +msgid "" +"You will need to restart this computer before the hardware will work " +"correctly." +msgstr "àČŻàȂàČ€àłàČ°àČŸàȂàȶàČ”àł àČžàČ°àČżàČŻàČŸàȗàČż àČ•àł†àČČàČž àČźàČŸàČĄàČČàł àȗàČŁàȕàČ”àČšàłàČšàł àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàČŹàł‡àȕàČŸàČ—àłàČ€àłàČ€àČŠàł†." + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:243 +#: ../plugins/updates/gsd-updates-firmware.c:268 +#: ../plugins/updates/gsd-updates-firmware.c:293 +msgid "Additional software was installed" +msgstr "àČčàł†àČšàłàČšàłàČ”àČ°àČż àČ€àȂàČ€àłàČ°àČŸàȂàȶàČ”àČšàłàČšàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàČČàČŸàȗàČżàČŠàł†" + +#: ../plugins/updates/gsd-updates-firmware.c:244 +#: ../plugins/updates/gsd-updates-firmware.c:269 +#: ../plugins/updates/gsd-updates-firmware.c:294 +#: ../plugins/updates/gsd-updates-firmware.c:583 +#: ../plugins/updates/gsd-updates-manager.c:203 +#: ../plugins/updates/gsd-updates-manager.c:328 +#: ../plugins/updates/gsd-updates-manager.c:387 +#: ../plugins/updates/gsd-updates-manager.c:443 +#: ../plugins/updates/gsd-updates-manager.c:575 +#: ../plugins/updates/gsd-updates-manager.c:663 +msgid "Software Updates" +msgstr "àČ€àȂàČ€àłàČ°àČŸàȂàȶ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàł" + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:265 +msgid "" +"You will need to remove and then reinsert the hardware before it will work " +"correctly." +msgstr "" +"àČŻàȂàČ€àłàČ°àČŸàȂàȶàČ”àł àČžàČ°àČżàČŻàČŸàȗàČż àČ•àł†àČČàČž àČźàČŸàČĄàČČàł àȅàČŠàČšàłàČšàł àČ€àł†àČ—àł†àČŠàłàČčàČŸàȕàČż àČšàȂàČ€àČ° àČźàČ°àČłàČż àČžàł‡àČ°àČżàČžàČŹàł‡àȕàČŸàČ—àłàČ€àłàČ€àČŠàł†." + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:290 +msgid "Your hardware has been set up and is now ready to use." +msgstr "àČšàČżàČźàłàČź àČŻàȂàČ€àłàČ°àČŸàȂàȶàČ”àČšàłàČšàł àČžàČżàČŠàłàȧàČ—àłŠàČłàČżàČžàČČàČŸàȗàČżàČŠàł† àČźàČ€àłàČ€àł àȈàȗ àČŹàČłàČ•àł†àČ—àł† àČžàČżàČŠàłàȧàČ—àłŠàȂàČĄàČżàČŠàł†." + +#. TRANSLATORS: we need another package to keep udev quiet +#: ../plugins/updates/gsd-updates-firmware.c:568 +msgid "" +"Additional firmware is required to make hardware in this computer function " +"correctly." +msgstr "" +"àȈ àȗàČŁàȕàČŠàČČàłàČČàČżàČš àČŻàȂàČ€àłàČ°àČŸàȂàȶàČ”àł àČžàČ°àČżàČŻàČŸàȗàČż àČ•àł†àČČàČž àČźàČŸàČĄàČČàł àČčàł†àČšàłàČšàłàČ”àČ°àČż àČ«àČ°àłàČźàł-àČ”àł‡àČ°àČżàČš àȅàȗàČ€àłàČŻàČ”àČżàČŠàł†" + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:582 +msgid "Additional firmware required" +msgstr "àČčàł†àČšàłàČšàłàČ”àČ°àČż àČ«àČ°àłàČźàł-àČ”àł‡àČ°àČżàČš àȅàȗàČ€àłàČŻàČ”àČżàČŠàł†" + +#. TRANSLATORS: button label +#: ../plugins/updates/gsd-updates-firmware.c:588 +msgid "Install firmware" +msgstr "àČ«àČ°àłàČźàł-àČ”àł‡àČ°àł àȅàČšàłàČšàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàł" + +#. TRANSLATORS: we should ignore this device and not ask anymore +#: ../plugins/updates/gsd-updates-firmware.c:591 +#| msgid "Ignore" +msgid "Ignore devices" +msgstr "àČžàČŸàȧàČšàȗàČłàČšàłàČšàł àȕàČĄàł†àȗàČŁàČżàČžàł" + +#. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 +#: ../plugins/updates/gsd-updates-manager.c:199 +msgid "Distribution upgrades available" +msgstr "àČ”àČżàČ€àČ°àČŁàł†àČŻ àČšàČ”àł€àȕàČ°àČŁàȗàČłàł àČČàČ­àłàČŻàČ”àČżàČŠàł†" + +#. TRANSLATORS: provides more information about the upgrade +#: ../plugins/updates/gsd-updates-manager.c:208 +msgid "More information" +msgstr "àČčàł†àČšàłàȚàČżàČš àČźàČŸàČčàČżàČ€àČż" + +#. TRANSLATORS: title in the libnotify popup +#: ../plugins/updates/gsd-updates-manager.c:311 +#: ../plugins/updates/gsd-updates-manager.c:370 +msgid "Update" +msgid_plural "Updates" +msgstr[0] "àȅàČȘàłâ€ŒàČĄàł‡àČŸàł" +msgstr[1] "àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàł" + +#. TRANSLATORS: message when there are security updates +#: ../plugins/updates/gsd-updates-manager.c:314 +msgid "An important software update is available" +msgid_plural "Important software updates are available" +msgstr[0] "àȒàȂàČŠàł àČȘàłàČ°àČźàłàȖ àČ€àȂàČ€àłàČ°àČŸàȂàȶàČ”àČšàłàČšàł àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€Œ àȈ àČČàČ­àłàČŻàČ”àČżàČŠàł†" +msgstr[1] "àČȘàłàČ°àČźàłàȖ àČ€àȂàČ€àłàČ°àČŸàȂàȶàČ”àČšàłàČšàł àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàł àȈ àČČàČ­àłàČŻàČ”àČżàČ”àł†" + +#. TRANSLATORS: button: open the update viewer to install updates +#: ../plugins/updates/gsd-updates-manager.c:333 +#: ../plugins/updates/gsd-updates-manager.c:392 +msgid "Install updates" +msgstr "àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàł" + +#. TRANSLATORS: message when there are non-security updates +#: ../plugins/updates/gsd-updates-manager.c:373 +msgid "A software update is available." +msgid_plural "Software updates are available." +msgstr[0] "àȒàȂàČŠàł àČ€àȂàČ€àłàČ°àČŸàȂàȶàČ”àČšàłàČšàł àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€Œ àȈ àČČàČ­àłàČŻàČ”àČżàČŠàł†." +msgstr[1] "àČȘàłàČ°àČźàłàȖ àČ€àȂàČ€àłàČ°àČŸàȂàȶ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàł àȈ àČČàČ­àłàČŻàČ”àČżàČ”àł†." + +#. TRANSLATORS: policy says update, but we are on battery and so prompt +#: ../plugins/updates/gsd-updates-manager.c:438 +msgid "" +"Automatic updates are not being installed as the computer is running on " +"battery power" +msgstr "" +"àȗàČŁàȕàČ”àł àČŹàłàČŻàČŸàȟàČ°àČż àČ”àČżàČŠàłàČŻàłàČšàłàțàČ•àłàČ€àČżàČŻàČČàłàČČàČż àȚàČČàČŸàČŻàČżàČ€àČ—àłŠàČłàłàČłàłàČ€àłàČ€àČżàČ°àłàČ”àłàČŠàČ°àČżàȂàČŠ àČžàłàČ”àČŻàȂàȚàČŸàČČàČżàČ€ " +"àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàČČàČŸàČ—àłàČ”àłàČŠàČżàČČàłàČČ" + +#. TRANSLATORS: informs user will not install by default +#: ../plugins/updates/gsd-updates-manager.c:440 +msgid "Updates not installed" +msgstr "àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàČČàČŸàȗàČżàČČàłàČČ" + +#. TRANSLATORS: to hell with my battery life, just do it +#: ../plugins/updates/gsd-updates-manager.c:448 +msgid "Install the updates anyway" +msgstr "àČȘàČ°àČ”àČŸàȗàČżàČČàłàČČ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àȅàČšàłàČžàłàČ„àČŸàČȘàČżàČžàł" + +#: ../plugins/updates/gsd-updates-manager.c:464 +msgid "No restart is required." +msgstr "àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ”àłàČŠàČżàČČàłàČČ." + +#: ../plugins/updates/gsd-updates-manager.c:467 +msgid "A restart is required." +msgstr "àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ”àłàČŠàČżàČČàłàČČ." + +#: ../plugins/updates/gsd-updates-manager.c:470 +msgid "You need to log out and log back in." +msgstr "àČšàł€àČ”àł àČšàČżàČ°àłàȗàČźàČżàČžàČż àČšàȂàČ€àČ° àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ€àłàČ€àČŠàł†." + +#: ../plugins/updates/gsd-updates-manager.c:473 +msgid "You need to restart the application." +msgstr "àȅàČšàłàČ”àČŻàČ”àČšàłàČšàł àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ€àłàČ€àČŠàł†." + +#: ../plugins/updates/gsd-updates-manager.c:476 +msgid "You need to log out and log back in to remain secure." +msgstr "àČžàłàČ°àČ•àłàČ·àČżàČ€àČ”àČŸàȗàČż àȇàČ°àČČàł àČšàł€àČ”àł àČšàČżàČ°àłàȗàČźàČżàČžàČż àČšàȂàČ€àČ° àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ€àłàČ€àČŠàł†." + +#: ../plugins/updates/gsd-updates-manager.c:479 +msgid "A restart is required to remain secure." +msgstr "àČžàłàČ°àČ•àłàČ·àČżàČ€àČ”àČŸàȗàČż àȇàČ°àČČàł àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàłàČ” àȅàȗàČ€àłàČŻàČ”àČżàČ°àłàČ€àłàČ€àČŠàł†." + +#. TRANSLATORS: we did the update, but some updates were skipped and not applied +#: ../plugins/updates/gsd-updates-manager.c:540 +msgid "One package was skipped:" +msgid_plural "Some packages were skipped:" +msgstr[0] "àȒàȂàČŠàł àČȘàłàČŻàČŸàČ•àł‡àȜàČšàłàČšàł àČŹàČżàČĄàČČàČŸàȗàČżàČŠàł†:" +msgstr[1] "àČ•àł†àČČàČ”àł àČȘàłàČŻàČŸàČ•àł‡àČœàłàȗàČłàČšàłàČšàł àČŹàČżàČĄàČČàČŸàȗàČżàČ”àł†:" + +#. TRANSLATORS: title: system update completed all okay +#: ../plugins/updates/gsd-updates-manager.c:572 +msgid "The system update has completed" +msgstr "àČ”àłàČŻàČ”àČžàłàČ„àł†àČŻ àȅàČȘàłâ€ŒàČĄàł‡àČŸàł àČȘàł‚àČ°àłàČŁàČ—àłŠàȂàČĄàČżàČŠàł†" + +#. TRANSLATORS: restart computer as system packages need update +#: ../plugins/updates/gsd-updates-manager.c:581 +msgid "Restart computer now" +msgstr "àȈàȗàČČàł† àȗàČŁàȕàČ”àČšàłàČšàł àČźàČ°àČłàČż àȆàČ°àȂàČ­àČżàČžàČż" + +#. TRANSLATORS: the updates mechanism +#: ../plugins/updates/gsd-updates-manager.c:651 +msgid "Updates" +msgstr "àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàł" + +#. TRANSLATORS: we failed to get the updates multiple times, +#. * and now we need to inform the user that something might be wrong +#: ../plugins/updates/gsd-updates-manager.c:655 +msgid "Unable to access software updates" +msgstr "àČ€àȂàČ€àłàČ°àČŸàȂàȶ àȅàČȘàłâ€ŒàČĄàł‡àČŸàłâ€ŒàȗàČłàČšàłàČšàł àČšàČżàČČàłàȕàČżàČžàČżàČ•àłŠàČłàłàČłàČČàł àČžàČŸàČ§àłàČŻàČ”àČżàČČàłàČČ" + +#. TRANSLATORS: try again, this time launching the update viewer +#: ../plugins/updates/gsd-updates-manager.c:658 +msgid "Try again" +msgstr "àȇàČšàłàČšàłŠàČźàłàČźàł† àČȘàłàČ°àČŻàČ€àłàČšàČżàČžàČż" + +#. TRANSLATORS: the reason why we've inhibited it +#: ../plugins/updates/gsd-updates-manager.c:1096 +msgid "A transaction that cannot be interrupted is running" +msgstr "àČźàČ§àłàČŻàČŠàČČàłàČČàČż àČšàČżàČČàłàČČàČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČŠàł† àȇàČ°àłàČ”àȂàČ€àČč àȒàȂàČŠàł àČ”àłàČŻàČ”àČčàČŸàČ°àČ”àł àČšàČĄàł†àČŻàłàČ€àłàČ€àČżàČŠàł†" + +#: ../plugins/wacom/gsd-wacom-device.c:909 +#, c-format +msgid "Left Ring Mode #%d" +msgstr "àȎàČĄ àČžàłàČ°àłàČłàČż àČžàłàČ„àČżàČ€àČż #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:916 +#, c-format +msgid "Right Ring Mode #%d" +msgstr "àČŹàČČ àČžàłàČ°àłàČłàČż àČžàłàČ„àČżàČ€àČż #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:944 +#, c-format +msgid "Left Touchstrip Mode #%d" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:951 +#, c-format +msgid "Right Touchstrip Mode #%d" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:966 +#, c-format +msgid "Left Touchring Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:968 +#, c-format +msgid "Right Touchring Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:971 +#, c-format +msgid "Left Touchstrip Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:973 +#, c-format +msgid "Right Touchstrip Mode Switch" +msgstr "" + +#: ../plugins/wacom/gsd-wacom-device.c:978 +#, c-format +msgid "Mode Switch #%d" +msgstr "àČžàłàČ„àČżàČ€àČżàČŻ àČŹàČŠàČČàČŸàČ”àČŁàł† #%d" -#: ../plugins/xrandr/gsd-xrandr-manager.c:225 +#: ../plugins/wacom/gsd-wacom-device.c:1050 +#, c-format +msgid "Left Button #%d" +msgstr "àȎàČĄ àČ—àłàȂàČĄàČż #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1053 +#, c-format +msgid "Right Button #%d" +msgstr "àČŹàČČ àČ—àłàȂàČĄàČż #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1056 +#, c-format +msgid "Top Button #%d" +msgstr "àČźàł‡àČČàČżàČš àČ—àłàȂàČĄàČż #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1059 +#, c-format +msgid "Bottom Button #%d" +msgstr "àČ•àł†àČłàȗàČżàČš àČ—àłàȂàČĄàČż #%d" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:5 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +msgid "Authentication is required to modify the lit LED for a Wacom tablet" +msgstr "" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:500 msgid "Could not switch the monitor configuration" msgstr "àČ€àł†àČ°àł†àČŻ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àČŹàČŠàČČàČŸàČŻàČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČČàČżàČČàłàČČ" -#: ../plugins/xrandr/gsd-xrandr-manager.c:249 +#: ../plugins/xrandr/gsd-xrandr-manager.c:524 msgid "Could not restore the display's configuration" msgstr "àČȘàłàČ°àČŠàČ°àłàȶàȕàČŠ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àČźàČ°àČłàČż àČžàłàČ„àČŸàČȘàČżàČžàČČàČŸàȗàČżàČČàłàČČ" -#: ../plugins/xrandr/gsd-xrandr-manager.c:274 +#: ../plugins/xrandr/gsd-xrandr-manager.c:549 msgid "Could not restore the display's configuration from a backup" msgstr "àČȘàłàČ°àČŠàČ°àłàȶàȕàČŠ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àČŹàłàČŻàČŸàČ•àłâ€ŒàȅàČȘàłâ€ŒàČšàČżàȂàČŠ àČźàČ°àČłàČż àČžàłàČ„àČŸàČȘàČżàČžàČČàČŸàȗàČżàČČàłàČČ" -#: ../plugins/xrandr/gsd-xrandr-manager.c:295 +#: ../plugins/xrandr/gsd-xrandr-manager.c:570 #, c-format msgid "The display will be reset to its previous configuration in %d second" -msgid_plural "The display will be reset to its previous configuration in %d seconds" +msgid_plural "" +"The display will be reset to its previous configuration in %d seconds" msgstr[0] "%d àČžàł†àČ•àł†àȂàČĄàČżàČšàČČàłàČČàČż àČȘàłàČ°àČŠàČ°àłàȶàȕàČ”àČšàłàČšàł àȅàČŠàČ° àČčàČżàȂàČŠàČżàČš àČžàȂàČ°àȚàČšàł†àČ—àł† àČźàČ°àČłàČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł" msgstr[1] "%d àČžàł†àČ•àł†àȂàČĄàłàȗàČłàČČàłàČČàČż àČȘàłàČ°àČŠàČ°àłàȶàȕàČ”àČšàłàČšàł àȅàČŠàČ° àČčàČżàȂàČŠàČżàČš àČžàȂàČ°àȚàČšàł†àČ—àł† àČźàČ°àČłàČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł" -#: ../plugins/xrandr/gsd-xrandr-manager.c:344 +#: ../plugins/xrandr/gsd-xrandr-manager.c:619 msgid "Does the display look OK?" msgstr "àČȘàłàČ°àČŠàČ°àłàȶàȕàČ”àł àČžàČ°àČżàČŻàČŸàȗàČż àȕàČŸàČŁàČżàČžàłàČ€àłàČ€àČżàČŠàł†àČŻàł†?" -#: ../plugins/xrandr/gsd-xrandr-manager.c:350 +#: ../plugins/xrandr/gsd-xrandr-manager.c:626 msgid "_Restore Previous Configuration" msgstr "àČčàČżàȂàČŠàČżàČš àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àČźàČ°àČłàČż àČžàłàČ„àČŸàČȘàČżàČžàł(_R)" -#: ../plugins/xrandr/gsd-xrandr-manager.c:351 +#: ../plugins/xrandr/gsd-xrandr-manager.c:627 msgid "_Keep This Configuration" msgstr "àȈ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àȇàČ°àČżàČžàČżàČ•àłŠ(_K)" -#: ../plugins/xrandr/gsd-xrandr-manager.c:432 +#: ../plugins/xrandr/gsd-xrandr-manager.c:708 msgid "The selected configuration for displays could not be applied" msgstr "àȆàČŻàłàČ•àł† àČźàČŸàČĄàČČàČŸàČŠ àČȘàłàČ°àČŠàČ°àłàȶàȕàČŠ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àȅàČšàłàČ”àČŻàČżàČžàČČàČŸàȗàČżàČČàłàČČ" -#: ../plugins/xrandr/gsd-xrandr-manager.c:970 +#: ../plugins/xrandr/gsd-xrandr-manager.c:1358 #, c-format msgid "Could not refresh the screen information: %s" msgstr "àČ€àł†àČ°àł†àČŻ àČźàČŸàČčàČżàČ€àČżàČŻàČšàłàČšàł àČȘàłàČšàČ¶àłàČšàł‡àČ€àČšàČ—àłŠàČłàČżàČžàČČàČŸàȗàČČàČżàČČàłàČČ: %s" -#: ../plugins/xrandr/gsd-xrandr-manager.c:973 +#: ../plugins/xrandr/gsd-xrandr-manager.c:1362 msgid "Trying to switch the monitor configuration anyway." msgstr "àȆàČŠàČ°àł‚ àČžàČč àČ€àł†àČ°àł†àČŻ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àČŹàČŠàČČàČŸàČŻàČżàČžàČČàł àČȘàłàČ°àČŻàČ€àłàČšàČżàČžàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†." -#: ../plugins/xrandr/gsd-xrandr-manager.c:1684 -msgid "Rotation not supported" -msgstr "àČžàłàČ€àłàČ€àłàČ”àČżàČ•àł† àČŹàł†àȂàČŹàČČàČ”àČżàČČàłàČČàČŸ" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1738 -msgid "Could not save monitor configuration" -msgstr "àČ€àł†àČ°àł†àČŻ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àȉàČłàČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1756 -msgid "Normal" -msgstr "àČžàČŸàČźàČŸàČšàłàČŻ" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1757 -msgid "Left" -msgstr "àȎàČĄ" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1758 -msgid "Right" -msgstr "àČŹàČČ" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1759 -msgid "Upside Down" -msgstr "àČ€àČČàł† àČ•àł†àČłàČ—àł†" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1879 -msgid "_Configure Display Settings ..." -msgstr "àČȘàłàČ°àČŠàČ°àłàȶàČš àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČžàȂàČ°àȚàČżàČžàłàČ€àłàČ€àČŠàł†(_C) ..." - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1920 -msgid "Configure display settings" -msgstr "àČȘàłàČ°àČŠàČ°àłàȶàČš àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČžàȂàČ°àȚàČżàČžàł" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1980 +#: ../plugins/xrandr/gsd-xrandr-manager.c:1793 msgid "Could not apply the stored configuration for monitors" msgstr "àČ€àł†àČ°àł†àȗàČłàČżàȗàČŸàȗàČż àČ¶àł‡àȖàČ°àČżàČžàČČàČŸàČŠ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àȅàČšàłàČ”àČŻàČżàČžàČČàČŸàȗàČżàČČàłàČČ" -#: ../plugins/xrdb/gsd-xrdb-manager.c:255 -#: ../plugins/xrdb/gsd-xrdb-manager.c:324 -msgid "Cannot determine user's home directory" -msgstr "àČŹàČłàČ•àł†àČŠàČŸàČ°àČ° àČšàł†àČČàł† àȕàČĄàČ€àČ•àł‹àȶàČ”àČšàłàČšàł àȕàȂàČĄàČčàČżàČĄàČżàČŻàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†" - -#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:1 -msgid "Manage the X resource database" -msgstr "X àČžàȂàČȘàČšàłàČźàł‚àČČ àČŠàČ€àłàČ€àČžàȂàȚàČŻàČ”àČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàł" - -#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:2 -msgid "X Resource Database" -msgstr "X àČžàȂàČȘàČšàłàČźàł‚àČČ àČŠàČ€àłàČ€àČžàȂàȚàČŻ" +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 +msgid "XRandR" +msgstr "XRandR" -#: ../plugins/xsettings/gsd-xsettings-manager.c:596 -#, c-format -msgid "GConf key %s set to type %s but its expected type was %s\n" -msgstr "GConf àČ•àł€àČČàČż %s àȅàČšàłàČšàł %s àČ—àł† àČčàłŠàȂàČŠàČżàČžàČČàČŸàȗàČżàČ€àłàČ€àł àȆàČŠàČ°àł† àȅàČŠàČ° àČšàČżàČ°àł€àČ•àłàČ·àČżàČ€ àČźàłŒàČČàłàČŻàČ”àł %s àȆàȗàČżàČŠàł†\n" +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 +msgid "Set up screen size and rotation settings" +msgstr "àČ€àł†àČ°àł†àČŻ àȗàČŸàČ€àłàČ° àČčàČŸàČ—àł àČžàłàČ€àłàČ€àłàČ”àČżàČ•àł†àČŻàČšàłàČšàł àČčàłŠàȂàČŠàČżàČžàł" #: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 +msgid "X Settings" +msgstr "X àČžàČżàČŠàłàȧàČ€àł†àȗàČłàł" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 msgid "Manage X Settings" msgstr "X àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČ”àłàČŻàČ”àČžàłàČ„àČŸàČȘàČżàČžàł" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 -msgid "X Settings" -msgstr "X àČžàČżàČŠàłàȧàČ€àł†àȗàČłàł" +#, fuzzy +#~ msgid "Binding to enable or disable the touchpad." +#~ msgstr "àȗàČŁàȕàČŠ àČ§àłàČ”àČšàČż àČȘàČ°àČżàČźàČŸàČŁàČ”àČšàłàČšàł àČčàł†àČšàłàȚàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." + +#~ msgid "Volume step" +#~ msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁàČŠ àČčàȂàČ€" + +#~ msgid "Volume step as percentage of volume." +#~ msgstr "àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁàČŠ àČȘàłàČ°àČ€àČżàȶàČ€àČ”àČŸàȗàČż àČ§àłàČ”àČšàČż àČȘàłàČ°àČźàČŸàČŁàČŠ àČčàȂàČ€." + +#~ msgid "" +#~ "If a notification icon with display related things should be shown in the " +#~ "panel." +#~ msgstr "" +#~ "àČȘàłàČ°àČŠàČ°àłàȶàČšàČ•àłàČ•àł† àČžàȂàČŹàȂàȧàČżàČ€àČ”àČŸàČŠ àČ”àČżàČ·àČŻàȗàČłàČšàłàČšàł àȒàČłàČ—àłŠàȂàČĄ àȒàȂàČŠàł àČžàł‚àȚàČšàČŸ àȚàČżàČčàłàČšàł†àČŻàČšàłàČšàł àČ«àČČàȕàČŠàČČàłàČČàČż " +#~ "àČ€àł‹àČ°àČżàČžàČŹàł‡àČ•àł†." + +#~ msgid "Show Displays in Notification Area" +#~ msgstr "àČžàł‚àȚàČšàł†àȗàČłàČšàłàČšàł àČžàł‚àȚàČšàČŸ àČžàłàČ„àČłàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàł" + +#~ msgid "DPI" +#~ msgstr "DPI" + +#~ msgid "" +#~ "The resolution used for converting font sizes to pixel sizes, in dots per " +#~ "inch." +#~ msgstr "" +#~ "àȅàČ•àłàČ·àČ° àČ¶àłˆàČČàČżàČŻ àȗàČŸàČ€àłàČ°àȗàČłàČšàłàČšàł àČȘàČżàČ•àłàČžàł†àČČàłâ€Œ àȗàČŸàČ€àłàČ°àȗàČłàČŸàȗàČż àČŹàČŠàČČàČŸàČŻàČżàČžàČČàł àČŹàČłàČžàČŹàł‡àȕàČżàČ°àłàČ” àČ°àł†àČžàČČàłàČŻàł‚àȶàČšàł, àČȘàłàČ°àČ€àČż " +#~ "àȇàȂàȚàČżàČšàČČàłàČČàČżàČš àČšàłàČ•àłàȕàČżàȗàČł àȆàȧàČŸàČ°àČŠàČČàłàČČàČż." + +#~ msgid "Allowed keys" +#~ msgstr "àȅàČšàłàČźàČ€àČż àȇàČ°àłàČ” àČ•àł€àČČàČżàȗàČłàł" + +#~ msgid "" +#~ "If non-empty, keybindings will be ignored unless their GConf directory is " +#~ "in the list. This is useful for lockdown." +#~ msgstr "" +#~ "àȖàČŸàČČàČż àȇàČČàłàČČàČŠàł† àČčàł‹àČŠàČČàłàČČàČż, GConf àČ•àł‹àȶàČ”àł àČȘàČŸàłàȟàČżàČŻàČČàłàČČàČż àȇàČ°àČŠ àČčàłŠàČ°àČ€àł àČ•àł€àČČàČżàČŹàłˆàȂàČĄàČżàȂàČ—àłâ€ŒàȗàČłàČšàłàČšàł " +#~ "àȆàČČàČ•àłàČ·àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł. àȇàČŠàł àȒàȂàČŠàł àȉàČȘàČŻàłàČ•àłàČ€ àČČàČŸàČ•àłâ€ŒàČĄàłŒàČšàł àȆàȗàČżàČ°àłàČ€àłàČ€àČŠàł†." + +#~ msgid "Bounce keys" +#~ msgstr "àČȘàłàȟàČżàČŻàłàČ” àČ•àł€àČČàČżàȗàČłàł" + +#~ msgid "Command used to turn the magnifier on or off." +#~ msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČŻàČ°àČšàłàČšàł àȆàČšàłâ€Œ àČźàČŸàČĄàČČàł àȅàČ„àČ” àȆàČ«àłâ€Œ àČŹàČłàČžàČČàČŸàČ—àłàČ” àȆàČœàłàČžàł†." + +#~ msgid "Command used to turn the on-screen keyboard on or off." +#~ msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČżàČš àČ•àł€àČČàČżàČźàČŁàł†àČŻàČšàłàČšàł àȆàČšàłâ€Œ àČźàČŸàČĄàČČàł àȅàČ„àČ” àȆàČ«àłâ€Œ àČŹàČłàČžàČČàČŸàČ—àłàČ” àȆàČœàłàČžàł†." + +#~ msgid "Command used to turn the screen reader on or off." +#~ msgstr "àȓàČŠàłàȗàČšàČšàłàČšàł àȆàČšàłâ€Œ àČźàČŸàČĄàČČàł àȅàČ„àČ” àȆàČ«àłâ€Œ àČŹàČłàČžàČČàČŸàČ—àłàČ” àȆàČœàłàČžàł†." + +#~ msgid "Enable accessibility keyboard plugin" +#~ msgstr "àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł† àČȘàłàČČàČ—àłàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable background plugin" +#~ msgstr "àČčàČżàČšàłàČšàČČàł† àČȘàłàČČàČ—àłâ€ŒàȇàČšàłâ€ŒàȗàČłàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable clipboard plugin" +#~ msgstr "àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable font plugin" +#~ msgstr "àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČż àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable housekeeping plugin" +#~ msgstr "àČźàČšàł†àČžàłàČ”àČšàłàțàČ—àłŠàČłàČżàČžàłàČ” àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable keybindings plugin" +#~ msgstr "àČ•àł€àČČàČż-àČŹàČŠàłàȧàČ€àł†àȗàČł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable keyboard plugin" +#~ msgstr "àČ•àł€àČČàČżàČźàČŁàł† àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable media keys plugin" +#~ msgstr "àČźàł€àČĄàČżàČŻàČŸ àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable mouse plugin" +#~ msgstr "àČźàłŒàČžàł àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable sound plugin" +#~ msgstr "àČ§àłàČ”àČšàČż àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable typing breaks plugin" +#~ msgstr "àČ”àČżàČ°àČŸàČź àČ€àł†àČ—àł†àČŠàłàČ•àłŠàČłàłàČłàłàČ” àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable xrandr plugin" +#~ msgstr "xrandr àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable xrdb plugin" +#~ msgstr "xrdb àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "Enable xsettings plugin" +#~ msgstr "xsettings àČȘàłàČČàČ—àłâ€ŒàȇàČšàł àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàł" + +#~ msgid "On-screen keyboard" +#~ msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†" + +#~ msgid "Screen magnifier" +#~ msgstr "àČ€àł†àČ°àł†àČŻ àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àłˆàČ°àłâ€Œ" + +#~ msgid "Screen reader" +#~ msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗ" + +#~ msgid "" +#~ "Set to True to enable the housekeeping plugin, to prune transient file " +#~ "caches." +#~ msgstr "" +#~ "àȅàȗàČ€àłàČŻàČ”àČżàČČàłàČČàČŠ àČ€àČŸàČ€àłàȕàČŸàČČàČżàȕ àȕàČĄàČ€ àČ•àłàČŻàČŸàČ¶àł†àČŻàČšàłàČšàł àȅàČłàČżàČžàČżàČčàČŸàȕàČČàł, àČźàČšàł†àČžàłàČ”àČšàłàțàČ—àłŠàČłàČżàČžàłàČ” àČȘàłàČČàČ—àłàȇàČšàł àȅàČšàłàČšàł " +#~ "àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage clipboard settings." +#~ msgstr "" +#~ "àČ•àłàČČàČżàČȘàłâ€ŒàČŹàł‹àČ°àłàČĄàČżàČš àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " +#~ "(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "" +#~ "Set to True to enable the plugin to manage desktop background settings." +#~ msgstr "" +#~ "àȗàČŁàȕàČ€àł†àČ°àł† àČčàČżàČšàłàČšàČČàł† àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " +#~ "(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage font settings." +#~ msgstr "" +#~ "àȅàČ•àłàČ·àČ° àČ¶àłˆàČČàČż àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage keyboard settings." +#~ msgstr "" +#~ "àČ•àł€àČČàČżàČźàČŁàł† àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage mouse settings." +#~ msgstr "" +#~ "àČźàłŒàČžàł àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage multimedia keys settings." +#~ msgstr "" +#~ "àČźàČČàłàȟàČżàČźàł€àČĄàČżàČŻàČŸ àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " +#~ "(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage sound sample caches." +#~ msgstr "" +#~ "àČ§àłàČ”àČšàČż àČšàČźàł‚àČšàł† àČ•àłàČŻàČŸàČ¶àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "" +#~ "Set to True to enable the plugin to manage the accessibility keyboard " +#~ "settings." +#~ msgstr "" +#~ "àČšàČżàČČàłàȕàČŁàČŸ àČ•àł€àČČàČżàČźàČŁàł† àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " +#~ "(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage the keybindings." +#~ msgstr "" +#~ "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† " +#~ "(àČšàČżàȜàČ•àłàČ•àł†) àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage typing breaks." +#~ msgstr "" +#~ "àČšàČźàł‚àČŠàČżàČžàłàČ” àČ”àČżàČ°àČŸàČźàȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage xrandr settings." +#~ msgstr "" +#~ "xrandr àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage xrdb settings." +#~ msgstr "" +#~ "xrdb àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Set to True to enable the plugin to manage xsettings." +#~ msgstr "" +#~ "xsettings àȅàČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàłàČ”àȂàČ€àł† àČȘàłàČČàČ—àłàȇàČšàłâ€Œ àȅàČšàłàČšàł àȶàČ•àłàČ€àČ—àłŠàČłàČżàČžàČČàł true àČ—àł† (àČšàČżàȜàČ•àłàČ•àł†) " +#~ "àČčàłŠàȂàČŠàČżàČžàČż." + +#~ msgid "Slow keys" +#~ msgstr "àČšàČżàȧàČŸàČšàȗàČ€àČżàČŻ àČ•àł€àČČàČżàȗàČłàł" + +#~ msgid "Sticky keys" +#~ msgstr "àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàł" + +#~ msgid "The name of the keyboard shortcut to toggle the magnifier" +#~ msgstr "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł" + +#~ msgid "The name of the keyboard shortcut to toggle the on-screen keyboard" +#~ msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČżàČźàČŁàł†àČŻàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł" + +#~ msgid "The name of the keyboard shortcut to toggle the screen reader" +#~ msgstr "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł" + +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the magnifier. This " +#~ "name will be shown in the keyboard shortcut preferences dialog." +#~ msgstr "" +#~ "àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àČŻàČ°àł àȅàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł àȇàČŠàČŸàȗàČżàČŠàł†. àȈ àČčàł†àČžàČ°àČšàłàČšàł " +#~ "àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€Œ àȆàČŠàłàČŻàČ€àł†àȗàČł àČžàȂàČ”àČŸàČŠàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł." + +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the on-screen " +#~ "keyboard. This name will be shown in the keyboard shortcut preferences " +#~ "dialog." +#~ msgstr "" +#~ "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČż àČźàČŁàł†àČŻàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł àȇàČŠàČŸàȗàČżàČŠàł†. àȈ " +#~ "àČčàł†àČžàČ°àČšàłàČšàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€Œ àȆàČŠàłàČŻàČ€àł†àȗàČł àČžàȂàČ”àČŸàČŠàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł." + +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the screen reader. " +#~ "This name will be shown in the keyboard shortcut preferences dialog." +#~ msgstr "" +#~ "àČ€àł†àČ°àł† àȓàČŠàłàȗàČšàČšàłàČšàł àȟàČŸàȗàČČàł àČźàČŸàČĄàČČàł àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€ŒàČš àČčàł†àČžàČ°àł àȇàČŠàČŸàȗàČżàČŠàł†. àȈ àČčàł†àČžàČ°àČšàłàČšàł " +#~ "àČ•àł€àČČàČżàČźàČŁàł† àȶàČŸàČ°àłàČŸàł-àȕàČŸàłâ€Œ àȆàČŠàłàČŻàČ€àł†àȗàČł àČžàȂàČ”àČŸàČŠàČŠàČČàłàČČàČż àČ€àł‹àČ°àČżàČžàČČàČŸàČ—àłàČ”àłàČŠàł." + +#~ msgid "Whether the bounce keys keyboard accessibility feature is turned on." +#~ msgstr "àČȘàłàȟàČżàČ•àł† àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." + +#~ msgid "Whether the mouse keys keyboard accessibility feature is turned on." +#~ msgstr "àČźàłŒàČžàłâ€ŒàČš àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." + +#~ msgid "Whether the on-screen keyboard is turned on." +#~ msgstr "àČ€àł†àČ°àł†àČŻ àČźàł‡àČČàČŁ àČ•àł€àČČàČżàČźàČŁàł†àČŻàł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." + +#~ msgid "Whether the screen magnifier is turned on." +#~ msgstr "àČ€àł†àČ°àł†àČŻ àČźàłàČŻàČŸàČ—àłàČšàČżàČ«àČŻàČ°àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." + +#~ msgid "Whether the screen reader is turned on." +#~ msgstr "àČ€àł†àČ°àł†àČŻ àȓàČŠàłàȗàČ”àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." + +#~ msgid "Whether the slow keys keyboard accessibility feature is turned on." +#~ msgstr "àČšàČżàȧàČŸàČšàȗàČ€àČżàČŻ àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." + +#~ msgid "Whether the sticky keys keyboard accessibility feature is turned on." +#~ msgstr "àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČł àČ•àł€àČČàČżàČźàČŁàł†àČŻ àČšàČżàČČàłàȕàČżàČžàłàČ” àČžàČ”àČČàČ€àłàČ€àł àȚàČŸàČČàČżàČ€àČ”àČŸàȗàČżàČŠàł†àČŻàł†." + +#~ msgid "Don't become a daemon" +#~ msgstr "àȒàȂàČŠàł àČĄàČżàČźàČšàł àȆàȗàČŹàł‡àČĄ" + +#~ msgid "GConf prefix from which to load plugin settings" +#~ msgstr "àČȘàłàČČàČ—àłàȇàČšàł àČžàČżàČŠàłàȧàČ€àł†àȗàČłàł àČČàł‹àČĄàł àȆàȗàČŹàł‡àȕàČżàČ°àłàČ” GConf àČȘàłàČ°àČżàČ«àČżàČ•àłàČžàłâ€" + +#~ msgid "Do you want to activate Slow Keys?" +#~ msgstr "àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČšàł€àČ”àł àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" + +#~ msgid "Do you want to deactivate Slow Keys?" +#~ msgstr "àČšàČżàȧàČŸàČš àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČšàł€àČ”àł àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" + +#~ msgid "Don't activate" +#~ msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ" + +#~ msgid "Don't deactivate" +#~ msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ" + +#~ msgid "Activate" +#~ msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł" + +#~ msgid "Deactivate" +#~ msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł" + +#~ msgid "Do_n't activate" +#~ msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ(_n)" + +#~ msgid "Do_n't deactivate" +#~ msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČŹàł‡àČĄ(_n)" + +#~ msgid "_Activate" +#~ msgstr "àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł(_A)" + +#~ msgid "_Deactivate" +#~ msgstr "àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàł(_D)" + +#~ msgid "Do you want to activate Sticky Keys?" +#~ msgstr "àČšàł€àČ”àł àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČžàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" + +#~ msgid "Do you want to deactivate Sticky Keys?" +#~ msgstr "àČšàł€àČ”àł àČžàłàȟàČżàȕàČż àČ•àł€àČČàČżàȗàČłàČšàłàČšàł àČšàČżàČ·àłàČ•àłàČ°àČżàČŻàČ—àłŠàČłàČżàČžàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" + +#~ msgid "Font" +#~ msgstr "àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČż" + +#~ msgid "Font plugin" +#~ msgstr "àȅàČ•àłàČ·àČ°àČ¶àłˆàČČàČż àČȘàłàČČàČ—àłàȇàČšàł" + +#~ msgid "Removing item %lu of %lu" +#~ msgstr "%lu àȅàȂàȶàČ”àČšàłàČšàł (%lu àȗàČłàČČàłàČČàČż) àČ€àł†àČ—àł†àČŠàł àČčàČŸàȕàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†" + +#~ msgid "Removing: %s" +#~ msgstr "àČ€àł†àČ—àł†àČŠàł àČčàČŸàȕàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†: %s" + +#~ msgid "Emptying the trash" +#~ msgstr "àȕàČžàČŠ àČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†" + +#~ msgid "Preparing to empty trash..." +#~ msgstr "àȕàČžàČŠ àČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàČČàł àČžàČżàČŠàłàȧàČ—àłŠàČłàČżàČžàČČàČŸàČ—àłàČ€àłàČ€àČżàČŠàł†..." + +#~ msgid "From: " +#~ msgstr "àȇàȂàČŠ: " + +#~ msgid "Empty all of the items from the trash?" +#~ msgstr "àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻàČČàłàČČàČżàČš àȎàČČàłàČČàČŸ àȅàȂàȶàȗàČłàČšàłàČšàł àȖàČŸàČČàČżàČźàČŸàČĄàČŹàł‡àČ•àł†?" + +#~ msgid "" +#~ "If you choose to empty the trash, all items in it will be permanently " +#~ "lost. Please note that you can also delete them separately." +#~ msgstr "" +#~ "àČšàł€àČ”àł àȕàČžàČŠàČŹàłàČŸàłàȟàČżàČŻ àȅàȂàȶàȗàČłàČšàłàČšàł àȖàČŸàČČàČż àČźàČŸàČĄàČČàł àȆàČŻàłàČ•àł† àČźàČŸàČĄàČżàČŠàČČàłàČČàČż, àȅàČŠàČ°àČČàłàČČàČż àȎàČČàłàČČàČŸ àȅàȂàȶàȗàČłàł " +#~ "àȶàČŸàČ¶àłàČ”àČ€àČ”àČŸàȗàČż àČšàČŸàȶàČ—àłŠàČłàłàČłàłàČ€àłàČ€àČ”àł†. àȅàČ”àČšàłàČšàł àČšàł€àČ”àł àČȘàłàČ°àČ€àłàČŻàł‡àȕàČ”àČŸàȗàČżàČŻàł‚ àČžàČč àȅàČłàČżàČžàČČàł àČžàČŸàČ§àłàČŻ àȎàČšàłàČšàłàČ”àČŠàČšàłàČšàł " +#~ "àČŠàČŻàČ”àČżàČŸàłàČŸàł àȗàČźàČšàČżàČžàČż." + +#~ msgid "_Empty Trash" +#~ msgstr "àȕàČžàČŹàłàČŸàłàȟàČżàČŻàČšàłàČšàł àȖàČŸàČČàČżàČźàČŸàČĄàł(_E)" + +#~ msgid "Key binding (%s) is invalid" +#~ msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àČŻàł (%s) àȅàČźàČŸàČšàłàČŻàČ”àČŸàȗàČżàČŠàł†" + +#~ msgid "Key binding (%s) is incomplete" +#~ msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł† (%s) àČȘàł‚àČ°àłàČŁàČ”àČŸàȗàČżàČČàłàČČ" + +#~ msgid "" +#~ "Error while trying to run (%s)\n" +#~ "which is linked to the key (%s)" +#~ msgstr "" +#~ "(%s) àȅàČšàłàČšàł àȚàČČàČŸàČŻàČżàČžàłàČ”àČŸàȗ àČŠàł‹àČ·\n" +#~ "àȎàČŠàłàČ°àČŸàȗàČżàČŠàł†. àȅàČŠàł (%s) àČ•àł€àČČàČżàČ—àł† àČčàłŠàȂàČŠàČżàČ•àłŠàȂàČĄàČżàČŠàł†" + +#~ msgid "Keybindings plugin" +#~ msgstr "àČ•àł€àČČàČżàČŹàČŠàłàȧàČ€àł†àȗàČł àČȘàłàČČàČ—àłàȇàČšàł" + +#~ msgid "Keyboard Layout \"%s\"" +#~ msgstr "\"%s\" àČ•àł€àČČàČżàČźàČŁàł† àČČàł‡àȔàČŸàł" + +#~ msgid "Keyboard _Preferences" +#~ msgstr "àČ•àł€àČČàČżàČźàČŁàł† àȆàČŠàłàČŻàČ€àł†àȗàČłàł(_P)" + +#~ msgid "A_vailable files:" +#~ msgstr "àČČàČ­àłàČŻàČ”àČżàČ°àłàČ” àȕàČĄàČ€àȗàČłàł(_v):" + +#~ msgid "Load modmap files" +#~ msgstr "àČźàł‹àČĄàłâ€ŒàČźàłàČŻàČŸàČȘàł àȕàČĄàČ€àȗàČłàČšàłàČšàł àČČàł‹àČĄàł àČźàČŸàČĄàł" + +#~ msgid "Would you like to load the modmap file(s)?" +#~ msgstr "àČźàł‹àČĄàłâ€ŒàČźàłàČŻàČŸàČȘàł àȕàČĄàČ€àČ”àČšàłàČšàł(àȗàČłàČšàłàČšàł) àČČàł‹àČĄàł àČźàČŸàČĄàČČàł àČŹàČŻàČžàłàČ€àłàČ€àł€àČ°àł†?" + +#~ msgid "_Load" +#~ msgstr "àČČàł‹àČĄàł àČźàČŸàČĄàł(_L)" + +#~ msgid "_Loaded files:" +#~ msgstr "àČČàł‹àČĄàł àČźàČŸàČĄàČČàČŸàČŠ àȕàČĄàČ€àȗàČłàł(_L):" + +#~ msgid "" +#~ "Could not get default terminal. Verify that your default terminal command " +#~ "is set and points to a valid application." +#~ msgstr "" +#~ "àČȘàł‚àČ°àłàČ”àČšàČżàČŻàł‹àȜàČżàČ€àȟàČ°àłàČźàČżàČšàČČàł àČȘàČĄàł†àČŻàČČàČŸàȗàČżàČČàłàČČ. àČšàČżàČźàłàČź àČȘàł‚àČ°àłàČ”àČšàČżàČŻàł‹àȜàČżàČ€ àȟàČ°àłàČźàČżàČšàČČàł àȆàČœàłàČžàł†àČŻàČšàłàČšàł " +#~ "àČčàłŠàȂàČŠàČżàČžàČČàČŸàȗàČżàČŠàł† àČčàČŸàČ—àł àȒàȂàČŠàł àČźàČŸàČšàłàČŻàČ”àČŸàČŠ àȅàČšàłàČ”àČŻàČ•àłàČ•àł† àČžàł‚àȚàČżàČ€àČ—àłŠàȂàČĄàČżàČŠàł† àȎàȂàČŠàł àČȘàČ°àČżàČ¶àł€àČČàČżàČžàČż." + +#~ msgid "" +#~ "Couldn't execute command: %s\n" +#~ "Verify that this is a valid command." +#~ msgstr "" +#~ "àȆàČœàłàČžàł†àČŻàČšàłàČšàł àȕàČŸàČ°àłàČŻàȗàČ€àČ—àłŠàČłàČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ: %s\n" +#~ "àȇàČŠàł àȒàȂàČŠàł àČźàČŸàČšàłàČŻàČ”àČŸàČŠ àȆàČœàłàČžàł†àČŻàČŸàȗàČżàČŠàł† àȎàȂàČŠàł àȖàȚàČżàČ€àČȘàČĄàČżàČžàČżàČ•àłŠàČłàłàČłàČż." + +#~ msgid "Mouse Preferences" +#~ msgstr "àČźàłŒàČžàł àȆàČŠàłàČŻàČ€àł†àȗàČłàł" + +#~ msgid "Typing Break" +#~ msgstr "àČŸàłˆàČȘàČżàȂàČ—àł àČ”àČżàČ°àČŸàČź" + +#~ msgid "Typing break plugin" +#~ msgstr "àČŸàłˆàČȘàČżàȂàČ—àł àČ”àČżàČ°àČŸàČź àČȘàłàČČàČ—àłàȇàČšàł" + +#~ msgid "Rotation not supported" +#~ msgstr "àČžàłàČ€àłàČ€àłàČ”àČżàČ•àł† àČŹàł†àȂàČŹàČČàČ”àČżàČČàłàČČàČŸ" + +#~ msgid "Could not save monitor configuration" +#~ msgstr "àČ€àł†àČ°àł†àČŻ àČžàȂàČ°àȚàČšàł†àČŻàČšàłàČšàł àȉàČłàČżàČžàČČàł àČžàČŸàČ§àłàČŻàČ”àČŸàȗàČżàČČàłàČČ" + +#~ msgid "Normal" +#~ msgstr "àČžàČŸàČźàČŸàČšàłàČŻ" + +#~ msgid "Left" +#~ msgstr "àȎàČĄ" + +#~ msgid "Right" +#~ msgstr "àČŹàČČ" + +#~ msgid "Upside Down" +#~ msgstr "àČ€àČČàł† àČ•àł†àČłàČ—àł†" + +#~ msgid "_Configure Display Settings ..." +#~ msgstr "àČȘàłàČ°àČŠàČ°àłàȶàČš àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČžàȂàČ°àȚàČżàČžàłàČ€àłàČ€àČŠàł†(_C) ..." + +#~ msgid "Configure display settings" +#~ msgstr "àČȘàłàČ°àČŠàČ°àłàȶàČš àČžàČżàČŠàłàȧàČ€àł†àȗàČłàČšàłàČšàł àČžàȂàČ°àȚàČżàČžàł" + +#~ msgid "Cannot determine user's home directory" +#~ msgstr "àČŹàČłàČ•àł†àČŠàČŸàČ°àČ° àČšàł†àČČàł† àȕàČĄàČ€àČ•àł‹àȶàČ”àČšàłàČšàł àȕàȂàČĄàČčàČżàČĄàČżàČŻàČČàČŸàČ—àłàČ€àłàČ€àČŠàł†" + +#~ msgid "Manage the X resource database" +#~ msgstr "X àČžàȂàČȘàČšàłàČźàł‚àČČ àČŠàČ€àłàČ€àČžàȂàȚàČŻàČ”àČšàłàČšàł àČšàČżàČ°àłàČ”àČčàČżàČžàł" + +#~ msgid "X Resource Database" +#~ msgstr "X àČžàȂàČȘàČšàłàČźàł‚àČČ àČŠàČ€àłàČ€àČžàȂàȚàČŻ" + +#~ msgid "GConf key %s set to type %s but its expected type was %s\n" +#~ msgstr "" +#~ "GConf àČ•àł€àČČàČż %s àȅàČšàłàČšàł %s àČ—àł† àČčàłŠàȂàČŠàČżàČžàČČàČŸàȗàČżàČ€àłàČ€àł àȆàČŠàČ°àł† àȅàČŠàČ° àČšàČżàČ°àł€àČ•àłàČ·àČżàČ€ àČźàłŒàČČàłàČŻàČ”àł %s àȆàȗàČżàČŠàł†\n" #~ msgid "Binding to suspend the computer." #~ msgstr "àȗàČŁàȕàČ”àČšàłàČšàł àČžàłàČ„àȗàČżàČ€àČ—àłŠàČłàČżàČžàČČàł àČŹàČŠàłàȧàČ”àČŸàȗàČżàČŠàł†." diff -Nru gnome-settings-daemon-3.4.0/po/Makefile.in.in gnome-settings-daemon-3.4.1/po/Makefile.in.in --- gnome-settings-daemon-3.4.0/po/Makefile.in.in 2012-03-26 15:23:49.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/Makefile.in.in 2012-02-27 14:57:25.000000000 +0000 @@ -49,8 +49,8 @@ XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) XGETTEXT=$(XGETTEXT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist -GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) XGETTEXT=$(XGETTEXT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot +MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot ALL_LINGUAS = @ALL_LINGUAS@ diff -Nru gnome-settings-daemon-3.4.0/po/mr.po gnome-settings-daemon-3.4.1/po/mr.po --- gnome-settings-daemon-3.4.0/po/mr.po 2011-02-16 18:39:20.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/mr.po 2012-04-16 12:34:36.000000000 +0000 @@ -4,1282 +4,3673 @@ # # Rahul Bhalerao , 2006. # Sandeep Shedmake , 2008, 2009. -# Sandeep Shedmake , 2009, 2010. +# Sandeep Shedmake , 2009, 2010, 2012. msgid "" msgstr "" "Project-Id-Version: mr\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-settings-daemon&component=general\n" -"POT-Creation-Date: 2010-04-26 20:57+0000\n" -"PO-Revision-Date: 2010-04-27 14:29+0530\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" +"settings-daemon&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2012-03-26 16:43+0000\n" +"PO-Revision-Date: 2012-04-06 08:56+0530\n" "Last-Translator: Sandeep Shedmake \n" "Language-Team: Marathi \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: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.2\n" +"Language: mr\n" -#: ../data/50-accessibility.xml.in.h:1 -msgid "Accessibility" -msgstr "à€žà„à€Čà€­à€€à€Ÿ" +#: ../data/gnome-settings-daemon.desktop.in.in.h:1 +msgid "GNOME Settings Daemon" +msgstr "GNOME à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Ąà„€à€źà€š" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:1 -msgid "Free percentage notify threshold" -msgstr "à€źà„‹à€•à€łà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€žà„‚à€šà€šà€Ÿ à€źà€°à„à€Żà€Ÿà€Šà€Ÿ" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 +msgid "Smartcard removal action" +msgstr "à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Łà„à€Żà€Ÿà€šà„€ à€•à„ƒà€€à„€" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:2 -msgid "Free space no notify threshold" -msgstr "à€źà„‹à€•à€łà„€ à€œà€Ÿà€—à€Ÿ à€•à„à€°à€źà€Ÿà€‚à€• à€žà„‚à€šà€šà€Ÿ à€źà€°à„à€Żà€Ÿà€Šà€Ÿ" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 +msgid "" +"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " +"action will get performed when the smartcard used for log in is removed." +msgstr "" +"à€Żà€Ÿà€ž \"none\", \"lock-screen\", à€•à€żà€‚à€”à€Ÿ \"force-logout\" à€Șà„ˆà€•à„€ à€à€•à€•à€°à„€à€€à€Ÿ à€šà€żà€¶à„à€šà€żà€€ " +"à€•à€°à€Ÿ. à€Čà„‰à€—à€‡à€šà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Șà€°à€Čà„‡ à€œà€Ÿà€Łà€Ÿà€°à„‡ à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Čà„à€Żà€Ÿà€”à€° à€•à„ƒà€€à„€ à€žà„à€°à„‚ à€•à„‡à€Čà„€ " +"à€œà€Ÿà€ˆà€Č." -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:3 -msgid "Minimum notify period for repeated warnings" -msgstr "à€žà€€à€€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿà€žà€Ÿà€ à„€ à€•à€źà€Ÿà€Č à€žà„‚à€šà€šà€Ÿ à€•à€Ÿà€Čà€Ÿà€”à€§à„€" +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 +msgid "Disable touchpad while typing" +msgstr "à€Ÿà€Ÿà€ˆà€Șà€•à€°à€€à„‡à€”à„‡à€łà„€ à€Ÿà€šà€Șà„…à€Ą à€…à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 +msgid "" +"Set this to TRUE if you have problems with accidentally hitting the touchpad " +"while typing." +msgstr "à€Ÿà€Ÿà€ˆà€Ș à€•à€°à€€à„‡à€”à„‡à€łà„€ à€Ÿà€šà€Șà„…à€Ąà€Čà€Ÿ à€šà„à€•à„€à€šà„‡ à€čà€Ÿà€€ à€Čà€Ÿà€—à€Čà„à€Żà€Ÿà€ž à€Żà€Ÿà€‚à€ž TRUE à€žà„‡à€Ÿ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 +msgid "Enable horizontal scrolling" +msgstr "à€†à€Ąà€”à„‡ à€žà„à€•à„à€°à„‹à€Čà„€à€‚à€— à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 +msgid "" +"Set this to TRUE to allow horizontal scrolling by the same method selected " +"with the scroll_method key." +msgstr "" +"scroll_method à€•à€ż à€žà€č à€žà€źà€Ÿà€š à€Șà€Šà„à€§à€€ à€šà„€à€”à€Ąà€Čà„‡ à€…à€žà€Čà„à€Żà€Ÿà€ž à€†à€Ąà€”à„‡ à€žà„à€•à„à€°à„‹à€Čà„€à€‚à€— " +"à€žà„à€”à„€à€•à€Ÿà€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Żà€Ÿà€Čà€Ÿ " +"TRUE à€…à€žà„‡ à€žà„‡à€Ÿ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 +msgid "Select the touchpad scroll method" +msgstr "à€Ÿà€šà€Șà„…à€Ą à€žà„à€•à„à€°à„‹à€Č à€Șà€Šà„à€§à€€ à€šà„€à€”à€Ąà€Ÿ" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 +#| msgid "" +#| "Select the touchpad scroll method. Supported values are: 0 - disabled, 1 " +#| "- edge scrolling, 2 - two-finger scrolling" +msgid "" +"Select the touchpad scroll method. Supported values are: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "" +"à€Ÿà€šà€Șà„…à€Ą à€žà„à€•à„à€°à„‹à€Č à€źà„‡à€„à€Ą à€šà€żà€”à€Ąà€Ÿ. à€žà€źà€°à„à€„à„€à€€ à€źà„‚à€Čà„à€Żà„‡ à€…à€žà„‡ à€†à€čà„‡à€€: à€žà€źà€°à„à€„à„€à€€ à€źà„‚à€Čà„à€Żà„‡: " +"\"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\" à€…à€žà„‡ à€†à€čà„‡à€€." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 +msgid "Enable mouse clicks with touchpad" +msgstr "à€Ÿà€šà€Șà„…à€Ąà€žà€č à€źà€Ÿà€Šà€ž à€•à„à€Čà€żà€•à„à€žà„ à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 +msgid "" +"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." +msgstr "" +"à€Ÿà€šà€Șà„…à€Ąà€”à€° à€Ÿà„…à€Ș à€•à„‡à€Čà„à€Żà€Ÿà€šà€‚à€€à€° à€źà€Ÿà€Šà€ž à€•à„à€Čà€żà€•à„à€žà„ à€Șà€Ÿà€ à€”à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Żà€Ÿà€‚à€ž TRUE à€…à€žà„‡ à€žà„‡à€Ÿ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 +msgid "Enable touchpad" +msgstr "à€Ÿà€šà€Șà„…à€Ą à€žà„à€°à„‚ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 +msgid "Set this to TRUE to enable all touchpads." +msgstr "à€žà€°à„à€” à€Ÿà€šà€Șà„…à€Ąà€žà„ à€žà„à€°à„‚ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Żà€Ÿà€ž TRUE à€…à€žà„‡ à€žà„‡à€Ÿ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 +msgid "" +"Highlights the current location of the pointer when the Control key is " +"pressed and released." +msgstr "à€•à€‚à€Ÿà„à€°à„‹à€Č à€•à€ż à€Šà€Ÿà€Źà€Čà„‡ à€” à€žà„‹à€Ąà€Čà„à€Żà€Ÿà€šà€‚à€€à€° à€Șà„‰à€ˆà€‚à€Ÿà€°à€šà„‡ à€žà€§à„à€Żà€Ÿà€šà„‡ à€ à€żà€•à€Ÿà€Ł à€ à€łà€• à€•à€°à€€à„‹." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 +msgid "Double click time" +msgstr "à€Ąà€Źà€Č à€•à„à€Čà€żà€• à€”à„‡à€ł" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:15 +msgid "Length of a double click in milliseconds." +msgstr "à€źà€żà€Čà€żà€žà„‡à€•à€‚à€Šà€Ÿà€€à„€à€Č à€Ąà€Źà€Č à€•à„à€Čà€żà€•à€šà„€ à€Čà€Ÿà€‚à€Źà„€." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:16 +msgid "Drag threshold" +msgstr "à€Ąà„à€°à„…à€— à€„à„à€°à„‡à€¶à€čà„‹à€Čà„à€Ą" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:17 +msgid "Distance before a drag is started." +msgstr "à€Ąà„à€°à„…à€— à€žà„à€°à„‚ à€•à€°à€Łà„à€Żà€Ÿà€Șà„‚à€°à„à€”à„€ à€…à€‚à€€à€°." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 +msgid "Middle button emulation" +msgstr "à€źà€§à€Čà„à€Żà€Ÿ à€Źà€Ÿà€šà€šà„‡ à€à€źà„à€Żà„à€Čà„‡à€¶à€š" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 +msgid "" +"Enables middle mouse button emulation through simultaneous left and right " +"button click." +msgstr "à€žà€€à€€ à€Ąà€Ÿà€”à„‡ à€” à€‰à€œà€”à„‡ à€Źà€Ÿà€š à€•à„à€Čà€żà€•à€šà„‡ à€źà€żà€Ąà€Č à€źà€Ÿà€Šà€ž à€Źà€Ÿà€š à€‡à€źà„à€Żà„à€Čà„‡à€¶à€š à€žà„à€°à„‚ à€•à€°à€€ à€†à€čà„‡." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 +msgid "Whether the tablet's orientation is locked, or rotated automatically." +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿà€šà„‡ à€šà€żà€°à„à€Šà„‡à€¶à€š à€•à„à€Čà„‚à€Șà€Źà€‚à€Š à€†à€čà„‡, à€•à€żà€‚à€”à€Ÿ à€žà„à€”à€Żà€‚à€°à€żà€€à„à€Żà€Ÿ à€—à„‹à€Č à€«à€żà€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 +msgid "Device hotplug custom command" +msgstr "à€Ąà€żà€”à„à€čà€Ÿà€‡à€ž hotplug à€Șà€žà€‚à€€à„€à€šà„‡ à€†à€Šà„‡à€¶" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 +msgid "Command to be run when a device is added or removed." +msgstr "à€Ąà€żà€”à„à€čà€Ÿà€‡à€ž à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à€żà€‚à€”à€Ÿ à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Čà„à€Żà€Ÿà€”à€° à€šà€Ÿà€Čà€”à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 +msgid "Activation of this plugin" +msgstr "à€Żà€Ÿ à€Șà„à€Čà€—à€‡à€šà€Čà€Ÿ à€žà„à€°à„‚ à€•à€°à€Łà„‡" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgstr "gnome-settings-daemon à€€à€°à„à€«à„‡ à€čà„‡ à€Șà„à€Čà€—à€‡à€š à€žà„à€°à„‚ à€čà„‹à€ˆà€Č à€•à€żà€‚à€”à€Ÿ à€šà€Ÿà€čà„€" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 +msgid "Priority to use for this plugin" +msgstr "à€Żà€Ÿ à€Șà„à€Čà€—à€‡à€šà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 +#: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 +#: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 +msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" +msgstr "" +"gnome-settings-daemon à€žà„à€Ÿà€Ÿà€°à„à€Ÿà€…à€Ș à€•à„à€Żà„à€Šà€źà€§à„à€Żà„‡ à€Żà€Ÿ à€Șà„à€Čà€—à€‡à€šà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ " +"à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 +msgid "Wacom stylus absolute mode" +msgstr "à€”à„…à€•à„‰à€ź à€žà„à€Ÿà€Ÿà€Żà€Čà€ž à„Čà€Źà€žà„‹à€Čà„à€Żà„à€Ÿ à€źà„‹à€Ą" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 +msgid "Enable this to set the tablet to absolute mode." +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿà€Čà€Ÿ à„Čà€Źà„à€žà„‹à€Čà„à€Żà„à€Ÿ à€źà„‹à€Ąà€źà€§à„à€Żà„‡ à€ à€°à€”à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Żà€Ÿà€ž à€žà„à€°à„‚ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 +msgid "Wacom tablet area" +msgstr "à€”à„…à€•à„‰à€ź à€Ÿà„…à€Źà€Čà„‡à€Ÿ à€•à„à€·à„‡à€€à„à€°" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 +msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." +msgstr "à€Żà€Ÿà€ž à€žà€Ÿà€§à€šà€Ÿà€‚à€€à€°à„à€«à„‡ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€•à„à€·à„‡à€€à„à€°à€Ÿà€šà„à€Żà€Ÿ x1, y1 à€” x2, y2 à€•à€°à„€à€€à€Ÿ à€ à€°à€”à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 +msgid "Wacom tablet rotation" +msgstr "à€”à„…à€•à„‰à€ź à€Ÿà„…à€Źà€Čà„‡à€Ÿ à€šà€•à„à€°à€—à€€à„€" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 +msgid "" +"Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " +"'ccw' for 90 degree counterclockwise." +msgstr "" +"90 à€Ąà€żà€—à„à€°à„€ à€˜à€Ąà„à€Żà€Ÿà€łà€Ÿà€šà„à€Żà€Ÿ à€Šà€żà€¶à€Ÿà€•à€°à„€à€€à€Ÿ 'none', 'cw', 180 à€Ąà€żà€—à„à€°à„€à€•à€°à„€à€€à€Ÿ 'half', à€” " +"90 à€Ąà€żà€—à„à€°à„€ à€˜à€Ąà„à€Żà€Ÿà€łà€Ÿà€šà„à€Żà€Ÿ à€‰à€Čà€Ÿà€Šà€żà€¶à€Ÿà€•à€°à„€à€€à€Ÿ 'ccw' à€…à€žà„‡ à€źà„‚à€Čà„à€Ż à€ à€°à€”à€Ÿ." -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:4 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 +msgid "Wacom touch feature" +msgstr "à€”à„…à€•à„‰à€ź à€Ÿà€š à€—à„à€Łà€§à€°à„à€ź" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 +msgid "Enable this to move the cursor when the user touches the tablet." +msgstr "à€”à€Ÿà€Șà€°à€•à€°à„à€€à€Ÿ à€Ÿà„…à€Źà€Čà„‡à€Ÿà€Čà€Ÿ à€čà€Ÿà€€ à€Čà€Ÿà€”à€Čà„à€Żà€Ÿà€”à€° à€•à€°à„à€žà€° à€čà€Čà€”à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Żà€Ÿà€ž à€žà„à€°à„‚ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 +msgid "Wacom tablet PC feature" +msgstr "à€”à„…à€•à„‰à€ź à€Ÿà„…à€Źà€Čà„‡à€Ÿ PC à€—à„à€Łà€§à€°à„à€ź" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 +msgid "Enable this to only report stylus events when the tip is pressed." +msgstr "à€žà„à€Ÿà€Ÿà€Żà€Čà€ž à€˜à€Ÿà€šà€Ÿà€‚à€šà€Ÿ à€°à€żà€Șà„‹à€°à„à€Ÿ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Ÿà€żà€Ș à€Šà€Ÿà€Źà€Čà„à€Żà€Ÿà€”à€° à€Żà€Ÿà€ž à€žà„à€°à„‚ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 +msgid "Wacom display mapping" +msgstr "à€”à„…à€•à„‰à€ź à€Ąà€żà€žà„à€Șà€Čà„‡ à€źà„…à€Șà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 +msgid "" +"EDID information of monitor to map tablet to. Must be in the format [vendor, " +"product, serial]. [\"\",\"\",\"\"] disables mapping." +msgstr "" +"à€źà„‰à€šà€żà€Ÿà€°à€šà„€ EDID à€źà€Ÿà€čà€żà€€à„€ à€œà„à€Żà€Ÿà€ž à€Ÿà„…à€Źà€Čà„‡à€Ÿà€žà€č à€źà„…à€Ș à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č. à€°à„‚à€Șà€Ł [vendor, " +"product, serial] à€…à€žà„‡ à€čà€”à„‡. [\"\",\"\",\"\"] à€źà„…à€Șà€żà€‚à€— à€Źà€‚à€Š à€•à€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 +msgid "Wacom stylus pressure curve" +msgstr "à€”à„…à€•à„‰à€ź à€žà„à€Ÿà€Ÿà€Żà€Čà€ž à€Șà„à€°à„‡à€¶à€° à€•à€°à„à€”à„à€č" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." +msgstr "" +"à€Żà€Ÿà€ž à€žà„à€Ÿà€Ÿà€Żà€Čà€žà€•à€°à„€à€€à€Ÿ à€Čà€Ÿà€—à„‚ à€•à„‡à€Čà„‡à€Čà„à€Żà€Ÿ à€Șà„à€°à„‡à€¶à€° à€•à€°à„à€”à„à€čà€šà„à€Żà€Ÿ x1, y1 à€” x2, y2 à€•à€°à„€à€€à€Ÿ à€ à€°à€”à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 +msgid "Wacom stylus button mapping" +msgstr "à€”à„…à€•à„‰à€ź à€žà„à€Ÿà€Ÿà€Żà€Čà€ž à€Źà€Ÿà€š à€źà„…à€Șà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 +msgid "Set this to the logical button mapping." +msgstr "à€Żà€Ÿà€ž à€Čà„‰à€œà€żà€•à€Č à€Źà€Ÿà€š à€źà„…à€Șà€żà€‚à€—à€•à€°à„€à€€à€Ÿ à€ à€°à€”à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 +msgid "Wacom stylus pressure threshold" +msgstr "à€”à„…à€•à„‰à€ź à€žà„à€Ÿà€Ÿà€Żà€Čà€ž à€Șà„à€°à„‡à€¶à€° à€„à„à€°à„‡à€¶à€čà„‹à€Čà„à€Ą" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 +msgid "" +"Set this to the pressure value at which a stylus click event is generated." +msgstr "à€žà„à€Ÿà€Ÿà€Żà€Čà€ž à€•à„à€Čà€żà€• à€‡à€”à„à€čà„‡à€‚à€Ÿ à€šà€żà€°à„à€źà€Ÿà€Ł à€čà„‹à€ˆà€Č à€…à€žà„‡ à€Șà„à€°à„‡à€¶à€° à€źà„‚à€Čà„à€Żà€•à€°à„€à€€à€Ÿ à€žà„‡à€Ÿ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 +msgid "Wacom eraser pressure curve" +msgstr "à€”à„…à€•à„‰à€ź à€‡à€°à„‡à€œà€° à€Șà„à€°à„‡à€¶à€° à€•à€°à„à€”à„à€č" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." +msgstr "" +"à€Żà€Ÿà€ž à€‡à€°à„‡à€œà€°à€•à€°à„€à€€à€Ÿ à€Čà€Ÿà€—à„‚ à€•à„‡à€Čà„‡à€Čà„à€Żà€Ÿ à€Șà„à€°à„‡à€¶à€° à€•à€°à„à€”à„à€čà€šà„à€Żà€Ÿ x1, y1 à€” x2, y2 à€•à€°à„€à€€à€Ÿ à€ à€°à€”à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 +msgid "Wacom eraser button mapping" +msgstr "à€”à„…à€•à„‰à€ź à€‡à€°à„‡à€œà€° à€Źà€Ÿà€šà€šà„€ à€źà„…à€Șà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 +msgid "Wacom eraser pressure threshold" +msgstr "à€”à„…à€•à„‰à€ź à€‡à€°à„‡à€œà€° à€Șà„à€°à„‡à€¶à€° à€„à„à€°à„‡à€¶à€čà„‹à€Čà„à€Ą" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 +msgid "" +"Set this to the pressure value at which an eraser click event is generated." +msgstr "à€‡à€°à„‡à€œà„‡à€° à€•à„à€Čà€żà€• à€‡à€”à„à€čà„‡à€‚à€Ÿ à€šà€żà€°à„à€źà€Ÿà€Ł à€čà„‹à€ˆà€Č à€…à€¶à€Ÿ à€Șà„à€°à„‡à€¶à€° à€źà„‚à€Čà„à€Żà€•à€°à„€à€€à€Ÿ à€Żà€Ÿà€ž à€žà„‡à€Ÿ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 +msgid "Wacom button action type" +msgstr "à€”à„…à€•à„‰à€ź à€Źà€Ÿà€š à€•à„ƒà€€à„€ à€Șà„à€°à€•à€Ÿà€°" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 +msgid "The type of action triggered by the button being pressed." +msgstr "à€Šà€Ÿà€Źà€Čà„‡à€Čà„à€Żà€Ÿ à€Źà€Ÿà€šà€€à€°à„à€«à„‡ à€šà€żà€°à„à€źà€Ÿà€Ł à€čà„‹à€Łà€Ÿà€±à„à€Żà€Ÿ à€•à„ƒà€€à„€à€šà„‡ à€Șà„à€°à€•à€Ÿà€°." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 +msgid "Key combination for the custom action" +msgstr "à€Șà€žà€‚à€€à„€à€šà„à€Żà€Ÿ à€•à„ƒà€€à„€à€•à€°à„€à€€à€Ÿ à€•à€żà€šà„€ à€œà„‹à€Ąà€Łà„€" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 +msgid "" +"The keyboard shortcut generated when the button is pressed for custom " +"actions." +msgstr "à€Șà€žà€‚à€€à„€à€šà„à€Żà€Ÿ à€•à„ƒà€€à„€à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€š à€Šà€Ÿà€Źà€Čà„à€Żà€Ÿà€ž à€šà€żà€°à„à€źà€Ÿà€Ł à€à€Ÿà€Čà„‡à€Čà„‡ à€•à€żà€Źà„‹à€°à„à€Ą à€¶à„‰à€°à„à€Ÿà€•à€Ÿ." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 +msgid "Key combinations for an elevator custom action" +msgstr "à€à€Čà€żà€”à„‡à€Ÿà€° à€Șà€žà€‚à€€à„€à€šà„à€Żà€Ÿ à€•à„ƒà€€à„€à€•à€°à„€à€€à€Ÿ à€•à€żà€šà„‡ à€à€•à„€à€•à€°à€Ł" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 +msgid "" +"The keyboard shortcuts generated when a touchring or touchstrip is used for " +"custom actions (up followed by down)." +msgstr "" +"à€Șà€žà€‚à€€à„€à€šà„à€Żà€Ÿ à€•à„ƒà€€à„€à€•à€°à„€à€€à€Ÿ (à€…à€Șà€šà„à€Żà€Ÿ à€Șà€Ÿà€ à„‹à€Șà€Ÿà€  ) à€šà€šà€°à€żà€‚à€— à€•à€żà€‚à€”à€Ÿ à€Ÿà€šà€žà„à€Ÿà„à€°à€żà€Șà€šà€Ÿ à€”à€Ÿà€Șà€° à€•à„‡à€Čà„à€Żà€Ÿà€ž " +"à€•à€żà€Źà„‹à€°à„à€Ą à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿà€žà„ à€šà€żà€°à„à€źà€Ÿà€Ł à€čà„‹à€€à€Ÿà€€." + +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 +#| msgid "The selected configuration for displays could not be applied" +msgid "The duration a display profile is valid" +msgstr "à€Ąà€żà€žà„à€Șà€Čà„‡ à€Șà„à€°à„‹à€«à€Ÿà€‡à€Č à€”à„ˆà€§ à€°à€Ÿà€čà„‡à€Č à€…à€žà€Ÿ à€•à€Ÿà€Čà€Ÿà€”à€§à€ż" + +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 +msgid "" +"This is the number of days after which the display color profile is " +"considered invalid." +msgstr "à€Šà€żà€”à€žà€Ÿà€‚à€šà„€ à€žà€‚à€–à„à€Żà€Ÿ à€œà„à€Żà€Ÿà€šà€‚à€€à€° à€Ąà€żà€žà„à€Șà€Čà„‡ à€°à€‚à€— à€Șà„à€°à„‹à€«à€Ÿà€‡à€Č à€…à€”à„ˆà€§ à€ à€°à€”à€Čà„‡ à€œà€Ÿà€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 +msgid "The duration a printer profile is valid" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€Șà„à€°à„‹à€«à€Ÿà€‡à€Č à€”à„ˆà€§ à€°à€Ÿà€čà€€à„‡ à€€à„‡ à€•à€Ÿà€Čà€Ÿà€”à€§à€ż" + +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 +msgid "" +"This is the number of days after which the printer color profile is " +"considered invalid." +msgstr "" +"à€Šà€żà€”à€žà€Ÿà€‚à€šà„€ à€žà€‚à€–à„à€Żà€Ÿ à€œà„à€Żà€Ÿà€šà€‚à€€à€° à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€Ąà€żà€žà„à€Șà€Čà„‡ à€°à€‚à€— à€Șà„à€°à„‹à€«à€Ÿà€‡à€Č à€…à€”à„ˆà€§ à€ à€°à€”à€Čà„‡ à€œà€Ÿà€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 msgid "Mount paths to ignore" msgstr "à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€źà€Ÿà€Šà€‚à€Ÿ à€źà€Ÿà€°à„à€—à„‡" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 +msgid "Specify a list of mount paths to ignore when they run low on space." +msgstr "" +"à€œà€Ÿà€—à€Ÿ à€•à€źà„€ à€Șà€Ąà€€ à€…à€žà€Čà„à€Żà€Ÿà€ž à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€źà€Ÿà€Šà€‚à€Ÿ à€źà€Ÿà€°à„à€—à€Ÿà€‚à€šà„€ à€žà„‚à€šà„€ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 +msgid "Free percentage notify threshold" +msgstr "à€źà„‹à€•à€łà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€žà„‚à€šà€šà€Ÿ à€źà€°à„à€Żà€Ÿà€Šà€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 +#| msgid "" +#| "Percentage free space threshold for initial warning of low disk space. If " +#| "the percentage free space drops below this, a warning will be shown" msgid "" "Percentage free space threshold for initial warning of low disk space. If " -"the percentage free space drops below this, a warning will be shown" +"the percentage free space drops below this, a warning will be shown." +msgstr "" +"à€•à€źà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à„‡à€šà„à€Żà€Ÿ à€Șà„à€°à€Ÿà€°à€‚à€­à„€à€• à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿà€•à€°à„€à€€à€Ÿ à€źà„‹à€•à€łà„€ à€œà€Ÿà€—à€Ÿ à€źà€°à„à€Żà€Ÿà€Šà„‡à€šà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€. " +"à€źà„‹à€•à€łà„à€Żà€Ÿ à€œà€Ÿà€—à„‡à€šà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€Żà€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€•à€źà„€ à€†à€ąà€łà€Čà„à€Żà€Ÿà€ž, à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Šà€Ÿà€–à€”à€Čà„‡ à€œà€Ÿà€ˆà€Č." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +#| msgid "Subsequent free percentage notify threshold" +msgid "Subsequent free space percentage notify threshold" +msgstr "à€Șà€°à€žà„à€Șà€° à€źà„‹à€•à€łà„€ à€œà€Ÿà€—à€Ÿ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€źà€°à„à€Żà€Ÿà€Šà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€€à„‡" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +#| msgid "" +#| "Specify the percentage that the free disk space should reduce by before " +#| "issuing a subsequent warning" +msgid "" +"Specify the percentage that the free disk space should reduce by before " +"issuing a subsequent warning." +msgstr "" +"à€Șà€°à€žà„à€Șà€° à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Šà€Ÿà€–à€”à€Łà„à€Żà€Ÿà€Șà„‚à€°à„à€”à„€ à€źà„‹à€•à€łà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€•à€źà„€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ " +"à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 +#| msgid "Free space no notify threshold" +msgid "Free space notify threshold" +msgstr "à€źà„‹à€•à€łà„€ à€œà€Ÿà€—à€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€źà€°à„à€Żà€Ÿà€Šà€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 +#| msgid "" +#| "Specify an amount in GB. If the amount of free space is more than this, " +#| "no warning will be shown" +msgid "" +"Specify an amount in GB. If the amount of free space is more than this, no " +"warning will be shown." +msgstr "" +"à€Șà„à€°à€źà€Ÿà€Ł GB à€źà€§à„à€Żà„‡ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ. à€źà„‹à€•à€łà„€ à€œà€Ÿà€—à€Ÿ à€Żà€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€œà€Ÿà€žà„à€€ à€…à€žà€Čà„à€Żà€Ÿà€ž, à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ " +"à€Šà€Ÿà€–à€”à€Čà„€ à€œà€Ÿà€Łà€Ÿà€° à€šà€Ÿà€čà„€." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 +msgid "Minimum notify period for repeated warnings" +msgstr "à€žà€€à€€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿà€žà€Ÿà€ à„€ à€•à€źà€Ÿà€Č à€žà„‚à€šà€šà€Ÿ à€•à€Ÿà€Čà€Ÿà€”à€§à„€" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 +msgid "" +"Specify a time in minutes. Subsequent warnings for a volume will not appear " +"more often than this period." msgstr "" -"à€•à€źà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à„‡à€šà„à€Żà€Ÿ à€Șà„à€°à€Ÿà€°à€‚à€­à„€à€• à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€•à€°à„€à€€à€Ÿ à€źà„‹à€•à€łà„€ à€œà€Ÿà€—à€Ÿ à€źà€°à„à€Żà€Ÿà€Šà„‡à€šà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€. à€źà„‹à€•à€łà„€ " -"à€œà€Ÿà€—à€Ÿ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€Żà€Ÿà€šà„à€Żà€Ÿ à€–à€Ÿà€Čà„€ à€†à€ąà€łà€Čà„à€Żà€Ÿà€ž, à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Šà€Ÿà€–à€”à€Čà„€ à€œà€Ÿà€ˆà€Č" +"à€”à„‡à€ł à€źà€żà€šà„€à€Ÿà€Ÿà€‚à€€ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ. à€–à€‚à€Ąà€•à€°à„€à€€à€Ÿ à€Żà€Ÿ à€•à€Ÿà€Čà€Ÿà€”à€§à„€à€Șà„‡à€•à„à€·à€Ÿ à€œà€Ÿà€žà„à€€à€”à„‡à€łà„€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ " +"à€”à€Ÿà€°à€‚à€”à€Ÿà€° " +"à€†à€ąà€łà€Łà€Ÿà€° à€šà€Ÿà€čà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 +#| msgid "Keybindings" +msgid "Custom keybindings" +msgstr "à€Șà€žà€‚à€€à„€à€šà„€ à€•à€żà€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—à„à€žà„" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 +msgid "List of custom keybindings" +msgstr "à€Șà€žà€‚à€€à„€à€šà„à€Żà€Ÿ à€•à€żà€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—à„à€žà„à€šà„€ à€žà„‚à€šà„€" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 +msgid "Launch calculator" +msgstr "à€—à€Łà€šà€Żà€‚à€€à„à€° à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:6 +msgid "Binding to launch the calculator." +msgstr "à€—à€Łà€šà€Ÿà€Żà€‚à€€à„à€° à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:7 +msgid "Launch email client" +msgstr "à€ˆà€źà„‡à€Č à€•à„à€Čà€Ÿà€à€‚à€Ÿ à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:8 +msgid "Binding to launch the email client." +msgstr "à€ˆà€źà„‡à€Č à€•à„à€Čà€Ÿà€à€‚à€Ÿ à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 +msgid "Eject" +msgstr "à€Źà€Ÿà€čà„‡à€° à€•à€Ÿà€ąà€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:10 +#| msgid "Binding to eject an optical disk." +msgid "Binding to eject an optical disc." +msgstr "à€‘à€Șà€Ÿà€żà€•à€Č à€Ąà€żà€žà„à€• à€Źà€Ÿà€čà„‡à€° à€•à€Ÿà€ąà€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:11 +msgid "Launch help browser" +msgstr "à€źà€Šà€€ à€Źà„à€°à€Ÿà€Šà€œà€° à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:12 +msgid "Binding to launch the help browser." +msgstr "à€źà€Šà€€ à€Źà„à€°à€Ÿà€Šà€œà€° à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:13 +msgid "Home folder" +msgstr "à€źà„à€–à„à€Ż à€žà€‚à€šà€Żà„€à€•à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:14 +msgid "Binding to open the Home folder." +msgstr "à€źà„à€–à„à€Ż à€žà€‚à€šà€Żà„€à€•à€Ÿ à€‰à€˜à€ąà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:15 +msgid "Launch media player" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 +msgid "Binding to launch the media player." +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:17 +msgid "Next track" +msgstr "à€Șà„à€ąà€šà„‡ à€—à€Ÿà€Łà„€" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:18 +msgid "Binding to skip to next track." +msgstr "à€Șà„à€ąà€šà„€ à€—à€Ÿà€Łà„€ à€”à€—à€łà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:19 +msgid "Pause playback" +msgstr "à€†à€”à€Ÿà€œ à€žà„à€€à€Źà„à€§ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:20 +msgid "Binding to pause playback." +msgstr "à€Șà„à€Čà„‡à€Źà„…à€• à€žà„à€€à€Źà„à€§ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:21 +msgid "Play (or play/pause)" +msgstr "à€šà€Ÿà€Čà€”à€Ÿ (à€•à€żà€‚à€”à€Ÿ à€šà€Ÿà€Čà€”à€Ÿ/à€žà„à€€à€Źà„à€§)" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:22 +msgid "Binding to start playback (or toggle play/pause)." +msgstr "à€Șà„à€Čà„‡à€Źà„…à€• à€šà€Ÿà€Čà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€ (à€•à€żà€‚à€”à€Ÿ à€šà€Ÿà€Čà€”à€Ÿ/à€žà„à€€à€Źà„à€§ à€Źà€Šà€Č à€Čà€Ÿà€—à„‚ à€•à€°à€Ÿ)." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:23 +msgid "Log out" +msgstr "à€Čà„‰à€— à€†à€‰à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:24 +msgid "Binding to log out." +msgstr "à€Źà€Ÿà€čà„‡à€° à€Șà€Ąà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:25 +msgid "Previous track" +msgstr "à€Șà„‚à€°à„à€”à„€à€šà„‡ à€—à€Ÿà€Łà„€" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:26 +msgid "Binding to skip to previous track." +msgstr "à€Șà„‚à€°à„à€”à„€à€šà„‡ à€—à€Ÿà€Łà„€ à€”à€—à€łà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:29 +msgid "Lock screen" +msgstr "à€Șà€Ąà€Šà€Ÿ à€•à„à€Čà„‚à€Ș à€Źà€‚à€Š à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:30 +msgid "Binding to lock the screen." +msgstr "à€Șà€Ąà€Šà€Ÿ à€•à„à€Čà„‚à€Șà€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:31 +msgid "Search" +msgstr "à€¶à„‹à€§à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:32 +msgid "Binding to launch the search tool." +msgstr "à€¶à„‹à€§ à€žà€Ÿà€§à€š à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:33 +msgid "Stop playback" +msgstr "à€—à€Ÿà€Łà„€ à€„à€Ÿà€‚à€Źà€”à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:34 +msgid "Binding to stop playback." +msgstr "à€Șà„à€Čà„‡à€Źà„…à€• à€„à€Ÿà€‚à€Źà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:35 +msgid "Volume down" +msgstr "à€†à€”à€Ÿà€œ à€•à€źà„€" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:36 +msgid "Binding to lower the system volume." +msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€•à€źà„€ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:37 +msgid "Volume mute" +msgstr "à€†à€”à€Ÿà€œ à€źà„à€•" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:38 +msgid "Binding to mute the system volume." +msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€Șà„‚à€°à„à€Łà€Șà€Łà„‡ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:39 +msgid "Volume up" +msgstr "à€†à€”à€Ÿà€œ à€œà€Ÿà€žà„à€€" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:40 +msgid "Binding to raise the system volume." +msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€”à€Ÿà€ąà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:41 +msgid "Take a screenshot" +msgstr "à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€˜à„à€Żà€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:42 +#| msgid "Binding to lock the screen." +msgid "Binding to take a screenshot." +msgstr "à€žà„à€•à„à€°à„€à€šà€•à€Ÿà€žà„à€Ÿ à€˜à„‡à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:43 +msgid "Take a screenshot of a window" +msgstr "à€Șà€Ÿà€Čà€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€˜à„à€Żà€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:44 +#| msgid "Binding to toggle the screen reader." +msgid "Binding to take a screenshot of a window." +msgstr "à€Șà€Ÿà€Čà€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€˜à„‡à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:45 +msgid "Take a screenshot of an area" +msgstr "à€•à„à€·à„‡à€€à„à€°à€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€˜à„à€Żà€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:46 +#| msgid "Binding to toggle the screen reader." +msgid "Binding to take a screenshot of an area." +msgstr "à€•à„à€·à„‡à€€à„à€°à€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€˜à„‡à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 +msgid "Copy a screenshot to clipboard" +msgstr "à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿà€šà„‡ à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ąà€”à€° à€Șà„à€°à€€ à€Źà€šà€”à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 +#| msgid "Binding to toggle the on-screen keyboard." +msgid "Binding to copy a screenshot to clipboard." +msgstr "à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿà€šà„‡ à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ąà€”à€° à€Șà„à€°à€€ à€Źà€šà€”à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ą à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:49 +msgid "Copy a screenshot of a window to clipboard" +msgstr "à€Șà€Ÿà€Čà€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ąà€”à€° à€Șà„à€°à€€ à€Źà€šà€”à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:50 +msgid "Binding to copy a screenshot of a window to clipboard." +msgstr "à€Șà€Ÿà€Čà€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€Żà€Ÿà€šà„‡ à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ąà€”à€° à€Șà„à€°à€€ à€Źà€šà€”à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ą à€•à€°à€€ à€†à€čà„‡." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:51 +msgid "Copy a screenshot of an area to clipboard" +msgstr "à€•à„à€·à„‡à€€à„à€°à€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ąà€”à€° à€Șà„à€°à€€ à€Źà€šà€”à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:52 +msgid "Binding to copy a screenshot of an area to clipboard." +msgstr "à€Șà€Ÿà€Čà€Ÿà€šà„‡ à€žà„à€•à„à€°à„€à€šà€¶à„‰à€Ÿ à€Żà€Ÿà€šà„‡ à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ąà€”à€° à€Șà„à€°à€€ à€Źà€šà€”à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ą à€•à€°à€€ à€†à€čà„‡." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 +msgid "Launch web browser" +msgstr "à€”à„‡à€Ź à€Źà„à€°à€Ÿà€Šà€° à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 +msgid "Binding to launch the web browser." +msgstr "à€”à„‡à€Ź à€Źà„à€°à€Ÿà€Šà€œà€° à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 +msgid "Toggle magnifier" +msgstr "à€Ÿà„‰à€—à€Č à€”à€°à„à€§à€•" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 +#| msgid "Binding to toggle the magnifier." +msgid "Binding to show the screen magnifier" +msgstr "à€žà„à€•à„à€°à„€à€š à€źà„…à€—à€šà€żà€«à€Ÿà€Żà€° à€Šà€Ÿà€–à€”à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 +msgid "Toggle screen reader" +msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà€° à€Ÿà„‰à€—à€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 +#| msgid "Binding to toggle the screen reader." +msgid "Binding to start the screen reader" +msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà€° à€žà„à€°à„‚ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:59 +msgid "Toggle on-screen keyboard" +msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€Ÿà„‰à€—à€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:60 +#| msgid "Binding to toggle the on-screen keyboard." +msgid "Binding to show the on-screen keyboard" +msgstr "à€‘à€šà€žà„à€•à„à€°à„€à€š à€•à€żà€Źà„‹à€°à„à€Ą à€Šà€Ÿà€–à€”à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:61 +msgid "Increase text size" +msgstr "à€źà€œà€•à„‚à€° à€†à€•à€Ÿà€° à€”à€Ÿà€ąà€”à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 +#| msgid "Binding to raise the system volume." +msgid "Binding to increase the text size" +msgstr "à€źà€œà€•à„‚à€° à€†à€•à€Ÿà€° à€”à€Ÿà€ąà€”à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 +msgid "Decrease text size" +msgstr "à€źà€œà€•à„‚à€° à€†à€•à€Ÿà€° à€•à€źà„€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:64 +#| msgid "Binding to raise the system volume." +msgid "Binding to decrease the text size" +msgstr "à€źà€œà€•à„‚à€° à€†à€•à€Ÿà€° à€•à€źà„€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:65 +#| msgid "Toggle screen reader" +msgid "Toggle contrast" +msgstr "à€•à€Ÿà€à€Ÿà„à€°à€Ÿà€žà„à€Ÿà€źà€§à„à€Żà„‡ à€Źà€Šà€Č à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:66 +#| msgid "Binding to toggle the magnifier." +msgid "Binding to toggle the interface contrast" +msgstr "à€‡à€‚à€Ÿà€°à€«à„‡à€ž à€•à€Ÿà€à€Ÿà„à€°à€Ÿà€žà„à€Ÿ à€Źà€Šà€Čà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 +msgid "Magnifier zoom in" +msgstr "à€źà„…à€—à€šà€żà€«à€Ÿà€Żà€° à€źà„‹à€ à„‡ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 +#| msgid "Binding to toggle the magnifier." +msgid "Binding for the magnifier to zoom in" +msgstr "à€à„‚à€ź à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€źà„…à€—à€šà€żà€«à€Ÿà€Żà€°à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 +msgid "Magnifier zoom out" +msgstr "à€źà„…à€—à€šà€żà€«à€Ÿà€Żà€° à€›à„‹à€Ÿà„‡ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 +#| msgid "Binding to toggle the magnifier." +msgid "Binding for the magnifier to zoom out" +msgstr "à€źà„…à€—à€šà€żà€«à€Ÿà€Żà€°à€Čà€Ÿ à€à„‚à€ź à€…à€¶à€•à„à€Ż à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 +msgid "Name" +msgstr "à€šà€Ÿà€”" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 +msgid "Name of the custom binding" +msgstr "à€Șà€žà€‚à€€à„€à€šà„à€Żà€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—à€šà„‡ à€šà€Ÿà€”" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 +#| msgid "Hinting" +msgid "Binding" +msgstr "à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:74 +msgid "Binding for the custom binding" +msgstr "à€Șà€žà€‚à€€à„€à€šà„à€Żà€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:75 +msgid "Command" +msgstr "à€†à€Šà„‡à€¶" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 +msgid "Command to run when the binding is invoked" +msgstr "à€Źà€Ÿà€‡à€‚à€Ąà€żà€‚à€— à€žà„à€°à„‚ à€•à„‡à€Čà„à€Żà€Ÿà€”à€° à€šà€Ÿà€Čà€”à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 +msgid "Percentage considered low" +msgstr "à€•à€źà„€ à€žà€à€Čà„‡ à€œà€Ÿà€Łà€Ÿà€°à€ż à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à€ż" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 +msgid "" +"The percentage of the battery when it is considered low. Only valid when use-" +"time-for-policy is false." +msgstr "" +"à€Źà„…à€Ÿà€°à€żà€šà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à€ż, à€œà„‡à€”à„à€čà€Ÿ à€€à„à€Żà€Ÿà€ž à€•à€źà„€ à€ à€°à€”à€Čà„‡ à€œà€Ÿà€€à„‡. à€€à„‡à€‚à€”à„à€čà€Ÿà€š à€”à„ˆà€§ à€ à€°à€€à„‡ à€œà„‡à€”à„à€čà€Ÿ " +"à€Żà„à€œ-à€Ÿà€Ÿà€‡à€ź-à€«à„‰à€°-à€Șà„‰à€Čà€żà€žà€ż à€–à„‹à€ à„‡ à€ à€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +msgid "Percentage considered critical" +msgstr "à€—à€‚à€­à„€à€° à€…à€žà„‡ à€”à€żà€šà€Ÿà€° à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +msgid "" +"The percentage of the battery when it is considered critical. Only valid " +"when use-time-for-policy is false." +msgstr "" +"à€Źà„…à€Ÿà€°à€żà€šà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à€ż, à€œà„‡à€”à„à€čà€Ÿ à€€à„à€Żà€Ÿà€ž à€—à€‚à€­à„€à€° à€ à€°à€”à€Čà„‡ à€œà€Ÿà€€à„‡. à€œà„‡à€”à„à€čà€Ÿ à€Żà„à€œ-à€Ÿà€Ÿà€‡à€ź-à€«à„‰à€°-à€Șà„‰à€Čà€żà€žà€ż " +"à€–à„‹à€ à„‡ à€ à€°à€€à„‡ à€€à„‡à€”à„à€čà€Ÿà€š à€”à„ˆà€§ à€ à€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +msgid "Percentage action is taken" +msgstr "à€Čà€Ÿà€—à„‚ à€•à€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€•à„ƒà€€à„€à€šà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à€ż" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +msgid "" +"The percentage of the battery when the critical action is performed. Only " +"valid when use-time-for-policy is false." +msgstr "" +"à€Źà„…à€Ÿà€°à€żà€šà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à€ż, à€œà„‡à€”à„à€čà€Ÿ à€€à„à€Żà€Ÿà€ž à€—à€‚à€­à„€à€° à€ à€°à€”à€Čà„‡ à€œà€Ÿà€€à„‡. à€œà„‡à€”à„à€čà€Ÿ à€Żà„à€œ-à€Ÿà€Ÿà€‡à€ź-à€«à„‰à€°-à€Șà„‰à€Čà€żà€žà€ż " +"à€–à„‹à€ à„‡ à€ à€°à€€à„‡ à€€à„‡à€”à„à€čà€Ÿà€š à€”à„ˆà€§ à€ à€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +msgid "The time remaining when low" +msgstr "à€•à€źà„€ à€…à€žà€€à€Ÿà€šà€Ÿ à€‰à€°à„à€”à€°à€żà€€ à€”à„‡à€ł" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 +msgid "" +"The time remaining in seconds of the battery when it is considered low. Only " +"valid when use-time-for-policy is true." +msgstr "" +"à€žà„‡à€•à€‚à€Šà€Ÿà€€à„€à€Č à€‰à€°à„à€”à€°à€żà€€ à€”à„‡à€ł à€œà„‡à€”à„à€čà€Ÿ à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€ à€°à€”à€Čà„€ à€œà€Ÿà€€à„‡. à€€à„‡à€‚à€”à„à€čà€Ÿà€š à€”à„ˆà€§ à€ à€°à€€à„‡ à€œà„‡à€”à„à€čà€Ÿ " +"à€Żà„à€œ-à€Ÿà€Ÿà€‡à€ź-à€«à„‰à€°-à€Șà„‰à€Čà€żà€žà€ż à€–à€°à„‡ à€ à€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 +msgid "The time remaining when critical" +msgstr "à€—à€‚à€­à„€à€° à€…à€žà€€à€Ÿà€šà€Ÿ à€‰à€°à„à€”à€°à€żà€€ à€”à„‡à€ł" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 +msgid "" +"The time remaining in seconds of the battery when it is considered critical. " +"Only valid when use-time-for-policy is true." +msgstr "" +"à€žà„‡à€•à€‚à€Šà€Ÿà€€à„€à€Č à€‰à€°à„à€”à€°à€żà€€ à€”à„‡à€ł à€œà„‡à€”à„à€čà€Ÿ à€Źà„…à€Ÿà€°à€ż à€—à€‚à€­à„€à€° à€ à€°à€”à€Čà„€ à€œà€Ÿà€€à„‡. à€€à„‡à€‚à€”à„à€čà€Ÿà€š à€”à„ˆà€§ à€ à€°à€€à„‡ à€œà„‡à€”à„à€čà€Ÿ " +"à€Żà„à€œ-à€Ÿà€Ÿà€‡à€ź-à€«à„‰à€°-à€Șà„‰à€Čà€żà€žà€ż à€–à€°à„‡ à€ à€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 +msgid "The time remaining when action is taken" +msgstr "à€•à„ƒà€€à„€ à€Čà€Ÿà€—à„‚ à€•à„‡à€Čà„à€Żà€Ÿà€”à€° à€‰à€°à„à€”à€°à€żà€€ à€”à„‡à€ł" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 +msgid "" +"The time remaining in seconds of the battery when critical action is taken. " +"Only valid when use-time-for-policy is true." +msgstr "" +"à€žà„‡à€•à€‚à€Šà€Ÿà€€à„€à€Č à€‰à€°à„à€”à€°à€żà€€ à€”à„‡à€ł à€œà„‡à€”à„à€čà€Ÿ à€—à€‚à€­à„€à€° à€•à„ƒà€€à„€ à€˜à„‡à€€à€Čà„€ à€œà€Ÿà€€à„‡. à€€à„‡à€‚à€”à„à€čà€Ÿà€š à€”à„ˆà€§ à€ à€°à€€à„‡ à€œà„‡à€”à„à€čà€Ÿ " +"à€Żà„à€œ-à€Ÿà€Ÿà€‡à€ź-à€«à„‰à€°-à€Șà„‰à€Čà€żà€žà€ż à€–à€°à„‡ à€ à€°à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 +msgid "Whether to use time-based notifications" +msgstr "à€”à„‡à€ł-à€†à€§à€Ÿà€°à€żà€€ à€žà„‚à€šà€šà€Ÿà€‚à€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à€Ÿà€Żà€šà„‡" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 +msgid "" +"If time based notifications should be used. If set to false, then the " +"percentage change is used instead, which may fix a broken ACPI BIOS." +msgstr "" +"à€Ÿà€Ÿà€‡à€ź à€†à€§à€Ÿà€°à€żà€€ à€žà„‚à€šà€šà€Ÿà€‚à€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à€Ÿà€Żà€šà„‡. à€–à„‹à€Ÿà„‡à€•à€°à„€à€€à€Ÿ à€ à€°à€”à€Čà„à€Żà€Ÿà€ž, à€€à„à€Żà€Ÿà€à€”à€œà„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€à€šà€Ÿ " +"à€”à€Ÿà€Șà€° à€•à„‡à€Čà€Ÿ à€œà€Ÿà€€à„‹, à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€–à€‚à€Ąà„€à€€ ACPI BIOS à€šà„‡ à€šà€żà€°à„à€§à€Ÿà€°à€Ł à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 +msgid "If we should show the recalled battery warning for a broken battery" +msgstr "à€”à€żà€šà€Ÿà€‰à€Șà€Żà„‹à€— à€Źà„…à€Ÿà€°à€żà€•à€°à„€à€€à€Ÿ à€°à€żà€•à„‰à€Č à€Źà„…à€Ÿà€°à€ż à€Šà€Ÿà€–à€”à€Ÿà€Żà€šà„‡" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 +msgid "" +"If we should show the recalled battery warning for a broken battery. Set " +"this to false only if you know your battery is okay." +msgstr "" +"à€–à€‚à€Ąà„€à€€ à€Źà„…à€Ÿà€°à€żà€•à€°à„€à€€à€Ÿ à€°à€żà€•à„‰à€Čà„à€Ą à€Źà„…à€Ÿà€°à€ż à€Šà€Ÿà€–à€”à€Ÿà€Żà€šà„€. à€Źà„…à€Ÿà€°à€ż à€šà€Ÿà€‚à€—à€Čà„€ à€†à€čà„‡ à€Żà€Ÿà€šà„€ à€–à€Ÿà€€à„à€°à„€ " +"à€…à€žà€Čà„à€Żà€Ÿà€”à€°à€š à€Żà€Ÿà€ž à€–à„‹à€Ÿà„‡à€•à€°à„€à€€à€Ÿ à€ à€°à€”à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 +msgid "The install root to use when adding and removing packages" +msgstr "à€žà€‚à€•à„à€Č à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€” à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€€à„‡à€”à„‡à€łà„€ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà€š à€°à„‚à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 +msgid "" +"The install root to use when processing packages, which is changed when " +"using LTSP or when testing." +msgstr "" +"à€žà€‚à€•à„à€Čà€Ÿà€‚à€šà€Ÿ à€”à€żà€¶à„à€Čà„‡à€·à€Ł à€•à€°à€€à„‡à€”à„‡à€łà„€ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà€š à€°à„‚à€Ÿ, à€œà„à€Żà€Ÿà€ž LTSP à€•à€żà€‚à€”à€Ÿ " +"à€šà€Ÿà€šà€Łà„€à€•à€°à€€à„‡à€”à„‡à€łà„€ à€Źà€Šà€Čà€Čà„‡ à€œà€Ÿà€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 +msgid "Use mobile broadband connections" +msgstr "à€źà„‹à€Źà€Ÿà€‡à€Č à€Źà„à€°à„‰à€Ąà€Źà€à€Ą à€œà„‹à€Ąà€Łà„€à€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 +msgid "" +"Use mobile broadband connections such as GSM and CDMA to check for updates." +msgstr "" +"à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à„€à€€à€Ÿ à€źà„‹à€Źà€Ÿà€‡à€Č à€Źà„à€°à„‰à€Ąà€Źà€à€Ą à€œà„‹à€Ąà€Łà„€à€‚à€šà€Ÿ à€œà€žà„‡ à€•à€ż GSM à€” CDMA à€Żà€Ÿà€‚à€šà€Ÿ " +"à€”à€Ÿà€Șà€° à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 +msgid "Use WiFi connections" +msgstr "WiFi à€œà„‹à€Ąà€Łà„€à€‚à€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 +msgid "" +"Use WiFi (wireless LAN) connections to check for updates. It may be faster " +"to download packages when on a wired connection, and the VPN or proxy " +"required may also only be available on wired connections." +msgstr "" +"à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ WiFi (à€”à€Ÿà€Żà€°à€Čà„‡à€ž LAN) à€œà„‹à€Ąà€Łà„€à€‚à€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à€Ÿ. à€”à€Ÿà€Żà€°à„à€Ą à€œà„‹à€Ąà€Łà„€à€”à€° à€…à€žà€€à€Ÿà€šà€Ÿ " +"à€žà€‚à€•à„à€Čà„‡ à€Ąà€Ÿà€Šà€šà€Čà„‹à€Ą à€•à€°à€Łà„‡ à€”à„‡à€—à€”à€Ÿà€š à€čà„‹à€Š à€¶à€•à€€à„‡, à€” VPN à€•à€żà€‚à€”à€Ÿ à€†à€”à€¶à„à€Żà€• à€Șà„à€°à„‰à€•à„à€žà„€ à€Šà„‡à€–à„€à€Č à€«à€•à„à€€ " +"à€”à€Ÿà€Żà€°à„à€Ą à€œà„‹à€Ąà€Łà„€à€‚à€”à€° à€‰à€Șà€Čà€Źà„à€§ à€čà„‹à€Š à€¶à€•à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 +msgid "Automatically download updates in the background without confirmation" +msgstr "à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€à€€ à€”à€żà€šà€Ÿ à€–à€Ÿà€€à„à€°à„€ à€Șà€Ÿà€”à„‚à€š à€žà„à€”à€Żà€‚à€°à€żà€€à„à€Żà€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Ąà€Ÿà€Šà€šà€Čà„‹à€Ą à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 +msgid "" +"Automatically download updates in the background without confirmation. " +"Updates will be auto-downloaded when using wired network connnections, and " +"also WiFi if 'connection-use-wifi' is enabled and mobile broadband if " +"'connection-use-mobile' is enabled." +msgstr "" +"à€–à€Ÿà€€à„à€°à„€à€”à€żà€šà€Ÿ à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€à€€ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Ąà€Ÿà€Šà€šà€Čà„‹à€Ą à€•à€°à€Ÿ. à€”à€Ÿà€Żà€°à„à€Ą à€šà„‡à€Ÿà€”à€°à„à€• à€œà„‹à€Ąà€Łà„€à€‚à€šà€Ÿ à€”à€Ÿà€Șà€° " +"à€•à€°à€€à„‡à€”à„‡à€łà„€, à€” 'connection-use-wifi' à€žà„à€°à„‚ à€…à€žà€Čà„à€Żà€Ÿà€ž WiFi à€” " +"'connection-use-mobile' à€žà„à€°à„‚ à€…à€žà€Čà„à€Żà€Ÿà€ž à€źà„‹à€Źà€Ÿà€‡à€Č à€Źà„à€°à„‰à€Ąà€Źà€à€Ą à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„à€”à€Żà€‚-à€Ąà€Ÿà€Šà€šà€Čà„‹à€Ą " +"à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 +msgid "Automatically install these types of updates" +msgstr "à€Żà€Ÿ à€Șà„à€°à€•à€Ÿà€°à€šà„à€Żà€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€šà€Ÿ à€žà„à€”à€Żà€‚ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 +msgid "Automatically install these types of updates." +msgstr "à€Żà€Ÿ à€Șà„à€°à€•à€Ÿà€°à€šà„à€Żà€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€šà€Ÿ à€žà„à€”à€Żà€‚ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 +msgid "Get the update list when the session starts" +msgstr "à€žà€€à„à€° à€žà„à€°à„‚ à€à€Ÿà€Čà„à€Żà€Ÿà€”à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„‚à€šà„€ à€Șà„à€°à€Ÿà€Șà„à€€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 +msgid "Get the update list when the session starts, even if not scheduled to." +msgstr "" +"à€žà€€à„à€° à€žà„à€°à„‚ à€à€Ÿà€Čà„à€Żà€Ÿà€”à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„‚à€šà„€ à€Șà„à€°à€Ÿà€Șà„à€€ à€•à€°à€Ÿ, à€œà€°à€ż à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€¶à„‡à€Ąà„à€Żà„à€Č à€•à„‡à€Čà„‡ à€šà€žà€Čà„à€Żà€Ÿà€ž." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 +msgid "How often to check for updates" +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€•à€§à„€ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Ÿà€Żà€šà„€" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 +msgid "" +"How often to check for updates. Value is in seconds. This is a maximum " +"amount of time that can pass between a security update being published, and " +"the update being automatically installed or the user notified." +msgstr "" +"à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€•à€€à€żà€”à„‡à€łà€Ÿà€šà„‡ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Ÿà€Żà€šà„€. à€źà„‚à€Čà„à€Ż à€žà„‡à€•à€‚à€Šà€Ÿà€€ à€†à€čà„‡. à€čà„‡ à€•à€źà€Ÿà€Č à€”à„‡à€ł à€†à€čà„‡ " +"à€œà„à€Żà€Ÿà€ž à€Șà„à€°à€•à€Ÿà€¶à„€à€€ à€•à„‡à€Čà„‡à€Čà„à€Żà€Ÿ à€žà„à€°à€•à„à€·à€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿ, à€” " +"à€žà„à€”à€Żà€‚à€°à€żà€€à„à€Żà€Ÿ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€čà„‹à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€•à€żà€‚à€”à€Ÿ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Łà„‡, " +"à€Żà€Ÿ à€…à€‚à€€à€°à„à€—à€€ à€Șà€Ÿà€ à€”à€Łà„‡ à€¶à€•à„à€Ż à€†à€čà„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 +msgid "How often to notify the user that non-critical updates are available" +msgstr "à€”à€żà€šà€Ÿ-à€—à€‚à€­à„€à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§ à€†à€čà„‡ à€Żà€Ÿà€šà„€ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€•à„‡à€”à„à€čà€Ÿ à€žà„‚à€šà€šà€Ÿ à€Šà„à€Żà€Ÿà€Żà€šà„€" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 +msgid "" +"How often to tell the user there are non-critical updates. Value is in " +"seconds. Security update notifications are always shown after the check for " +"updates, but non-critical notifications should be shown a lot less " +"frequently." +msgstr "" +"à€”à€żà€šà€Ÿ-à€—à€‚à€­à„€à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Șà„à€°à€Ÿà€Șà„à€€ à€à€Ÿà€Čà„à€Żà€Ÿà€šà€‚à€€à€° à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€•à€żà€€à„€à€”à„‡à€łà€Ÿà€šà„‡ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿà€Żà€šà„‡. " +"à€źà„‚à€Čà„à€Ż à€žà„‡à€•à€‚à€Šà€Ÿà€€ à€†à€čà„‡. " +"à€žà„à€°à€•à„à€·à€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„‚à€šà€šà€Ÿà€‚à€šà€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€šà„‡à€čà€źà„€ à€€à€Șà€žà€Ÿà€Łà„€ à€šà€‚à€€à€° à€Šà€Ÿà€–à€”à€Čà„‡ à€œà€Ÿà€€à„‡, à€Șà€°à€‚à€€à„ " +"à€”à€żà€šà€Ÿ-à€—à€‚à€­à„€à€° à€žà„‚à€šà€šà€Ÿà€‚à€šà€Ÿ à€”à€Ÿà€°à€‚à€”à€Ÿà€° à€Šà€Ÿà€–à€”à€Ÿà€Żà€šà„€ à€†à€”à€¶à„à€Żà€•à€€à€Ÿ à€šà€Ÿà€čà„€." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 +msgid "The last time we told the user about non-critical notifications" +msgstr "à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€”à€żà€šà€Ÿ-à€—à€‚à€­à„€à€° à€žà„‚à€šà€šà€Ÿà€‚à€”à€żà€·à€Żà„€ à€…à€–à„‡à€°à„€à€ž à€•à€łà€”à€Čà„à€Żà€Ÿà€šà„€ à€”à„‡à€ł" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 +msgid "" +"The last time we notified the user about non-critical updates. Value is in " +"seconds since the epoch, or zero for never." +msgstr "" +"à€”à€żà€šà€Ÿ-à€—à€‚à€­à„€à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€”à€żà€·à€Żà„€ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à„‡à€Čà„‡ à€€à„€ à€¶à„‡à€”à€Ÿà€šà„€ à€”à„‡à€ł. à€‡à€Șà„‰à€•à€Șà€Ÿà€žà„‚à€š " +"à€źà„‚à€Čà„à€Ż à€žà„‡à€•à€‚à€Š, à€•à€żà€‚à€”à€Ÿ à€•à€§à€żà€š à€šà€Ÿà€čà„€à€•à€°à„€à€€à€Ÿ à€¶à„‚à€šà„à€Ż à€…à€žà„‚ à€¶à€•à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 +msgid "How often to check for distribution upgrades" +msgstr "à€”à€żà€€à€°à€Ł à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à€żà€€à€Ÿ à€•à€żà€€à„€ à€”à„‡à€łà€Ÿà€šà„‡ à€€à€Șà€Ÿà€žà€Ÿà€Żà€šà„‡" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 +msgid "How often to check for distribution upgrades. Value is in seconds." +msgstr "à€”à€żà€€à€°à€Ł à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à€żà€€à€Ÿ à€•à€żà€€à„€ à€”à„‡à€łà€Ÿà€šà„‡ à€€à€Șà€Ÿà€žà€Ÿà€Żà€šà„‡. à€źà„‚à€Čà„à€Ż à€žà„‡à€•à€‚à€Šà€Ÿà€źà€§à„à€Żà„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 +msgid "How often to refresh the package cache" +msgstr "à€žà€‚à€•à„à€Č à€•à„…à€¶à„‡ à€•à€żà€€à„€à€”à„‡à€łà€Ÿà€šà„‡ à€Șà„à€šà€ƒà€€à€Ÿà€œà„‡ à€•à€°à€Ÿà€Żà€šà„‡" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 +msgid "How often to refresh the package cache. Value is in seconds." +msgstr "à€žà€‚à€•à„à€Č à€•à„…à€¶à„‡ à€•à€żà€€à„€à€”à„‡à€łà€Ÿà€šà„‡ à€Șà„à€šà€ƒà€€à€Ÿà€œà„‡ à€•à€°à€Ÿà€Żà€šà„‡. à€źà„‚à€Čà„à€Ż à€žà„‡à€•à€‚à€Šà€Ÿà€€." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 +msgid "" +"The number of seconds at session startup to wait before checking for updates" +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Łà„à€Żà€Ÿà€Șà„‚à€°à„à€”à„€ à€žà„‡à€¶à€š à€žà„à€Ÿà€Ÿà€°à„à€Ÿà€…à€Șà€”à„‡à€łà„€ à€žà„‡à€•à€‚à€Šà€Ÿà€€à„€à€Č à€žà€‚à€–à„à€Żà€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 +msgid "" +"The number of seconds at session startup to wait before checking for " +"updates. Value is in seconds." +msgstr "" +"à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Łà„à€Żà€Ÿà€Șà„‚à€°à„à€”à„€ à€žà„‡à€¶à€š à€žà„à€Ÿà€Ÿà€°à„à€Ÿà€…à€Șà€•à€°à„€à€€à€Ÿ à€„à€Ÿà€‚à€Źà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€žà„‡à€•à€‚à€Šà€Ÿà€€à„€à€Č " +"à€žà€‚à€–à„à€Żà€Ÿ. à€źà„‚à€Čà„à€Ż à€žà„‡à€•à€‚à€Šà€Ÿà€€ à€…à€žà€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 +msgid "Install updates automatically when running on battery power" +msgstr "à€Źà„…à€Ÿà€°à€ż à€Șà€Ÿà€”à€°à€”à€° à€šà€Ÿà€Čà€€à„‡à€”à„‡à€łà„€ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„à€”à€Żà€‚ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 +msgid "Install updates automatically when running on battery power." +msgstr "à€Źà„…à€Ÿà€°à€ż à€Șà€Ÿà€”à€°à€”à€° à€šà€Ÿà€Čà€”à€€à„‡à€”à„‡à€łà„€ à€žà„à€”à€Żà€‚à€°à€żà€€à„à€Żà€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 +msgid "Notify the user when distribution upgrades are available" +msgstr "à€”à€żà€€à€°à€Ł à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§ à€…à€žà€Čà„à€Żà€Ÿà€ž à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 +msgid "Notify the user when distribution upgrades are available." +msgstr "à€”à€żà€€à€°à€Ł à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§ à€…à€žà€Čà„à€Żà€Ÿà€ž à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 +msgid "Notify the user for completed updates" +msgstr "à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€Șà„‚à€°à„à€Ł à€à€Ÿà€Čà„‡à€Čà„à€Żà€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 +msgid "" +"Notify the user for completed updates. This may be a useful notification for " +"some users as installing updates prevents shutdown." +msgstr "" +"à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€Șà„‚à€°à„à€Ł à€à€Ÿà€Čà„‡à€Čà„à€Żà€Ÿ à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ. à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ " +"à€•à„‡à€Čà„à€Żà€Ÿà€źà„à€łà„‡ à€¶à€Ÿà€Ąà€Ÿà€Šà€š à€Ÿà€łà€€ à€…à€žà€Čà„à€Żà€Ÿà€šà„‡ à€čà„‡ à€•à€Ÿà€čà€ż à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€‚à€šà€Ÿ à€‰à€Șà€Żà„‹à€—à„€ à€ à€°à„‚ à€¶à€•à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +msgid "Notify the user for completed updates where the user needs to restart" +msgstr "" +"à€Șà„‚à€°à„à€Ł à€à€Ÿà€Čà„‡à€Čà„‡ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ à€œà„‡à€„à„‡ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€Șà„à€šà€ƒ à€žà„à€°à„‚ " +"à€•à€°à€Ÿà€Żà€šà„€ à€†à€”à€¶à„à€Żà€•à€€à€Ÿ à€…à€žà€€à„‡" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 +msgid "Notify the user for completed updates where the user needs to restart." +msgstr "" +"à€Șà„‚à€°à„à€Ł à€à€Ÿà€Čà„‡à€Čà„‡ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ à€œà„‡à€„à„‡ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€Șà„à€šà€ƒ à€žà„à€°à„‚ " +"à€•à€°à€Ÿà€Żà€šà„€ à€†à€”à€¶à„à€Żà€•à€€à€Ÿ à€…à€žà€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 +msgid "" +"Notify the user when the automatic update was not started on battery power" +msgstr "à€Źà„…à€Ÿà€°à€ż à€Șà€Ÿà€”à€°à€”à€° à€žà„à€”à€Żà€‚ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„à€°à„‚ à€š à€à€Ÿà€Čà„à€Żà€Ÿà€ž à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 +msgid "" +"Notify the user when the update was not automatically started because the " +"machine is running on battery power." +msgstr "" +"à€źà€¶à„€à€š à€Źà„…à€Ÿà€°à€ż à€Șà€Ÿà€”à€°à€”à€° à€šà€Ÿà€Čà€€ à€…à€žà€Čà„à€Żà€Ÿà€šà„‡ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„à€”à€Żà€‚ à€žà„à€°à„‚ à€š à€à€Ÿà€Čà„à€Żà€Ÿà€ž à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ " +"à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 +msgid "Notify the user when the update was started" +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„à€°à„‚ à€à€Ÿà€Čà„à€Żà€”à€° à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 +msgid "Notify the user when the update was started." +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€žà„à€°à„‚ à€à€Ÿà€Čà„à€Żà€”à€° à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€žà„‚à€šà„€à€€ à€•à€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 +msgid "Ask the user if additional firmware should be installed" +msgstr "à€…à€—à€Ÿà€Š à€«à€°à„à€źà€”à„‡à€…à€° à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿà€Żà€šà„‡ à€…à€žà„‡ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€”à€żà€šà€Ÿà€°à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 +msgid "" +"Ask the user if additional firmware should be installed if it is available." +msgstr "" +"à€‰à€Șà€Čà€Źà„à€§ à€…à€žà€Čà„à€Żà€Ÿà€ž à€…à€—à€Ÿà€Š à€«à€°à„à€źà€”à„‡à€…à€° à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿà€Żà€šà„‡ à€…à€žà„‡ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€Čà€Ÿ à€”à€żà€šà€Ÿà€°à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 +msgid "Firmware files that should not be searched for" +msgstr "à€«à€°à„à€źà€”à„‡à€…à€° à€«à€Ÿà€‡à€Čà„à€žà„ à€œà„à€Żà€Ÿà€šà€Ÿ à€¶à„‹à€§ à€˜à„‡à€Š à€šà€•à€Ÿ" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 +msgid "" +"Firmware files that should not be searched for, separated by commas. These " +"can include '*' and '?' characters." +msgstr "" +"à€žà„à€”à€Čà„à€Șà€”à€żà€°à€Ÿà€źà€€à€°à„à€«à„‡ à€”à€żà€­à€Ÿà€œà„€à€€, à€«à€°à„à€źà€”à„‡à€…à€° à€«à€Ÿà€‡à€Čà„à€žà„ à€¶à„‹à€§à„‚ à€šà€•à€Ÿ. à€Żà€Ÿà€źà€§à„à€Żà„‡ '*' à€” '?' à€…à€•à„à€·à€°à„‡ " +"à€žà€źà€Ÿà€”à€żà€·à„à€Ÿà„€à€€ à€…à€žà„‚ à€¶à€•à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 +msgid "Devices that should be ignored" +msgstr "à€”à€—à€łà€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€žà€Ÿà€§à€šà„‡" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 +msgid "" +"Devices that should be ignored, separated by commas. These can include '*' " +"and '?' characters." +msgstr "" +"à€žà„à€”à€Čà„à€Șà€”à€żà€°à€Ÿà€źà€€à€°à„à€«à„‡ à€”à€żà€­à€Ÿà€œà„€à€€, à€žà€Ÿà€§à€šà„‡ à€¶à„‹à€§à„‚ à€šà€•à€Ÿ. à€Żà€Ÿà€źà€§à„à€Żà„‡ '*' à€” '?' à€…à€•à„à€·à€°à„‡ à€žà€źà€Ÿà€”à€żà€·à„à€Ÿà„€à€€ " +"à€…à€žà„‚ à€¶à€•à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 +msgid "The filenames on removable media that designate it a software source." +msgstr "à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€žà„à€°à„‹à€€ à€˜à„‹à€·à„€à€€ à€•à€°à€Łà€Ÿà€°à„‡ à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€źà€żà€Ąà„€à€Żà€Ÿà€šà„‡ à€«à€Ÿà€‡à€Čà€šà€Ÿà€”à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 +msgid "" +"When removable media is inserted, it is checked to see if it contains any " +"important filenames in the root directory. If the filename matches, then an " +"updates check is performed. This allows post-install disks to be used to " +"update running systems." +msgstr "" +"à€•à€Ÿà€ąà„‚à€šà€Ÿà€Ÿà€•à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€źà€żà€Ąà„€à€Żà€Ÿ à€…à€‚à€€à€°à„à€­à„à€€ à€•à„‡à€Čà„à€Żà€Ÿà€”à€°, à€°à„‚à€Ÿ à€Ąà€żà€°à„‡à€•à„à€Ÿà„à€°à„€à€źà€§à„à€Żà„‡ à€•à„‹à€Łà€€à„‡à€čà€ż " +"à€źà€čà€€à„à€”à€Ÿà€šà„à€Żà€Ÿ à€«à€Ÿà€‡à€Čà€šà€Ÿà€”à„‡ à€žà€źà€Ÿà€”à€żà€·à„à€Ÿà„€à€€ à€†à€čà„‡ à€Żà€Ÿà€šà„€ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€€à„‹. à€«à€Ÿà€‡à€Čà€šà„‡à€ź à€œà„à€łà€Čà„à€Żà€Ÿà€ž, " +"à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€€à€Șà€Ÿà€žà€Łà„€ à€žà„à€°à„‚ à€•à„‡à€Čà„€ à€œà€Ÿà€€à„‡. à€•à€Ÿà€°à„à€Żà€°à€€ à€Șà„à€°à€Łà€Ÿà€Čà„€à€‚à€šà€Ÿ à€žà„à€§à€Ÿà€°à€żà€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ " +"à€Șà„‹à€žà„à€Ÿ-à€‡à€‚à€žà„à€Ÿà„‰à€Č à€Ąà€żà€žà„à€•à„à€žà„ à€”à€Ÿà€Șà€°à€Łà„‡ à€¶à€•à„à€Ż à€čà„‹à€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 +msgid "File for default configuration for RandR" +msgstr "RandR à€•à€°à„€à€€à€Ÿ à€Șà„‚à€°à„à€”à€šà€żà€°à„à€§à€Ÿà€°à€żà€€ à€žà€‚à€°à€šà€šà€Ÿà€•à€°à„€à€€à€Ÿ à€«à€Ÿà€‡à€Č" + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 +msgid "" +"The XRandR plugin will look for a default configuration in the file " +"specified by this key. This is similar to the ~/.config/monitors.xml that " +"normally gets stored in users' home directories. If a user does not have " +"such a file, or has one that does not match the user's setup of monitors, " +"then the file specified by this key will be used instead." +msgstr "" +"à€Żà€Ÿ à€•à€żà€€à€°à„à€«à„‡ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€«à€Ÿà€‡à€Čà€źà€§à„à€Żà„‡ XRandR à€Șà„à€Čà€—à€‡à€š à€Șà„‚à€°à„à€”à€šà€żà€°à„à€§à€Ÿà€°à€żà€€ à€žà€‚à€šà€°à€šà€Ÿà€•à€°à„€à€€à€Ÿ à€Șà€čà€Ÿà€€à„‹." +" " +"à€čà„‡ ~/.config/monitors.xml à€Șà„à€°à€źà€Ÿà€Łà„‡à€š à€†à€čà„‡ à€œà„‡ à€žà€čà€žà€Ÿ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€šà„à€Żà€Ÿ à€čà„‹à€ź " +"à€Ąà€żà€°à„‡à€•à„à€Ÿà„à€°à„€à€œà€źà€§à„à€Żà„‡ à€žà€Ÿà€ à€”à€Čà„‡ à€œà€Ÿà€€à„‡. à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€•à€Ąà„‡ à€Żà€Ÿà€Șà„à€°à€•à€Ÿà€°à€šà„€ à€«à€Ÿà€‡à€Č à€šà€žà€Čà„à€Żà€Ÿà€ž, " +"à€•à€żà€‚à€”à€Ÿ à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€šà„à€Żà€Ÿ à€źà„‰à€šà€żà€Ÿà€°à€šà„à€Żà€Ÿ à€źà€Ÿà€‚à€Ąà€Łà„€à€žà€č à€œà„à€łà€€ à€šà€žà€Čà„à€Żà€Ÿà€ž, à€Żà€Ÿ à€•à€żà€€à€°à„à€«à„‡ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ " +"à€«à€Ÿà€‡à€Čà€šà€Ÿ à€”à€Ÿà€Șà€° à€€à„à€Żà€Ÿà€à€”à€œà„€ à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č." + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 +msgid "Whether to turn off specific monitors after boot" +msgstr "à€Źà„‚à€Ÿ à€šà€‚à€€à€° à€ à€°à€Ÿà€”à€żà€• à€źà„‰à€šà€żà€Ÿà€°à„à€žà„ à€Źà€‚à€Š à€•à€°à€Ÿà€Żà€šà„‡" + +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +msgid "" +"'clone' will display the same thing on all monitors, 'dock' will switch off " +"the internal monitor, 'do-nothing' will use the default Xorg behaviour " +"(extend the desktop in recent versions)" +msgstr "" +"'clone' à€žà€°à„à€” à€źà„‰à€šà€żà€Ÿà€°à„à€žà„à€”à€° à€žà€źà€Ÿà€š à€˜à€Ÿà€• à€Šà€Ÿà€–à€”à„‡à€Č, 'dock' à€†à€‚à€€à€°à€żà€• à€źà„‰à€šà€żà€Ÿà€° à€Źà€‚à€Š à€•à€°à„‡à€Č, " +"'do-nothing' à€Șà„‚à€°à„à€”à€šà€żà€°à„à€§à€Ÿà€°à€żà€€ Xorg à€”à€°à„à€€à€šà€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à„‡à€Č (à€Ąà„‡à€žà„à€•à€Ÿà„‰à€Șà€Čà€Ÿ à€žà€§à„à€Żà€Ÿà€šà„à€Żà€Ÿ " +"à€†à€”à„ƒà€€à„à€€à„€à€€ à€à€•à„à€žà€Ÿà„‡à€‚à€Ą à€•à€°à€Ÿ)" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 +msgid "Antialiasing" +msgstr "à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€œà„€à€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +msgid "" +"The type of antialiasing to use when rendering fonts. Possible values are: " +"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " +"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +msgstr "" +"à€«à„‰à€šà„à€Ÿ à€Šà€°à„à€¶à€”à€żà€€à„‡à€”à„‡à€łà„€ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€Șà„à€°à€•à€Ÿà€°. à€žà€‚à€­à€Ÿà€”à„à€Ż à€źà„à€Čà„à€Ż à€–à€Ÿà€Čà€żà€Č " +"à€šà„à€°à„‚à€Ș à€†à€čà„‡: \"none" +"\" à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ, \"grayscale\" à€źà€Ÿà€šà€• à€—à„à€°à„‡à€žà„à€•à„‡à€Č à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ, à€” " +"\"rgba\" " +"à€‰à€Șà€Șà„€à€•à„à€žà„‡à€Č à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ (à€«à€•à„à€€ LCD à€Șà€Ąà€Šà€Ÿ)." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 +msgid "Hinting" +msgstr "à€čà€żà€‚à€Ÿà„€à€‚à€—" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 +msgid "" +"The type of hinting to use when rendering fonts. Possible values are: \"none" +"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" +"\" for maximum hinting (may cause distortion of letter forms)." +msgstr "" +"à€«à„‰à€šà„à€Ÿ à€Šà€°à„à€¶à€”à€żà€€à„‡à€”à„‡à€łà„€ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€čà€żà€šà„à€Ÿà„€à€‚à€—à€šà€Ÿ à€Șà„à€°à€•à€Ÿà€°. à€žà€‚à€­à€Ÿà€”à„à€Ż à€źà„à€Čà„à€Ż à€–à€Ÿà€Čà€żà€Č à€šà„à€°à„‚à€Ș " +"à€†à€čà„‡: \"none\" " +"à€¶à„‚à€šà„à€Ż à€čà€żà€šà„à€Ÿà„€à€‚à€— à€•à€°à„€à€€à€Ÿ, \"slight\" à€źà„à€Čà€­à„‚à€€ à€•à€°à„€à€€à€Ÿ, \"medium\" à€źà€§à„à€Ż à€•à€°à„€à€€à€Ÿ, à€” " +"\"rgba\" " +"à€‰à€Șà€Șà„€à€•à„à€žà„‡à€Č à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ (à€«à€•à„à€€ LCD à€Șà€Ąà€Šà€Ÿ à€•à€°à„€à€€à€Ÿ)." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +msgid "RGBA order" +msgstr "RGBA à€•à„à€°à€źà€”à€Ÿà€°à„€" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 +msgid "" +"The order of subpixel elements on an LCD screen; only used when antialiasing " +"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " +"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " +"on bottom." +msgstr "" +"LCD à€Șà€Ąà€Šà„à€Żà€Ÿà€”à€°à„€à€Č à€‰à€Șà€Șà„€à€•à„à€žà„‡à€Č à€˜à€Ÿà€•à€Ÿà€‚à€šà„€ à€•à„à€°à€źà€”à€Ÿà€°à„€; à€«à€•à„à€€ à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€Żà€Ÿà€ž \"rgba\" " +"à€•à€°à„€à€€à€Ÿ " +"à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„à€Żà€Ÿà€”à€°à€š à€”à€Ÿà€Șà€°à€Čà„‡ à€œà€Ÿà€€à„‡. à€žà€‚à€­à€Ÿà€”à„à€Ż à€źà„à€Čà„à€Ż à€–à€Ÿà€Čà€żà€Č à€Șà„à€°à€źà€Ÿà€Łà„‡ à€†à€čà„‡: \"rgb\" " +"à€Ąà€Ÿà€”à„€à€•à€Ąà„€à€Č à€Čà€Ÿà€Č " +"à€•à€°à„€à€€à€Ÿ (à€žà€°à„à€”à€Ÿà€§à„€à€• à€žà€°à„à€”à€žà€Ÿà€§à€Ÿà€°à€šà€°à€żà€€à„à€Żà€Ÿ), \"bgr\" à€Ąà€Ÿà€”à„€à€•à€Ąà„€à€Č à€šà„€à€łà„à€Żà€Ÿ à€•à€°à„€à€€à€Ÿ, \"vrgb\" " +"à€”à€°à„€à€Č " +"à€Čà€Ÿà€Č à€•à€°à„€à€€à€Ÿ, \"vbgr\" à€€à€łà€Ÿà€€à„€à€Č à€Čà€Ÿà€Č à€•à€°à„€à€€à€Ÿ." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 +msgid "List of explicitly disabled GTK+ modules" +msgstr "GTK+ à€˜à€Ÿà€•à€Ÿà€‚à€šà„€ à€žà„à€”à„à€Żà€•à„à€€à€Șà€Łà„‡ à€Źà€‚à€Š à€•à„‡à€Čà„‡à€Čà„€ à€žà„‚à€šà„€" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 +msgid "" +"A list of strings representing the GTK+ modules that will not be loaded, " +"even if enabled by default in their configuration." +msgstr "" +"à€žà„à€Ÿà„à€°à€żà€‚à€—à„à€žà„à€šà„€ à€žà„‚à€šà„€ à€Șà„à€°à€žà„à€€à„à€€ à€•à€°à€Łà€Ÿà€°à„‡, à€Čà„‹à€Ą à€š à€•à€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ GTK+ à€˜à€Ÿà€•à„‡, à€žà€‚à€°à€šà€šà€Ÿà€źà€§à„à€Żà„‡ " +"à€œà€°à„€ à€Șà„‚à€°à„à€”à€šà€żà€°à„à€§à€Ÿà€°à€żà€€à€Șà€Łà„‡ à€žà„à€°à„‚ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 +msgid "List of explicitly enabled GTK+ modules" +msgstr "GTK+ à€˜à€Ÿà€•à€Ÿà€‚à€šà„€ à€žà„à€”à„à€Żà€•à„à€€à€Șà€Łà„‡ à€žà„à€°à„‚ à€•à„‡à€Čà„‡à€Čà„€ à€žà„‚à€šà„€" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 +msgid "" +"A list of strings representing the GTK+ modules that will be loaded, usually " +"in addition to conditional and forcibly disabled ones." +msgstr "" +"à€žà„à€Ÿà„à€°à€żà€‚à€—à„à€žà„à€šà„€ à€žà„‚à€šà„€ à€Șà„à€°à€žà„à€€à„à€€ à€•à€°à€Łà€Ÿà€°à„‡, à€Čà„‹à€Ą à€š à€•à€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ GTK+ à€˜à€Ÿà€•à„‡, à€žà€čà€žà€Ÿ " +"à€Șà€°à€żà€žà„à€„à€żà€€à„€à€šà„à€°à„‚à€Ș à€” à€œà€Źà€°à€šà€Șà€Łà„‡ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€šà„à€Żà€Ÿ à€”à„à€Żà€€à€żà€°à€żà€•à„à€€." + +#: ../gnome-settings-daemon/main.c:54 +msgid "Enable debugging code" +msgstr "à€Ąà„€à€Źà€—à„€à€‚à€— à€•à„‹à€Ą à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" + +#: ../gnome-settings-daemon/main.c:55 +msgid "Exit after a time (for debugging)" +msgstr "à€”à„‡à€łà€Ÿà€šà€‚à€€à€° à€Źà€Ÿà€čà„‡à€° à€Șà€Ąà€Ÿ (à€Ąà€żà€Źà€—à€żà€‚à€—à€•à€°à„€à€€à€Ÿ)" + +#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:1 +msgid "Accessibility Keyboard" +msgstr "à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€•" + +#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:2 +msgid "Accessibility keyboard plugin" +msgstr "à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:383 +#, c-format +msgid "There was an error displaying help: %s" +msgstr "à€źà€Šà€€ à€Šà€°à„à€¶à€”à€Łà„à€Żà€Ÿà€€ à€šà„‚à€• à€à€Ÿà€Čà„€: %s" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:508 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:572 +#| msgid "Slow Keys Alert" +msgid "Slow Keys Turned On" +msgstr "à€žà„à€Čà„‹ à€•à€żà€œà„ à€žà„à€°à„‚ à€•à„‡à€Čà„‡" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 +#| msgid "Slow Keys Alert" +msgid "Slow Keys Turned Off" +msgstr "à€žà„à€Čà„‹ à€•à€żà€œà„ à€Źà€‚à€Š à€•à„‡à€Čà„‡" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 +msgid "" +"You just held down the Shift key for 8 seconds. This is the shortcut for " +"the Slow Keys feature, which affects the way your keyboard works." +msgstr "" +"à€€à„à€źà„à€čà„€ à€šà„à€•à€€à„‡à€š Shift à€•à€ż 8 à€žà„‡à€•à€‚à€Š à€•à€°à„€à€€à€Ÿ à€Šà€Ÿà€Źà„‚à€š à€ à„‡à€”à€Čà„‡ à€†à€čà„‡. à€čà„‡ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€•à€°à„€à€€à€Ÿ " +"à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€†à€čà„‡, " +"à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€•à€łà€«à€Čà€•à€šà„à€Żà€Ÿ à€•à€Ÿà€°à„à€Żà€Șà€Šà„à€§à€€à„€à€”à€° à€Șà„à€°à€­à€Ÿà€” à€Șà€Ąà€€à„‹." + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 +#: ../plugins/mouse/gsd-mouse-manager.c:867 +#| msgid "Universal Access Preferences" +msgid "Universal Access" +msgstr "à€œà€Ÿà€—à€€à€żà€• à€Șà„à€°à€”à„‡à€¶" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn Off" +msgstr "à€Źà€‚à€Š à€•à€°à€Ÿ" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn On" +msgstr "à€žà„à€°à„‚ à€•à€°à€Ÿ" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave On" +msgstr "à€Čà€żà€”à„à€č à€‘à€š" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave Off" +msgstr "à€Čà€żà€”à„à€č à€‘à€«" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn Off" +msgstr "à€Źà€‚à€Š à€•à€°à€Ÿ (_T)" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn On" +msgstr "à€žà„à€°à„‚ à€•à€°à€Ÿ (_T)" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave On" +msgstr "à€Čà€żà€”à„à€č à€‘à€š (_L)" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave Off" +msgstr "à€Čà€żà€”à„à€č à€‘à€« (_L)" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:641 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:707 +#| msgid "Sticky Keys Alert" +msgid "Sticky Keys Turned On" +msgstr "à€žà„à€Ÿà€żà€•à„€ à€•à€żà€œà„ à€žà„à€°à„‚ à€•à„‡à€Čà„‡" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 +#| msgid "Sticky Keys Alert" +msgid "Sticky Keys Turned Off" +msgstr "à€žà„à€Ÿà€żà€•à„€ à€•à€żà€œà„ à€Źà€‚à€Š à€•à„‡à€Čà„‡" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 +msgid "" +"You just pressed the Shift key 5 times in a row. This is the shortcut for " +"the Sticky Keys feature, which affects the way your keyboard works." +msgstr "" +"à€€à„à€źà„à€čà„€ à€šà„à€•à€€à„‡à€š Shift à€•à€ż 5 à€”à„‡à€łà€Ÿ à€à€•à€Ÿ à€“à€łà„€à€€ à€Šà€Ÿà€Źà„‚à€š à€ à„‡à€”à€Čà„‡ à€čà„‹à€€à„‡. à€čà„‡ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€•à€°à„€à€€à€Ÿ " +"à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€†à€čà„‡, " +"à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€•à€łà€«à€Čà€•à€šà„à€Żà€Ÿ à€•à€Ÿà€°à„à€Żà€Șà€Šà„à€§à€€à„€à€”à€° à€Șà„à€°à€­à€Ÿà€” à€Șà€Ąà€€à„‹." + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:646 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:712 +msgid "" +"You just pressed two keys at once, or pressed the Shift key 5 times in a " +"row. This turns off the Sticky Keys feature, which affects the way your " +"keyboard works." +msgstr "" +"à€€à„à€źà„à€čà„€ à€šà„à€•à€€à„‡à€š à€Šà„‹à€š à€•à€ż à€à€•à€Ÿà€š à€”à„‡à€łà€Ÿ, à€•à€żà€‚à€”à€Ÿ Shift à€•à€ż 5 à€žà„‡à€•à€‚à€Š à€•à€°à„€à€€à€Ÿ à€Šà€Ÿà€Źà„‚à€š à€ à„‡à€”à€Čà„‡ à€čà„‹à€€à„‡." +" à€Żà€Ÿ à€čà€łà„à€”à€Ÿà€° " +"à€•à€ż à€…à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€čà„‹à€€à„‡, à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€•à€łà€«à€Čà€•à€šà„à€Żà€Ÿ à€•à€Ÿà€°à„à€Żà€Șà€Šà„à€§à€€à„€à€”à€° à€Șà„à€°à€­à€Ÿà€” à€Șà€Ąà€€à„‹." + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 +msgid "Universal Access Preferences" +msgstr "à€œà€Ÿà€—à€€à€żà€• à€Șà„à€°à€”à„‡à€¶ à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 +msgid "Use on-screen _keyboard" +msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€”à€Ÿà€Șà€°à€Ÿ (_k)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 +msgid "Use screen _reader" +msgstr "à€Șà€Šà€Ąà€Ÿ à€”à€Ÿà€šà€•à€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à€Ÿ (_r)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +msgid "Use screen _magnifier" +msgstr "à€žà„à€•à„à€°à„€à€š à€”à€°à„à€§à€• à€”à€Ÿà€Șà€°à€Ÿ (_m)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 +msgid "Enhance _contrast in colors" +msgstr "à€°à€‚à€— à€źà€§à€żà€Č à€­à„‡à€Š à€”à€Ÿà€ąà€”à€Ÿ (_c)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 +msgid "Make _text larger and easier to read" +msgstr "à€Șà€Ÿà€ à„à€Ż à€źà„‹à€ à„‡ à€” à€”à€Ÿà€šà€š à€•à€°à„€à€€à€Ÿ à€žà„à€Čà€­ à€•à€°à€Ÿ (_t)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 +msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" +msgstr "à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€•à€°à„€à€€à€Ÿ à€à€•à€Ÿ à€”à„‡à€łà„€ à€à€•à€š à€•à€ż à€Šà€Ÿà€Źà€Ÿ (à€žà„à€Ÿà€żà€•à„€ à€•à€ż) (_P)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 +msgid "_Ignore duplicate keypresses (Bounce Keys)" +msgstr "à€Șà„à€šà„à€čà€Ÿà€Șà„à€šà„à€čà€Ÿ à€•à€ż à€Šà€Ÿà€Źà€Čà„à€Żà€Ÿà€ž à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Ÿ (à€Źà€Ÿà€Šà€šà„à€žà„ à€•à€ż) (_I)" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 +msgid "Press and _hold keys to accept them (Slow Keys)" +msgstr "à€žà„à€”à„€à€•à€Ÿà€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€ż à€Šà€Ÿà€Źà€Ÿ à€” à€œà€°à€Ÿ à€”à„‡à€ł à€§à€°à„‚à€š à€ à„‡à€”à€Ÿ (à€čà€łà„ à€•à€ż) (_h)" + +#: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:1 +#| msgid "Accessibility" +msgid "Accessibility settings" +msgstr "à„Čà€•à„à€žà„‡à€žà€żà€Źà€żà€Čà€żà€Ÿà€ż à€žà„‡à€Ÿà€żà€‚à€—à„à€žà„" + +#: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:2 +#| msgid "Accessibility keyboard plugin" +msgid "Accessibility settings plugin" +msgstr "à„Čà€•à„à€žà„‡à€žà€żà€Źà€żà€Čà€żà€Ÿà€ż à€žà„‡à€Ÿà€żà€‚à€—à„à€žà„ à€Șà„à€Čà€—à€‡à€š" + +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 +msgid "Mount Helper" +msgstr "à€źà€Ÿà€Šà€‚à€Ÿ à€čà€Čà„à€Șà„‡à€°" + +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 +msgid "Automount and autorun plugged devices" +msgstr "à€‘à€Ÿà„‹à€źà€Ÿà€Šà€‚à€Ÿ à€” à€‘à€Ÿà„‹à€°à€š à€Șà„à€Čà€—à„à€Ąà„ à€žà€Ÿà€§à€šà„‡" + +#: ../plugins/automount/gsd-automount-manager.c:151 +#, c-format +msgid "Unable to mount %s" +msgstr "%s à€Čà€Ÿ à€źà€Ÿà€Šà€‚à€Ÿ à€•à€°à€Łà„‡ à€…à€¶à€•à„à€Ż" + +#: ../plugins/automount/gsd-automount-manager.c:264 +#, c-format +msgid "Unable to open a folder for %s" +msgstr "%s à€•à€°à„€à€€à€Ÿ à€«à„‹à€Čà„à€Ąà€° à€‰à€˜à€Ąà€Łà„‡ à€…à€¶à€•à„à€Ż" + +#: ../plugins/automount/gsd-autorun.c:340 +msgid "Ask what to do" +msgstr "à€•à€Ÿà€Ż à€•à€°à€Ÿà€Żà€šà„‡ à€€à„‡ à€”à€żà€šà€Ÿà€°à€Ÿ" + +#: ../plugins/automount/gsd-autorun.c:346 +msgid "Do Nothing" +msgstr "à€•à€Ÿà€čà€żà€š à€•à€°à„‚ à€šà€•à€Ÿ" + +#: ../plugins/automount/gsd-autorun.c:352 +#| msgid "Home folder" +msgid "Open Folder" +msgstr "à€«à„‹à€Čà„à€Ąà€° à€‰à€˜à€Ąà€Ÿ" + +#: ../plugins/automount/gsd-autorun.c:495 +#, c-format +msgid "Unable to eject %p" +msgstr "%p à€Źà€Ÿà€čà„‡à€° à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Łà„‡ à€…à€¶à€•à„à€Ż" + +#: ../plugins/automount/gsd-autorun.c:497 +#, c-format +msgid "Unable to unmount %p" +msgstr "%pà€Čà€Ÿ à€źà€Ÿà€Šà€‚à€Ÿ à€…à€¶à€•à„à€Ż à€•à€°à€Łà„‡ à€žà€‚à€­à€Ÿà€”à„à€Ż à€šà€Ÿà€čà„€" + +#: ../plugins/automount/gsd-autorun.c:702 +msgid "You have just inserted an Audio CD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€‘à€Ąà€żà€“ CD à€…à€‚à€€à€°à„à€­à„à€€ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:704 +msgid "You have just inserted an Audio DVD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€‘à€Ąà€żà€“ DVD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:706 +msgid "You have just inserted a Video DVD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€”à„à€čà€żà€Ąà„€à€“ DVD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:708 +msgid "You have just inserted a Video CD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€”à„à€čà€żà€Ąà„€à€“ CD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:710 +msgid "You have just inserted a Super Video CD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€žà„à€Șà€° à€”à„à€čà€żà€Ąà„€à€“ CD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:712 +msgid "You have just inserted a blank CD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€°à€żà€•à€Ÿà€źà„€ CD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:714 +msgid "You have just inserted a blank DVD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€°à€żà€•à€Ÿà€źà„€ DVD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:716 +msgid "You have just inserted a blank Blu-Ray disc." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€°à€żà€•à€Ÿà€źà„€ à€Źà„à€Čà„à€Żà„-à€°à„‡ à€Ąà€żà€žà„à€• à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:718 +msgid "You have just inserted a blank HD DVD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€°à€żà€•à€Ÿà€źà„€ HD DVD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:720 +msgid "You have just inserted a Photo CD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€«à„‹à€Ÿà„‹ CD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:722 +msgid "You have just inserted a Picture CD." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€›à€Ÿà€Żà€Ÿà€šà€żà€€à„à€° CD à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„€ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:724 +msgid "You have just inserted a medium with digital photos." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€Ąà€żà€œà€żà€Ÿà€Č à€«à„‹à€Ÿà„‹à€œà„à€žà€č à€à€• à€źà€żà€Ąà„€à€Żà€ź à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„‡ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:726 +msgid "You have just inserted a digital audio player." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€Ąà€żà€œà€żà€Ÿà€Č à€‘à€Ąà€żà€“ à€”à€Ÿà€Šà€• à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„‡ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:728 +msgid "" +"You have just inserted a medium with software intended to be automatically " +"started." +msgstr "" +"à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€žà„à€”à€Żà€‚ à€žà„à€°à„‚ à€čà„‹à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€žà„‰à€«à„à€Ÿà€”à€°à€žà€č à€à€• à€źà€żà€Ąà„€à€Żà€ź à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„‡ à€†à€čà„‡." + +#. fallback to generic greeting +#: ../plugins/automount/gsd-autorun.c:731 +msgid "You have just inserted a medium." +msgstr "à€€à„à€źà„à€čà„€ à€†à€€à„à€€à€Ÿà€š à€à€• à€źà€żà€Ąà„€à€Żà€ź à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„‡ à€†à€čà„‡." + +#: ../plugins/automount/gsd-autorun.c:733 +msgid "Choose what application to launch." +msgstr "à€•à„‹à€Łà€€à„‡ à„Čà€Șà„à€Čà€żà€•à„‡à€¶à€š à€žà„à€°à„‚ à€•à€°à€Ÿà€Żà€šà„‡ à€€à„‡ à€šà€żà€”à€Ąà€Ÿ." + +#: ../plugins/automount/gsd-autorun.c:742 +#, c-format +msgid "" +"Select how to open \"%s\" and whether to perform this action in the future " +"for other media of type \"%s\"." +msgstr "" +"\"%1$s\" à€•à€žà„‡ à€‰à€˜à€Ąà€Ÿà€Żà€šà„‡ à€” \"%2$s\" à€Șà„à€°à€•à€Ÿà€°à€šà„à€Żà€Ÿ à€źà€żà€Ąà„€à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€­à€”à€żà€·à„à€Żà€Ÿà€€ à€Żà€Ÿ à€Șà„à€°à€•à€Ÿà€°à€šà„€ " +"à€•à„ƒà€€à„€ à€Čà€Ÿà€—à„‚ à€•à€°à€Ÿà€Żà€šà„€ à€€à„‡ à€šà€żà€”à€Ąà€Ÿ." + +#: ../plugins/automount/gsd-autorun.c:769 +msgid "_Always perform this action" +msgstr "à€čà€ż à€•à„ƒà€€à„€ à€šà„‡à€čà€źà„€ à€Čà€Ÿà€—à„‚ à€•à€°à€Ÿ (_A)" + +#: ../plugins/automount/gsd-autorun.c:785 +#| msgid "Eject" +msgid "_Eject" +msgstr "à€Źà€Ÿà€čà„‡à€° à€•à€Ÿà€ąà€Ÿ (_E)" + +#: ../plugins/automount/gsd-autorun.c:790 +msgid "_Unmount" +msgstr "à€źà€Ÿà€Šà€‚à€Ÿ à€…à€¶à€•à„à€Ż à€•à€°à€Ÿ (_U)" + +#: ../plugins/background/background.gnome-settings-plugin.in.h:1 +msgid "Background" +msgstr "à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€" + +#: ../plugins/background/background.gnome-settings-plugin.in.h:2 +msgid "Background plugin" +msgstr "à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€ à€Șà„à€Čà€—à€‡à€š" + +#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:1 +msgid "Clipboard" +msgstr "à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą" + +#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:2 +msgid "Clipboard plugin" +msgstr "à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą à€Șà„à€Čà€—à€‡à€š" + +#: ../plugins/color/color.gnome-settings-plugin.in.h:1 +#: ../plugins/color/gsd-color-manager.c:1757 +msgid "Color" +msgstr "à€°à€‚à€—" + +#: ../plugins/color/color.gnome-settings-plugin.in.h:2 +#| msgid "Clipboard plugin" +msgid "Color plugin" +msgstr "à€°à€‚à€— à€Șà„à€Čà€—à€‡à€š" + +#: ../plugins/color/gsd-color-manager.c:1762 +msgid "Recalibrate now" +msgstr "à€†à€€à„à€€à€Ÿ à€Șà„à€šà€ƒà€•à„…à€Čà€żà€Źà„à€°à„‡à€Ÿ à€•à€°à€Ÿ" + +#. TRANSLATORS: this is when the device has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1804 +msgid "Recalibration required" +msgstr "à€Șà„à€šà€ƒà€•à„…à€Čà€żà€Źà„à€°à„‡à€¶à€š à€†à€”à€¶à„à€Żà€•" + +#. TRANSLATORS: this is when the display has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1816 +#, c-format +msgid "The display '%s' should be recalibrated soon." +msgstr "à€Ąà€żà€žà„à€Șà€Čà„‡ '%s' à€Żà€Ÿà€ž à€Șà€Ÿà€•à€š à€Șà„à€šà€ƒà€•à„…à€Čà€żà€Źà„à€°à„‡à€Ÿ à€•à€°à€Ÿ." + +#. TRANSLATORS: this is when the printer has not been recalibrated in a while +#: ../plugins/color/gsd-color-manager.c:1825 +#, c-format +msgid "The printer '%s' should be recalibrated soon." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€Żà€Ÿà€ž à€Șà€Ÿà€•à€š à€•à„…à€Čà€żà€Źà„à€°à„‡à€Ÿ à€•à€°à€Ÿ." + +#. TRANSLATORS: this is the application name +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 +#| msgid "GNOME Settings Daemon" +msgid "GNOME Settings Daemon Color Plugin" +msgstr "GNOME à€žà„‡à€Ÿà€żà€‚à€—à„à€žà„ à€Ąà€żà€źà€š à€°à€‚à€— à€Șà„à€Čà€—à€‡à€š" + +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2151 +msgid "Color calibration device added" +msgstr "à€°à€‚à€— à€•à„…à€Čà€żà€Źà„à€°à„‡à€¶à€š à€žà€Ÿà€§à€š à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„‡" + +#. TRANSLATORS: this is a sound description +#: ../plugins/color/gsd-color-manager.c:2167 +msgid "Color calibration device removed" +msgstr "à€°à€‚à€— à€•à„…à€Čà€żà€Źà„à€°à„‡à€¶à€š à€žà€Ÿà€§à€š à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Čà„‡" + +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 +msgid "Dummy" +msgstr "à€šà€•à€Čà„à€Č" + +#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 +msgid "Dummy plugin" +msgstr "à€šà€•à€Čà„à€Č à€Șà„à€Čà€—à€‡à€š" + +#: ../plugins/housekeeping/gsd-disk-space.c:332 +#, c-format +#| msgid "Low Disk Space" +msgid "Low Disk Space on \"%s\"" +msgstr "\"%s\" à€”à€° à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€•à€źà„€ à€†à€čà„‡" + +#: ../plugins/housekeeping/gsd-disk-space.c:334 +#, c-format +#| msgid "The volume \"%s\" has only %s disk space remaining." +msgid "" +"The volume \"%s\" has only %s disk space remaining. You may free up some " +"space by emptying the trash." +msgstr "" +"à€”à„‰à€Čà„à€Żà„à€ź \"%s\" à€•à€Ąà„‡ à€«à€•à„à€€ %s à€‰à€°à„à€”à€°à„€à€€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€†à€ąà€łà€Čà„€. à€Ÿà„à€°à„…à€¶ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à„‚à€š à€•à€Ÿà€čà€ż " +"à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à€Łà„‡ à€¶à€•à„à€Ż à€†à€čà„‡." + +#: ../plugins/housekeeping/gsd-disk-space.c:338 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 +#, c-format +msgid "The volume \"%s\" has only %s disk space remaining." +msgstr "à€–à€‚à€Ą \"%s\" à€Żà„‡à€„à„‡ à€«à€•à„à€€ %s à€‰à€°à„à€”à€°à„€à€€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€†à€ąà€łà€Čà„€." + +#. Set up all the window stuff here +#: ../plugins/housekeeping/gsd-disk-space.c:343 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:205 +msgid "Low Disk Space" +msgstr "à€•à€źà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ" + +#: ../plugins/housekeeping/gsd-disk-space.c:345 +#, c-format +#| msgid "This computer has only %s disk space remaining." +msgid "" +"This computer has only %s disk space remaining. You may free up some space " +"by emptying the trash." +msgstr "" +"à€Żà€Ÿ à€žà€‚à€—à€Łà€•à€Ÿà€”à€° à€«à€•à„à€€ %s à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€‰à€°à„à€”à€°à„€à€€ à€†à€čà„‡. à€Ÿà„à€°à„…à€¶ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à„‚à€š à€•à€Ÿà€čà€ż à€œà€Ÿà€—à€Ÿ " +"à€źà„‹à€•à€łà„€ à€•à€°à€Łà„‡ à€¶à€•à„à€Ż à€†à€čà„‡." + +#: ../plugins/housekeeping/gsd-disk-space.c:348 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 +#, c-format +msgid "This computer has only %s disk space remaining." +msgstr "à€Żà€Ÿ à€žà€‚à€—à€Łà€•à€Ÿà€”à€° à€«à€•à„à€€ %s à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€‰à€°à„à€”à€°à„€à€€ à€†à€čà„‡." + +#: ../plugins/housekeeping/gsd-disk-space.c:363 +#| msgid "Low Disk Space" +msgid "Disk space" +msgstr "à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ" + +#: ../plugins/housekeeping/gsd-disk-space.c:370 +#| msgid "Examine..." +msgid "Examine" +msgstr "à€Șà€°à„€à€•à„à€·à€Ł à€•à€°à€Ÿ" + +#: ../plugins/housekeeping/gsd-disk-space.c:378 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:437 +msgid "Empty Trash" +msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à€Ÿ" + +#: ../plugins/housekeeping/gsd-disk-space.c:385 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:452 +msgid "Ignore" +msgstr "à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Ÿ" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 +#| msgid "Don't show any warnings again for this filesystem" +msgid "Don't show any warnings again for this file system" +msgstr "à€Żà€Ÿ à€«à€Ÿà€‡à€Čà€Șà„à€°à€Łà€Ÿà€Čà„€à€žà€Ÿà€ à„€ à€•à„à€ à€Čà€żà€čà€ż à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Šà€Ÿà€–à€”à„‚ à€šà€•à€Ÿ" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:68 +msgid "Don't show any warnings again" +msgstr "à€•à„à€ à€Čà„à€Żà€Ÿà€čà„€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Șà„à€šà„à€čà€Ÿ à€Šà€Ÿà€–à€”à„‚ à€šà€•à€Ÿ" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to another disk or partition." +msgstr "" +"à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à„‚à€š, à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ " +"à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€‡à€€à€° à€Ąà€żà€žà„à€• " +"à€•à€żà€‚à€”à€Ÿ à€Șà€Ÿà€°à„à€Ÿà€żà€¶à€šà€”à€° à€čà€Čà€”à„‚à€š à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to another disk or partition." +msgstr "" +"à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€‡à€€à€° à€Ąà€żà€žà„à€• à€•à€żà€‚à€”à€Ÿ " +"à€Șà€Ÿà€°à„à€Ÿà€żà€¶à€šà€”à€° à€čà€Čà€”à„‚à€š " +"à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to an external disk." +msgstr "" +"à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à„‚à€š, à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ " +"à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€Źà€Ÿà€čà„‡à€° " +"à€Ąà€żà€žà„à€•à€”à€° à€čà€Čà€”à„‚à€š à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to an external disk." +msgstr "" +"à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€Źà€Ÿà€čà„‡à€°à„€à€Č à€Ąà€żà€žà„à€•à€”à€° " +"à€čà€Čà€”à„‚à€š à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• " +"à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:445 +#| msgid "Examine..." +msgid "Examine
" +msgstr "à€”à€żà€¶à„à€Čà„‡à€·à€Ł à€•à€°à€Ÿ..." + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:87 +#, c-format +msgid "" +"Error activating XKB configuration.\n" +"There can be various reasons for that.\n" +"\n" +"If you report this situation as a bug, include the results of\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" +msgstr "" +"XKB à€žà€‚à€°à€šà€šà€Ÿ à€žà„à€°à„‚ à€•à€°à€€à„‡à€”à„‡à€łà„€ à€€à„à€°à„à€Ÿà„€.\n" +"à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€żà€”à€żà€§ à€•à€Ÿà€°à€Łà„‡ à€…à€žà„‚ à€¶à€•à€€à€Ÿà€€.\n" +"\n" +"à€Żà€Ÿà€ž à€Źà€— à€źà„à€čà€Łà„‚à€š à€°à€żà€Șà„‹à€°à„à€Ÿ à€•à„‡à€Čà„à€Żà€Ÿà€ž, à€–à€Ÿà€Čà€żà€Čà€šà„‡ à€Șà€°à€żà€Łà€Ÿà€ź à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à€°à€Ÿ\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:242 +msgid "_Layouts" +msgstr "à€źà€Ÿà€‚à€Ąà€Łà„€ (_L)" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:248 +msgid "Show _Keyboard Layout..." +msgstr "à€•à€żà€Źà„‹à€°à„à€Ą à€źà€Ÿà€‚à€Ąà€Łà„€ à€Šà€Ÿà€–à€”à€Ÿ (_K)..." + +#. translators note: +#. * This is the name of the gnome-control-center "region" panel +#: ../plugins/keyboard/gsd-keyboard-xkb.c:255 +#| msgid "Manage X Settings" +msgid "Region and Language Settings" +msgstr "à€•à„à€·à„‡à€€à„à€° à€” à€­à€Ÿà€·à€Ÿà€‚à€šà„‡ à€žà„‡à€Ÿà€żà€‚à€—à„à€žà„" + +#. TRANSLATORS: wireless keyboard with internal battery +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:585 ../plugins/power/gpm-common.c:872 +#| msgid "Keyboard" +msgid "Keyboard" +msgid_plural "Keyboards" +msgstr[0] "à€•à€żà€Źà„‹à€°à„à€Ą" +msgstr[1] "à€•à€żà€Źà„‹à€°à„à€Ą" + +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 +msgid "Keyboard plugin" +msgstr "à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š" + +#. translators: +#. * The device has been disabled +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1087 +msgid "Disabled" +msgstr "à€…à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź" + +#. translators: +#. * The number of sound outputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1094 +#, c-format +msgid "%u Output" +msgid_plural "%u Outputs" +msgstr[0] "%u à€†à€Šà€Ÿà€Șà„à€Ÿ" +msgstr[1] "%u à€†à€Šà€Ÿà€Șà„à€Ÿà€žà„" + +#. translators: +#. * The number of sound inputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1104 +#, c-format +msgid "%u Input" +msgid_plural "%u Inputs" +msgstr[0] "%u à€‡à€‚à€Șà„à€Ÿ" +msgstr[1] "%u à€‡à€‚à€Șà„à€Ÿà€žà„" + +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1402 +msgid "System Sounds" +msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ" + +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 +msgid "Media keys" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:6 -msgid "Specify a list of mount paths to ignore when they run low on space." -msgstr "à€œà€Ÿà€—à€Ÿ à€•à€źà„€ à€Șà€Ąà€€ à€…à€žà€Čà„à€Żà€Ÿà€ž à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€źà€Ÿà€Šà€‚à€Ÿ à€źà€Ÿà€°à„à€—à€Ÿà€‚à€šà„€ à€žà„‚à€šà„€ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ." +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 +msgid "Media keys plugin" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż à€Șà€Čà„à€—à€‡à€š" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:7 -msgid "" -"Specify a time in minutes. Subsequent warnings for a volume will not appear " -"more often than this period." -msgstr "" -"à€”à„‡à€ł à€źà€żà€šà„€à€Ÿà€Ÿà€‚à€€ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ. à€–à€‚à€Ąà€•à€°à„€à€€à€Ÿ à€Żà€Ÿ à€•à€Ÿà€Čà€Ÿà€”à€§à„€à€Șà„‡à€•à„à€·à€Ÿ à€œà€Ÿà€žà„à€€à€”à„‡à€łà„€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€”à€Ÿà€°à€‚à€”à€Ÿà€° " -"à€†à€ąà€łà€Łà€Ÿà€° à€šà€Ÿà€čà„€." +#: ../plugins/mouse/gsd-mouse-manager.c:863 +msgid "Could not enable mouse accessibility features" +msgstr "à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€”à„ˆà€¶à€żà€·à„à€Ÿà„à€Żà„‡ à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ(_E)" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:8 +#: ../plugins/mouse/gsd-mouse-manager.c:865 +#| msgid "" +#| "Mouse accessibility requires mousetweaks to be installed on your system." msgid "" -"Specify an amount in GB. If the amount of free space is more than this, no " -"warning will be shown" +"Mouse accessibility requires Mousetweaks to be installed on your system." msgstr "" -"à€Șà„à€°à€źà€Ÿà€Ł GB à€źà€§à„à€Żà„‡ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ. à€źà„‹à€•à€łà„€ à€œà€Ÿà€—à€Ÿ à€Żà€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€œà€Ÿà€žà„à€€ à€…à€žà€Čà„à€Żà€Ÿà€ž, à€•à„à€ à€Čà€żà€čà„€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ " -"à€Šà€Ÿà€–à€”à€Čà„€ à€œà€Ÿà€Łà€Ÿà€° à€šà€Ÿà€čà„€" +"à€źà€Ÿà€Šà€ž à„Čà€•à„à€žà„‡à€žà€żà€Źà€żà€Čà€żà€Ÿà€żà€•à€°à„€à€€à€Ÿ à€źà€Ÿà€Šà€žà€Ÿà„à€”à€żà€•à„à€žà„ à€Șà„à€°à€Łà€Ÿà€Čà„€à€”à€° à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€…à€žà€Łà„‡ à€†à€”à€¶à„à€Żà€• à€†à€čà„‡." -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:9 -msgid "" -"Specify the percentage that the free disk space should reduce by before " -"issuing a subsequent warning" -msgstr "à€Șà€°à€žà„à€Șà€° à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Šà€Ÿà€–à€”à€Łà„à€Żà€Ÿà€Șà„‚à€°à„à€”à„€ à€źà„‹à€•à€łà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€•à€źà„€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€•à€°à€Ÿ" +#. TRANSLATORS: wireless mice with internal batteries +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:581 ../plugins/power/gpm-common.c:848 +#| msgid "Mouse" +msgid "Mouse" +msgid_plural "Mice" +msgstr[0] "à€źà€Ÿà€Šà€ž" +msgstr[1] "à€źà€Ÿà€Šà€ž" -#: ../data/apps_gnome_settings_daemon_housekeeping.schemas.in.h:10 -msgid "Subsequent free percentage notify threshold" -msgstr "à€Șà€°à€žà„à€Șà€° à€°à€żà€źà€Ÿà€•à„€ à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€žà„‚à€šà€šà€Ÿ à€źà€°à„à€Żà€Ÿà€Šà€Ÿ" - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:1 -msgid "Binding to eject an optical disk." -msgstr "à€‘à€Șà€Ÿà„€à€•à€Č à€Ąà€żà€žà„à€• à€Źà€Ÿà€čà„‡à€° à€•à€Ÿà€ąà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 +msgid "Mouse plugin" +msgstr "à€źà€Ÿà€Šà€ž à€Șà„à€Čà€—à€‡à€š" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:2 -#, fuzzy -msgid "Binding to enable or disable the touchpad." -msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€”à€Ÿà€ąà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#: ../plugins/power/gpm-common.c:47 +msgid "Unknown time" +msgstr "à€…à€Șà€°à€żà€šà„€à€€ à€”à„‡à€ł" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:3 -msgid "Binding to launch the calculator." -msgstr "à€—à€Łà€šà€Ÿà€Żà€‚à€€à„à€° à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#: ../plugins/power/gpm-common.c:52 +#, c-format +msgid "%i minute" +msgid_plural "%i minutes" +msgstr[0] "%i à€źà€żà€šà€żà€Ÿ" +msgstr[1] "%i à€źà€żà€šà€żà€Ÿà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:4 -msgid "Binding to launch the email client." -msgstr "à€ˆà€źà„‡à€Č à€•à„à€Čà€Ÿà€à€‚à€Ÿ à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#: ../plugins/power/gpm-common.c:62 +#, c-format +msgid "%i hour" +msgid_plural "%i hours" +msgstr[0] "%i à€€à€Ÿà€ž" +msgstr[1] "%i à€€à€Ÿà€ž" + +#. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" +#. * Swap order with "%2$s %2$i %1$s %1$i if needed +#: ../plugins/power/gpm-common.c:68 +#, c-format +msgid "%i %s %i %s" +msgstr "%i %s %i %s" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:5 -msgid "Binding to launch the help browser." -msgstr "à€źà€Šà€€ à€Źà„à€°à€Ÿà€Šà€œà€° à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#: ../plugins/power/gpm-common.c:69 +msgid "hour" +msgid_plural "hours" +msgstr[0] "à€€à€Ÿà€ž" +msgstr[1] "à€€à€Ÿà€ž" + +#: ../plugins/power/gpm-common.c:70 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "à€źà€żà€šà€żà€Ÿ" +msgstr[1] "à€źà€żà€šà€żà€Ÿà„‡" + +#. TRANSLATORS: The laptop battery is charged, and we know a time. +#. * The parameter is the time, e.g. 7 hours 6 minutes +#: ../plugins/power/gpm-common.c:317 +#, c-format +msgid "provides %s laptop runtime" +msgstr "%s à€Čà„…à€Șà€Ÿà„‰à€Ș à€°à€šà€Ÿà€Ÿà€‡à€ź à€Șà„à€°à€”à€€à„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:6 -msgid "Binding to launch the media player." -msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: the device is discharging, and we have a time remaining +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. 7 hours 6 minutes +#: ../plugins/power/gpm-common.c:328 +#, c-format +msgid "%s %s remaining" +msgstr "%s %s à€‰à€°à„à€”à€°à€żà€€" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:7 -msgid "Binding to launch the search tool." -msgstr "à€¶à„‹à€§ à€žà€Ÿà€§à€š à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: device is charging, and we have a time to full and a percentage +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. "7 hours 6 minutes" +#. TRANSLATORS: device is charging, and we have a time to full and a percentage. +#. * The first parameter is the device type, e.g. "Laptop battery" and +#. * the second is the time, e.g. "7 hours 6 minutes" +#: ../plugins/power/gpm-common.c:349 ../plugins/power/gpm-common.c:366 +#, c-format +msgid "%s %s until charged" +msgstr "à€šà€Ÿà€°à„à€œ à€čà„‹à€ˆà€Șà€°à„à€Żà€‚à€€ %s %s" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:8 -msgid "Binding to launch the web browser." -msgstr "à€”à„‡à€Ź à€Źà„à€°à€Ÿà€Šà€œà€° à€Šà€Ÿà€–à€Čà€š à€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: the device is charging, and we have a time to full and empty. +#. * The parameter is a time string, e.g. "7 hours 6 minutes" +#: ../plugins/power/gpm-common.c:356 +#, c-format +msgid "provides %s battery runtime" +msgstr "%s à€Źà„…à€Ÿà€°à€ż à€°à€šà€Ÿà€Ÿà€‡à€ź à€Șà„à€°à€”à€€à„‹" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:9 -msgid "Binding to lock the screen." -msgstr "à€Șà€Ąà€Šà€Ÿ à€•à„à€Čà„‚à€Șà€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: the type of data, e.g. Laptop battery +#: ../plugins/power/gpm-common.c:447 +msgid "Product:" +msgstr "à€‰à€€à„à€Șà€Ÿà€Šà€š:" + +#. TRANSLATORS: device is missing +#. TRANSLATORS: device is charged +#. TRANSLATORS: device is charging +#. TRANSLATORS: device is discharging +#: ../plugins/power/gpm-common.c:451 ../plugins/power/gpm-common.c:454 +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:460 +msgid "Status:" +msgstr "à€žà„à€„à€żà€€à„€:" + +#: ../plugins/power/gpm-common.c:451 +msgid "Missing" +msgstr "à€†à€ąà€łà€Čà„‡ à€šà€Ÿà€čà„€" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:454 ../plugins/power/gpm-common.c:723 +msgid "Charged" +msgstr "à€šà€Ÿà€°à„à€œ à€à€Ÿà€Čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:711 +msgid "Charging" +msgstr "à€šà€Ÿà€°à„à€œ à€•à€°à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:460 ../plugins/power/gpm-common.c:715 +msgid "Discharging" +msgstr "à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€•à€°à€€ à€†à€čà„‡" + +#. TRANSLATORS: percentage +#: ../plugins/power/gpm-common.c:465 +msgid "Percentage charge:" +msgstr "à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à€ż à€šà€Ÿà€°à„à€œ:" + +#. TRANSLATORS: manufacturer +#: ../plugins/power/gpm-common.c:469 +msgid "Vendor:" +msgstr "à€”à€żà€•à„à€°à„‡à€€à€Ÿ:" + +#. TRANSLATORS: how the battery is made, e.g. Lithium Ion +#: ../plugins/power/gpm-common.c:474 +msgid "Technology:" +msgstr "à€€à€‚à€€à„à€°:" + +#. TRANSLATORS: serial number of the battery +#: ../plugins/power/gpm-common.c:478 +msgid "Serial number:" +msgstr "à€žà€żà€°à€żà€…à€Č à€•à„à€°à€źà€Ÿà€‚à€•:" + +#. TRANSLATORS: model number of the battery +#: ../plugins/power/gpm-common.c:482 +msgid "Model:" +msgstr "à€źà„‰à€Ąà€Č:" + +#. TRANSLATORS: time to fully charged +#: ../plugins/power/gpm-common.c:487 +msgid "Charge time:" +msgstr "à€šà€Ÿà€°à„à€œ à€”à„‡à€ł:" + +#. TRANSLATORS: time to empty +#: ../plugins/power/gpm-common.c:493 +msgid "Discharge time:" +msgstr "à€Ąà€żà€žà€šà€Ÿà€°à„à€œ à€”à„‡à€ł:" + +#. TRANSLATORS: Excellent, Good, Fair and Poor are all related to battery Capacity +#: ../plugins/power/gpm-common.c:500 +msgid "Excellent" +msgstr "à€‰à€€à„à€•à„ƒà€·à„à€Ÿ" + +#: ../plugins/power/gpm-common.c:502 +msgid "Good" +msgstr "à€šà€Ÿà€‚à€—à€Čà„‡" + +#: ../plugins/power/gpm-common.c:504 +msgid "Fair" +msgstr "à€žà„à€°à„‡à€–" + +#: ../plugins/power/gpm-common.c:506 +msgid "Poor" +msgstr "à€…à€¶à€•à„à€€" + +#: ../plugins/power/gpm-common.c:510 +msgid "Capacity:" +msgstr "à€•à„à€·à€źà€€à€Ÿ:" + +#: ../plugins/power/gpm-common.c:516 ../plugins/power/gpm-common.c:541 +msgid "Current charge:" +msgstr "à€žà€Ÿà€§à„à€Żà€Ÿà€šà„‡ à€šà€Ÿà€°à„à€œ:" + +#: ../plugins/power/gpm-common.c:522 +msgid "Last full charge:" +msgstr "à€¶à„‡à€”à€Ÿà€šà„‡ à€žà€‚à€Șà„‚à€°à„à€Ł à€šà€Ÿà€°à„à€œ:" + +#: ../plugins/power/gpm-common.c:528 ../plugins/power/gpm-common.c:546 +msgid "Design charge:" +msgstr "à€Ąà€żà€œà€Ÿà€‡à€š à€šà€Ÿà€°à„à€œ:" + +#: ../plugins/power/gpm-common.c:533 +msgid "Charge rate:" +msgstr "à€šà€Ÿà€°à„à€œ à€Šà€°:" + +#. TRANSLATORS: system power cord +#: ../plugins/power/gpm-common.c:565 ../plugins/power/gpm-common.c:757 +msgid "AC adapter" +msgid_plural "AC adapters" +msgstr[0] "AC à€…à€Ąà„…à€Șà„à€Ÿà€°" +msgstr[1] "AC à€…à€Ąà„…à€Șà„à€Ÿà€°à„à€žà„" + +#. TRANSLATORS: laptop primary battery +#: ../plugins/power/gpm-common.c:569 ../plugins/power/gpm-common.c:793 +msgid "Laptop battery" +msgid_plural "Laptop batteries" +msgstr[0] "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż" +msgstr[1] "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€żà€œà„" + +#. TRANSLATORS: battery-backed AC power source +#: ../plugins/power/gpm-common.c:573 ../plugins/power/gpm-common.c:817 +msgid "UPS" +msgid_plural "UPSs" +msgstr[0] "UPS" +msgstr[1] "UPSs" + +#. TRANSLATORS: a monitor is a device to measure voltage and current +#: ../plugins/power/gpm-common.c:577 ../plugins/power/gpm-common.c:824 +msgid "Monitor" +msgid_plural "Monitors" +msgstr[0] "à€źà„‰à€šà€żà€Ÿà€°" +msgstr[1] "à€źà„‰à€šà€żà€Ÿà€°à„à€žà„" + +#. TRANSLATORS: portable device +#: ../plugins/power/gpm-common.c:589 ../plugins/power/gpm-common.c:896 +msgid "PDA" +msgid_plural "PDAs" +msgstr[0] "PDA" +msgstr[1] "PDAs" + +#. TRANSLATORS: cell phone (mobile...) +#: ../plugins/power/gpm-common.c:593 ../plugins/power/gpm-common.c:920 +msgid "Cell phone" +msgid_plural "Cell phones" +msgstr[0] "à€žà„‡à€Č à€«à„‹à€š" +msgstr[1] "à€žà„‡à€Č à€«à„‹à€šà„à€žà„" + +#. TRANSLATORS: media player, mp3 etc +#: ../plugins/power/gpm-common.c:598 ../plugins/power/gpm-common.c:945 +#| msgid "Launch media player" +msgid "Media player" +msgid_plural "Media players" +msgstr[0] "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€•" +msgstr[1] "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€•à„‡" + +#. TRANSLATORS: tablet device +#: ../plugins/power/gpm-common.c:602 ../plugins/power/gpm-common.c:969 +msgid "Tablet" +msgid_plural "Tablets" +msgstr[0] "à€Ÿà„…à€Źà€Čà„‡à€Ÿ" +msgstr[1] "à€Ÿà„…à€Źà€Čà„‡à€Ÿà€žà„" + +#. TRANSLATORS: tablet device +#: ../plugins/power/gpm-common.c:606 ../plugins/power/gpm-common.c:993 +msgid "Computer" +msgid_plural "Computers" +msgstr[0] "à€žà€‚à€—à€Łà€•" +msgstr[1] "à€žà€‚à€—à€Łà€•" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:670 +msgid "Lithium Ion" +msgstr "à€Čà€żà€„à€żà€Żà€ź à€†à€Żà€š" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:674 +msgid "Lithium Polymer" +msgstr "à€Čà€żà€„à€żà€Żà€ź à€Șà„‰à€Čà€żà€źà€°" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:678 +msgid "Lithium Iron Phosphate" +msgstr "à€Čà€żà€„à€żà€Żà€ź à€†à€Żà€š à€«à„‰à€žà€«à„‡à€Ÿ" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:682 +msgid "Lead acid" +msgstr "à€Čà„‡à€Ą à„Čà€žà€żà€Ą" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:686 +msgid "Nickel Cadmium" +msgstr "à€šà€żà€•à€Č à€•à„…à€Ąà€źà€żà€Żà€ź" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:690 +msgid "Nickel metal hydride" +msgstr "à€šà€żà€•à€Č à€źà„‡à€Ÿà€Č à€čà€Ÿà€Żà€Ąà„à€°à€Ÿà€‡à€Ą" + +#. TRANSLATORS: battery technology +#: ../plugins/power/gpm-common.c:694 +msgid "Unknown technology" +msgstr "à€…à€Șà€°à€żà€šà„€à€€ à€€à€‚à€€à„à€°" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:719 +#| msgid "Empty Trash" +msgid "Empty" +msgstr "à€°à€żà€•à€Ÿà€źà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:727 +msgid "Waiting to charge" +msgstr "à€šà€Ÿà€°à„à€œà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Ÿ à€Șà€čà€Ÿà€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:731 +msgid "Waiting to discharge" +msgstr "à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Ÿ à€Șà€čà€Ÿà€€ à€†à€čà„‡" + +#. TRANSLATORS: device not present +#: ../plugins/power/gpm-common.c:765 +msgid "Laptop battery not present" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€‰à€Șà€Čà€Źà„à€§ à€šà€Ÿà€čà„€" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:769 +msgid "Laptop battery is charging" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€šà€Ÿà€čà„€" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:773 +msgid "Laptop battery is discharging" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€Ąà€żà€žà€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€šà€Ÿà€čà„€" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:777 +msgid "Laptop battery is empty" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€°à€żà€•à€Ÿà€źà„€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:781 +msgid "Laptop battery is charged" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€šà€Ÿà€°à„à€œ à€à€Ÿà€Čà„€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:785 +msgid "Laptop battery is waiting to charge" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:789 +msgid "Laptop battery is waiting to discharge" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€Łà„à€Żà€Ÿà€ž à€”à€Ÿà€Ÿ à€Șà€čà€Ÿà€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:801 +msgid "UPS is charging" +msgstr "UPS à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:805 +msgid "UPS is discharging" +msgstr "UPS à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:809 +msgid "UPS is empty" +msgstr "UPS à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:813 +msgid "UPS is charged" +msgstr "UPS à€šà€Ÿà€°à„à€œà€Ąà„ à€à€Ÿà€Čà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:832 +#| msgid "Mouse plugin" +msgid "Mouse is charging" +msgstr "à€źà€Ÿà€Šà€ž à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:836 +msgid "Mouse is discharging" +msgstr "à€źà€Ÿà€Šà€ž à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:840 +#| msgid "Mouse keys" +msgid "Mouse is empty" +msgstr "à€źà€Ÿà€Šà€ž à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:844 +msgid "Mouse is charged" +msgstr "à€źà€Ÿà€Šà€ž à€šà€Ÿà€°à„à€œà€Ąà„ à€à€Ÿà€Čà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:856 +#| msgid "Keyboard plugin" +msgid "Keyboard is charging" +msgstr "à€•à€żà€Źà„‹à€°à„à€Ą à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:860 +#| msgid "Keyboard plugin" +msgid "Keyboard is discharging" +msgstr "à€•à€żà€Źà„‹à€°à„à€Ą à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:864 +#| msgid "Keyboard" +msgid "Keyboard is empty" +msgstr "à€•à€żà€Źà„‹à€°à„à€Ą à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:868 +msgid "Keyboard is charged" +msgstr "à€•à€żà€Źà„‹à€°à„à€Ą à€šà€Ÿà€°à„à€œ à€à€Ÿà€Čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:880 +msgid "PDA is charging" +msgstr "PDA à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:884 +msgid "PDA is discharging" +msgstr "PDA à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:888 +msgid "PDA is empty" +msgstr "PDA à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:892 +msgid "PDA is charged" +msgstr "PDA à€šà€Ÿà€°à„à€œà€Ąà„ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:904 +msgid "Cell phone is charging" +msgstr "à€žà„‡à€Č à€«à„‹à€š à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:908 +msgid "Cell phone is discharging" +msgstr "à€žà„‡à€Č à€«à„‹à€š à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:912 +msgid "Cell phone is empty" +msgstr "à€žà„‡à€Č à€«à„‹à€š à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:916 +msgid "Cell phone is charged" +msgstr "à€žà„‡à€Č à€«à„‹à€š à€šà€Ÿà€°à„à€œà€Ąà„ à€à€Ÿà€Čà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:929 +msgid "Media player is charging" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:933 +msgid "Media player is discharging" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€Ąà€żà€žà€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:937 +msgid "Media player is empty" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:941 +msgid "Media player is charged" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€šà€Ÿà€°à„à€œ à€•à„‡à€Čà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:953 +msgid "Tablet is charging" +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿ à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:957 +msgid "Tablet is discharging" +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿ à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:961 +msgid "Tablet is empty" +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿ à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:965 +msgid "Tablet is charged" +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿ à€šà€Ÿà€°à„à€œ à€à€Ÿà€Čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:977 +msgid "Computer is charging" +msgstr "à€žà€‚à€—à€Łà€• à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:981 +msgid "Computer is discharging" +msgstr "à€žà€‚à€—à€Łà€• à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:985 +msgid "Computer is empty" +msgstr "à€žà€‚à€—à€Łà€• à€°à€żà€•à€Ÿà€źà„‡" + +#. TRANSLATORS: battery state +#: ../plugins/power/gpm-common.c:989 +msgid "Computer is charged" +msgstr "à€žà€‚à€—à€Łà€• à€šà€Ÿà€°à„à€œ à€à€Ÿà€Čà„‡ à€†à€čà„‡" + +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 +msgid "Battery may be recalled" +msgstr "à€Źà„…à€Ÿà€°à€żà€Čà€Ÿ à€°à€żà€•à„‰à€Č à€•à€°à€Łà„‡ à€¶à€•à„à€Ż" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:10 -msgid "Binding to log out." -msgstr "à€Źà€Ÿà€čà„‡à€° à€Șà€Ąà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#: ../plugins/power/gsd-power-manager.c:994 +#, c-format +msgid "" +"A battery in your computer may have been recalled by %s and you may be at " +"risk." +msgstr "à€žà€‚à€—à€Łà€•à€Ÿà€€à„€à€Č à€Źà„…à€Ÿà€°à„€ %s à€€à€°à„à€«à„‡ à€°à€żà€•à„‰à€Č à€à€Ÿà€Čà„€ à€…à€žà€Ÿà€”à„€ à€” à€§à„‹à€•à€Ÿ à€šà€żà€°à„à€źà€Ÿà€Ł à€čà„‹à€Š à€¶à€•à€€à„‹." + +#: ../plugins/power/gsd-power-manager.c:997 +msgid "For more information visit the battery recall website." +msgstr "à€…à€§à€żà€• à€źà€Ÿà€čà€żà€€à„€à€•à€°à„€à€€à€Ÿ à€Źà„…à€Ÿà€°à€ż à€°à€żà€•à„‰à€Č à€žà€‚à€•à„‡à€€à€žà„à€„à€łà€Ÿà€•à€°à„€à€€à€Ÿ à€­à„‡à€Ÿ à€Šà„à€Żà€Ÿ." + +#. TRANSLATORS: button text, visit the manufacturers recall website +#: ../plugins/power/gsd-power-manager.c:1008 +msgid "Visit recall website" +msgstr "à€°à€żà€•à„‰à€Č à€žà€‚à€•à„‡à€€à€žà„à€„à€łà€Ÿà€Čà€Ÿ à€­à„‡à€Ÿ à€Šà„à€Żà€Ÿ" + +#. TRANSLATORS: button text, do not show this bubble again +#: ../plugins/power/gsd-power-manager.c:1012 +#| msgid "_Do not show this message again" +msgid "Do not show me this again" +msgstr "à€źà€Čà€Ÿ à€čà„‡ à€Șà„à€šà€ƒ à€Šà€Ÿà€–à€”à„‚ à€šà€•à€Ÿ" + +#. TRANSLATORS: UPS is now discharging +#: ../plugins/power/gsd-power-manager.c:1223 +msgid "UPS Discharging" +msgstr "UPS à€Ąà€żà€žà„à€šà€Ÿà€°à„à€œ à€čà„‹à€€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:11 -msgid "Binding to lower the system volume." -msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€•à€źà„€ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1228 +#, c-format +msgid "%s of UPS backup power remaining" +msgstr "UPS à€Źà„…à€•à€…à€Ș à€Șà€Ÿà€”à€°à€šà„‡ %s à€‰à€°à„à€”à€°à€żà€€" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:12 -msgid "Binding to mute the system volume." -msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€Șà„‚à€°à„à€Łà€Șà€Łà„‡ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: this is the notification application name +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 +#: ../plugins/power/power.gnome-settings-plugin.in.h:1 +msgid "Power" +msgstr "à€Șà€Ÿà€”à€°" + +#. TRANSLATORS: laptop battery low, and we only have one battery +#: ../plugins/power/gsd-power-manager.c:1342 +msgid "Battery low" +msgstr "à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" + +#. TRANSLATORS: laptop battery low, and we have more than one kind of battery +#: ../plugins/power/gsd-power-manager.c:1345 +msgid "Laptop battery low" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€•à€°à€Ÿ" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:13 -msgid "Binding to open the Home folder." -msgstr "à€źà„à€–à„à€Ż à€žà€‚à€šà€Żà„€à€•à€Ÿ à€‰à€˜à€ąà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1351 +#, c-format +msgid "Approximately %s remaining (%.0f%%)" +msgstr "à€…à€‚à€Šà€Ÿà€œà„‡ %s à€‰à€°à„à€”à€°à€żà€€ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:14 -msgid "Binding to pause playback." -msgstr "à€Șà„à€Čà„‡à€Źà„…à€• à€žà„à€€à€Źà„à€§ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: UPS is starting to get a little low +#: ../plugins/power/gsd-power-manager.c:1355 +msgid "UPS low" +msgstr "UPS à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:15 -msgid "Binding to raise the system volume." -msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€”à€Ÿà€ąà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: tell the user how much time they have got +#: ../plugins/power/gsd-power-manager.c:1359 +#, c-format +msgid "Approximately %s of remaining UPS backup power (%.0f%%)" +msgstr "à€…à€‚à€Šà€Ÿà€œà„‡ à€‰à€°à„à€”à€°à€żà€€ %s à€”à„‡à€ł, à€‰à€°à„à€”à€°à€żà€€ UPS à€Źà„…à€•à€…à€Ș à€Șà€Ÿà€”à€°à€šà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:16 -msgid "Binding to skip to next track." -msgstr "à€Șà„à€ąà€šà„€ à€—à€Ÿà€Łà„€ à€”à€—à€łà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: mouse is getting a little low +#. TRANSLATORS: the mouse battery is very low +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 +msgid "Mouse battery low" +msgstr "à€źà€Ÿà€Šà€žà€šà„€ à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:17 -msgid "Binding to skip to previous track." -msgstr "à€Șà„‚à€°à„à€”à„€à€šà„‡ à€—à€Ÿà€Łà„€ à€”à€—à€łà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1366 +#, c-format +msgid "Wireless mouse is low in power (%.0f%%)" +msgstr "à€”à€Ÿà€Żà€°à€Čà„‡à€ž à€źà€Ÿà€Šà€žà€šà„‡ à€Șà€Ÿà€”à€° à€•à€źà„€ à€†à€čà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:18 -msgid "Binding to start playback (or toggle play/pause)." -msgstr "à€Șà„à€Čà„‡à€Źà„…à€• à€šà€Ÿà€Čà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€ (à€•à€żà€‚à€”à€Ÿ à€šà€Ÿà€Čà€”à€Ÿ/à€žà„à€€à€Źà„à€§ à€Źà€Šà€Č à€Čà€Ÿà€—à„‚ à€•à€°à€Ÿ)." +#. TRANSLATORS: keyboard is getting a little low +#. TRANSLATORS: the keyboard battery is very low +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 +msgid "Keyboard battery low" +msgstr "à€•à€żà€Źà„‹à€°à„à€Ą à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:19 -msgid "Binding to stop playback." -msgstr "à€Șà„à€Čà„‡à€Źà„…à€• à€„à€Ÿà€‚à€Źà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1373 +#, c-format +msgid "Wireless keyboard is low in power (%.0f%%)" +msgstr "à€”à€Ÿà€Żà€°à€Čà„‡à€ž à€•à€żà€Źà„‹à€°à„à€Ąà€šà„€ à€Șà€Ÿà€”à€° à€•à€źà„€ à€†à€čà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:20 -msgid "Eject" -msgstr "à€Źà€Ÿà€čà„‡à€° à€•à€Ÿà€ąà€Ÿ" +#. TRANSLATORS: PDA is getting a little low +#. TRANSLATORS: the PDA battery is very low +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 +msgid "PDA battery low" +msgstr "PDA à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:21 -msgid "Home folder" -msgstr "à€źà„à€–à„à€Ż à€žà€‚à€šà€Żà„€à€•à€Ÿ" +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1380 +#, c-format +msgid "PDA is low in power (%.0f%%)" +msgstr "PDA à€šà„€ à€Șà€Ÿà€”à€° à€•à€źà„€ à€†à€čà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:22 -msgid "Launch calculator" -msgstr "à€—à€Łà€šà€Żà€‚à€€à„à€° à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" +#. TRANSLATORS: cell phone (mobile) is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 +msgid "Cell phone battery low" +msgstr "à€žà„‡à€Č à€«à„‹à€šà€šà„€ à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:23 -msgid "Launch email client" -msgstr "à€ˆà€źà„‡à€Č à€•à„à€Čà€Ÿà€à€‚à€Ÿ à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1387 +#, c-format +msgid "Cell phone is low in power (%.0f%%)" +msgstr "à€žà„‡à€Č à€«à„‹à€šà€šà„‡ à€Șà€Ÿà€”à€° à€•à€źà„€ à€†à€čà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:24 -msgid "Launch help browser" -msgstr "à€źà€Šà€€ à€Źà„à€°à€Ÿà€Šà€œà€° à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" +#. TRANSLATORS: media player, e.g. mp3 is getting a little low +#: ../plugins/power/gsd-power-manager.c:1392 +msgid "Media player battery low" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€•à€Ÿà€šà„€ à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:25 -msgid "Launch media player" -msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€• à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1395 +#, c-format +msgid "Media player is low in power (%.0f%%)" +msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€Șà„à€Čà„‡à€Żà€°à€šà„‡ à€Șà€Ÿà€”à€° à€•à€źà„€ à€†à€čà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:26 -msgid "Launch web browser" -msgstr "à€”à„‡à€Ź à€Źà„à€°à€Ÿà€Šà€° à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" +#. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 +msgid "Tablet battery low" +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿ à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:27 -msgid "Lock screen" -msgstr "à€Șà€Ąà€Šà€Ÿ à€•à„à€Čà„‚à€Ș à€Źà€‚à€Š à€•à€°à€Ÿ" +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1402 +#, c-format +msgid "Tablet is low in power (%.0f%%)" +msgstr "à€Ÿà„…à€Źà€Čà„‡à€Ÿà€šà„‡ à€Șà€Ÿà€”à€° à€•à€źà„€ à€†à€čà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:28 -msgid "Log out" -msgstr "à€Čà„‰à€— à€†à€‰à€Ÿ" +#. TRANSLATORS: computer, e.g. ipad is getting a little low +#. TRANSLATORS: the cell battery is very low +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 +msgid "Attached computer battery low" +msgstr "à€œà„‹à€Ąà€Čà„‡à€Čà„à€Żà€Ÿ à€žà€‚à€—à€Łà€•à€Ÿà€šà„€ à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:29 -msgid "Next track" -msgstr "à€Șà„à€ąà€šà„‡ à€—à€Ÿà€Łà„€" +#. TRANSLATORS: tell user more details +#: ../plugins/power/gsd-power-manager.c:1409 +#, c-format +msgid "Attached computer is low in power (%.0f%%)" +msgstr "à€œà„‹à€Ąà€Čà„‡à€Čà„à€Żà€Ÿ à€žà€‚à€—à€Łà€•à€Ÿà€šà„€ à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡ (%.0f%%)" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:30 -msgid "Pause playback" -msgstr "à€†à€”à€Ÿà€œ à€žà„à€€à€Źà„à€§ à€•à€°à€Ÿ" +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:1446 +msgid "Battery is low" +msgstr "à€Źà„…à€Ÿà€°à€ż à€•à€źà„€ à€†à€čà„‡" + +#. TRANSLATORS: laptop battery critically low, and only have one kind of battery +#: ../plugins/power/gsd-power-manager.c:1488 +msgid "Battery critically low" +msgstr "à€Źà„…à€Ÿà€°à€ż à€—à€‚à€­à„€à€°à€°à€żà€€à„à€Żà€Ÿ à€•à€źà„€ à€†à€čà„‡" + +#. TRANSLATORS: laptop battery critically low, and we have more than one type of battery +#. TRANSLATORS: laptop battery is really, really, low +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 +msgid "Laptop battery critically low" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€Źà„…à€Ÿà€°à€ż à€—à€‚à€­à„€à€°à€°à€żà€€à„à€Żà€Ÿ à€•à€źà„€ à€†à€čà„‡" + +#. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything +#: ../plugins/power/gsd-power-manager.c:1500 +msgid "Plug in your AC adapter to avoid losing data." +msgstr "à€Ąà€Ÿà€Ÿà€Ÿ à€—à€źà€”à€Łà„à€Żà€Ÿà€Șà€Ÿà€žà„‚à€š à€°à„‹à€–à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ AC à€…à€Ąà„…à€Șà„à€Ÿà€° à€œà„‹à€Ąà€Ÿ." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:31 -msgid "Play (or play/pause)" -msgstr "à€šà€Ÿà€Čà€”à€Ÿ (à€•à€żà€‚à€”à€Ÿ à€šà€Ÿà€Čà€”à€Ÿ/à€žà„à€€à€Źà„à€§)" +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1504 +#, c-format +msgid "Computer will suspend very soon unless it is plugged in." +msgstr "à€Șà„à€Čà€— à€‡à€š à€•à„‡à€Čà„à€Żà€Ÿà€¶à€żà€”à€Ÿà€Ż à€žà€‚à€—à€Łà€• à€Șà€Ÿà€•à€Ł à€žà€žà„à€Șà„‡à€‚à€Ą à€čà„‹à€ˆà€Č." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:32 -msgid "Previous track" -msgstr "à€Șà„‚à€°à„à€”à„€à€šà„‡ à€—à€Ÿà€Łà„€" +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1508 +#, c-format +msgid "Computer will hibernate very soon unless it is plugged in." +msgstr "à€Șà„à€Čà€— à€‡à€š à€•à„‡à€Čà„à€Żà€Ÿà€¶à€żà€”à€Ÿà€Ż à€žà€‚à€—à€Łà€• à€Șà€Ÿà€•à€Łà€š à€čà€Ÿà€‡à€Źà€°à€šà„‡à€Ÿ à€čà„‹à€ˆà€Č." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:33 -msgid "Search" -msgstr "à€¶à„‹à€§à€Ÿ" +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1512 +#, c-format +msgid "Computer will shutdown very soon unless it is plugged in." +msgstr "à€Șà„à€Čà€—à€‡ à€‡à€š à€•à„‡à€Čà„à€Żà€Ÿà€¶à€żà€”à€Ÿà€Ż à€žà€‚à€—à€Łà€• à€Șà€Ÿà€•à€Ł à€Źà€‚à€Š à€čà„‹à€ˆà€Č." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:34 -msgid "Stop playback" -msgstr "à€—à€Ÿà€Łà„€ à€„à€Ÿà€‚à€Źà€”à€Ÿ" +#. TRANSLATORS: the UPS is very low +#. TRANSLATORS: UPS is really, really, low +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 +msgid "UPS critically low" +msgstr "UPS à€—à€‚à€­à„€à€°à€°à€żà€€à„à€Żà€Ÿ à€•à€źà„€ à€†à€čà„‡" -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:35 -msgid "Toggle touchpad" +#. TRANSLATORS: give the user a ultimatum +#: ../plugins/power/gsd-power-manager.c:1523 +#, c-format +msgid "" +"Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " +"your computer to avoid losing data." msgstr "" +"à€…à€‚à€Šà€Ÿà€œà„‡ %s à€Źà€Ÿà€•à„€, à€‰à€°à„à€”à€°à€żà€€ UPS à€Șà€Ÿà€”à€°à€Șà„ˆà€•à„€ (%.0f%%). à€Ąà€Ÿà€Ÿà€Ÿ à€—à€źà€”à€Łà„‡ à€Ÿà€Ÿà€łà€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ " +"à€žà€‚à€—à€Łà€•à€Ÿà€šà„‡ AC à€Șà€Ÿà€”à€° à€Șà„‚à€°à„à€”à€”à€€à„ à€•à€°à€Ÿ." -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:36 -msgid "Volume down" -msgstr "à€†à€”à€Ÿà€œ à€•à€źà„€" - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:37 -msgid "Volume mute" -msgstr "à€†à€”à€Ÿà€œ à€źà„à€•" - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:38 -msgid "Volume step" -msgstr "à€†à€”à€Ÿà€œ à€”à€Ÿà€ą" - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:39 -msgid "Volume step as percentage of volume." -msgstr "à€†à€”à€Ÿà€œ à€”à€Ÿà€ą à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€žà„à€”à€°à„‚à€Șà€Ÿà€€." - -#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:40 -msgid "Volume up" -msgstr "à€†à€”à€Ÿà€œ à€œà€Ÿà€žà„à€€" - -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:1 -msgid "File for default configuration for RANDR" +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1532 +#, c-format +msgid "" +"Wireless mouse is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." msgstr "" +"à€”à€Ÿà€Żà€°à€Čà„‡à€ž à€źà€Ÿà€Šà€źà€šà„‡ à€Șà€Ÿà€”à€° à€–à„‚à€Ș à€•à€źà„€ à€†à€čà„‡ (%.0f%%). à€žà€Ÿà€§à€šà€Ÿà€Čà€Ÿ à€šà€Ÿà€°à„à€œ à€š à€•à„‡à€Čà„à€Żà€Ÿà€ž à€žà€Ÿà€§à€š " +"à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà€Ÿà€° à€šà€Ÿà€čà„€." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:2 +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1540 +#, c-format msgid "" -"If a notification icon with display related things should be shown in the " -"panel." -msgstr "à€Šà„ƒà€¶à„à€Ż à€žà€‚à€Źà€‚à€§à€żà€€ à€˜à€Ÿà€šà€Ÿ à€Șà€Ÿà€Č à€…à€‚à€€à€°à„à€—à€€ à€žà„‚à€šà€šà€Ÿ à€šà€żà€šà„à€čà€žà€č à€Šà€°à„à€¶à€”à€Ÿà€Żà€šà„‡ à€…à€žà€Čà„à€Żà€Ÿà€ž." - -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:3 -msgid "Show Displays in Notification Area" -msgstr "à€žà„‚à€šà€šà€Ÿ à€•à€•à„à€·à€Ÿà€€ à€Šà„ƒà€¶à„à€Ż à€Šà€°à„à€¶à€”à€Ÿ" +"Wireless keyboard is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"à€”à€Ÿà€Żà€°à€Čà„‡à€ž à€•à€żà€Źà„‹à€°à„à€Ąà€šà„‡ à€Șà€Ÿà€”à€° à€–à„‚à€Ș à€•à€źà„€ à€†à€čà„‡ (%.0f%%). à€žà€Ÿà€§à€šà€Ÿà€Čà€Ÿ à€šà€Ÿà€°à„à€œ à€š à€•à„‡à€Čà„à€Żà€Ÿà€ž à€žà€Ÿà€§à€š " +"à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà€Ÿà€° à€šà€Ÿà€čà„€." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:4 +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1549 +#, c-format msgid "" -"The XRANDR plugin will look for a default configuration in the file " -"specified by this key. This is similar to the ~/.config/monitors.xml that " -"normally gets stored in users' home directories. If a user does not have " -"such a file, or has one that does not match the user's setup of monitors, " -"then the file specified by this key will be used instead." +"PDA is very low in power (%.0f%%). This device will soon stop functioning if " +"not charged." msgstr "" +"PDA à€šà€Ÿ à€Șà€Ÿà€”à€° à€–à„‚à€Ș à€•à€źà„€ à€†à€čà„‡ (%.0f%%). à€žà€Ÿà€§à€šà€Ÿà€Čà€Ÿ à€šà€Ÿà€°à„à€œ à€š à€•à„‡à€Čà„à€Żà€Ÿà€ž à€žà€Ÿà€§à€š à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ " +"à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà€Ÿà€° à€šà€Ÿà€čà„€." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:5 -msgid "Turn on external monitor after system boot" +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1559 +#, c-format +msgid "" +"Cell phone is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." msgstr "" +"à€žà„‡à€Čà€«à„‹à€šà€šà„‡ à€Șà€Ÿà€”à€° à€–à„‚à€Ș à€•à€źà„€ à€†à€čà„‡ (%.0f%%). à€žà€Ÿà€§à€šà€Ÿà€Čà€Ÿ à€šà€Ÿà€°à„à€œ à€š à€•à„‡à€Čà„à€Żà€Ÿà€ž à€žà€Ÿà€§à€š à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ " +"à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà€Ÿà€° à€šà€Ÿà€čà„€." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:6 +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1570 +#, c-format msgid "" -"Turn on external monitor after system boot if user plugin external monitor " -"when system boot." +"Media player is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." msgstr "" +"à€źà€żà€Ąà„€à€Żà€Ÿ à€”à€Ÿà€Šà€•à€šà„‡ à€Șà€Ÿà€”à€° à€–à„‚à€Ș à€•à€źà„€ à€†à€čà„‡ (%.0f%%). à€žà€Ÿà€§à€šà€Ÿà€Čà€Ÿ à€šà€Ÿà€°à„à€œ à€š à€•à„‡à€Čà„à€Żà€Ÿà€ž à€žà€Ÿà€§à€š " +"à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà€Ÿà€° à€šà€Ÿà€čà„€." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:7 -msgid "Turn on laptop monitor after system boot" +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1579 +#, c-format +msgid "" +"Tablet is very low in power (%.0f%%). This device will soon stop functioning " +"if not charged." msgstr "" +"à€Ÿà„…à€Źà€Čà„‡à€Ÿà€šà€Ÿ à€Șà€Ÿà€”à€° à€–à„‚à€Ș à€•à€źà„€ à€†à€čà„‡ (%.0f%%). à€žà€Ÿà€§à€šà€Ÿà€Čà€Ÿ à€šà€Ÿà€°à„à€œ à€š à€•à„‡à€Čà„à€Żà€Ÿà€ž à€žà€Ÿà€§à€š à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ " +"à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà€Ÿà€° à€šà€Ÿà€čà„€." -#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:8 +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1588 +#, c-format msgid "" -"Turn on laptop monitor after system boot if user plugin external monitor " -"when system boot." +"Attached computer is very low in power (%.0f%%). The device will soon " +"shutdown if not charged." msgstr "" +"à€œà„‹à€Ąà€Čà„‡à€Čà„à€Żà€Ÿ à€žà€‚à€—à€Łà€•à€Ÿà€šà„‡ à€Șà€Ÿà€”à€° à€–à„‚à€Ș à€•à€źà„€ à€†à€čà„‡ (%.0f%%). à€žà€Ÿà€§à€šà€Ÿà€Čà€Ÿ à€šà€Ÿà€°à„à€œ à€š à€•à„‡à€Čà„à€Żà€Ÿà€ž à€žà€Ÿà€§à€š " +"à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà€Ÿà€° à€šà€Ÿà€čà„€." -#: ../data/desktop_gnome_font_rendering.schemas.in.h:1 -msgid "Antialiasing" -msgstr "à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€œà„€à€‚à€—" - -#: ../data/desktop_gnome_font_rendering.schemas.in.h:2 -msgid "DPI" -msgstr "DPI" - -#: ../data/desktop_gnome_font_rendering.schemas.in.h:3 -msgid "Hinting" -msgstr "à€čà€żà€‚à€Ÿà„€à€‚à€—" - -#: ../data/desktop_gnome_font_rendering.schemas.in.h:4 -msgid "RGBA order" -msgstr "RGBA à€•à„à€°à€źà€”à€Ÿà€°à„€" +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 +msgid "Battery is critically low" +msgstr "à€Źà„…à€Ÿà€°à€ż à€—à€‚à€­à„€à€°à€°à€żà€€à„à€Żà€Ÿ à€•à€źà„€ à€†à€čà„‡" -#: ../data/desktop_gnome_font_rendering.schemas.in.h:5 +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1683 msgid "" -"The order of subpixel elements on an LCD screen; only used when antialiasing " -"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " -"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " -"on bottom." +"The battery is below the critical level and this computer will power-off when the battery becomes completely empty." msgstr "" -"LCD à€Șà€Ąà€Šà„à€Żà€Ÿà€”à€°à„€à€Č à€‰à€Șà€Șà„€à€•à„à€žà„‡à€Č à€˜à€Ÿà€•à€Ÿà€‚à€šà„€ à€•à„à€°à€źà€”à€Ÿà€°à„€; à€«à€•à„à€€ à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€Żà€Ÿà€ž \"rgba\" à€•à€°à„€à€€à€Ÿ " -"à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„à€Żà€Ÿà€”à€°à€š à€”à€Ÿà€Șà€°à€Čà„‡ à€œà€Ÿà€€à„‡. à€žà€‚à€­à€Ÿà€”à„à€Ż à€źà„à€Čà„à€Ż à€–à€Ÿà€Čà€żà€Č à€Șà„à€°à€źà€Ÿà€Łà„‡ à€†à€čà„‡: \"rgb\" à€Ąà€Ÿà€”à„€à€•à€Ąà„€à€Č à€Čà€Ÿà€Č " -"à€•à€°à„€à€€à€Ÿ (à€žà€°à„à€”à€Ÿà€§à„€à€• à€žà€°à„à€”à€žà€Ÿà€§à€Ÿà€°à€šà€°à€żà€€à„à€Żà€Ÿ), \"bgr\" à€Ąà€Ÿà€”à„€à€•à€Ąà„€à€Č à€šà„€à€łà„à€Żà€Ÿ à€•à€°à„€à€€à€Ÿ, \"vrgb\" à€”à€°à„€à€Č " -"à€Čà€Ÿà€Č à€•à€°à„€à€€à€Ÿ, \"vbgr\" à€€à€łà€Ÿà€€à„€à€Č à€Čà€Ÿà€Č à€•à€°à„€à€€à€Ÿ." +"à€Źà„…à€Ÿà€°à€ż à€—à€‚à€­à„€à€° à€žà„à€€à€°à€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€•à€źà„€ à€žà„à€€à€°à€Ÿà€”à€° à€†à€ąà€łà€Čà„€ à€” à€Źà„…à€Ÿà€°à€ż à€Șà„‚à€°à„à€Łà€Șà€Łà„‡ à€°à€żà€•à€Ÿà€źà„‡ à€à€Ÿà€Čà„à€Żà€Ÿà€”à€° " +"à€žà€‚à€—à€Łà€• à€Źà€‚à€Š à€čà„‹à€ˆà€Č." -#: ../data/desktop_gnome_font_rendering.schemas.in.h:6 +#. TRANSLATORS: computer will suspend +#: ../plugins/power/gsd-power-manager.c:1689 msgid "" -"The resolution used for converting font sizes to pixel sizes, in dots per " -"inch." +"The battery is below the critical level and this computer is about to " +"suspend.\n" +"NOTE: A small amount of power is required to keep your computer in a " +"suspended state." msgstr "" -"à€«à„‰à€šà„à€Ÿ à€†à€•à€Ÿà€°à€Čà€Ÿ à€Șà„€à€•à„à€žà„‡à€Č à€†à€•à€Ÿà€°à€Ÿà€€ à€°à„‚à€Șà€Ÿà€‚à€€à€°à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€°à„‡à€œà„‹à€Čà„à€Żà„‚à€¶à€š, à€Ąà„‰à€Ÿà€žà„ à€Šà€° à€‡à€‚à€š " -"à€šà„à€°à„‚à€Ș." +"à€Źà„…à€Ÿà€°à€żà€šà„‡ à€—à€‚à€­à„€à€° à€žà„à€€à€°à€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€–à€Ÿà€Čà„€ à€†à€čà„‡ à€” à€čà„‡ à€žà€‚à€—à€Łà€• à€žà€žà„à€Șà„‡à€‚à€Ą à€čà„‹à€Łà„à€Żà€Ÿà€šà„à€Żà€Ÿ " +"à€źà€Ÿà€°à„à€—à€Ÿà€”à€° à€†à€čà„‡.\n" +"à€Ÿà€żà€Ș: à€žà€‚à€—à€Łà€•à€Ÿà€Čà€Ÿ à€žà€žà„à€Șà„‡à€‚à€Ą à€žà„à€€à€°à€źà€§à„à€Żà„‡ à€ à„‡à€”à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€źà„€ à€Șà„à€°à€źà€Ÿà€Łà€Ÿà€€ à€Șà€Ÿà€”à€° à€†à€”à€¶à„à€Żà€• " +"à€†à€čà„‡." -#: ../data/desktop_gnome_font_rendering.schemas.in.h:7 +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1696 msgid "" -"The type of antialiasing to use when rendering fonts. Possible values are: " -"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " -"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +"The battery is below the critical level and this computer is about to " +"hibernate." msgstr "" -"à€«à„‰à€šà„à€Ÿ à€Šà€°à„à€¶à€”à€żà€€à„‡à€”à„‡à€łà„€ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€Șà„à€°à€•à€Ÿà€°. à€žà€‚à€­à€Ÿà€”à„à€Ż à€źà„à€Čà„à€Ż à€–à€Ÿà€Čà€żà€Č à€šà„à€°à„‚à€Ș à€†à€čà„‡: \"none" -"\" à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ, \"grayscale\" à€źà€Ÿà€šà€• à€—à„à€°à„‡à€žà„à€•à„‡à€Č à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ, à€” \"rgba\" " -"à€‰à€Șà€Șà„€à€•à„à€žà„‡à€Č à€à€šà„à€Ÿà„€à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ (à€«à€•à„à€€ LCD à€Șà€Ąà€Šà€Ÿ)." +"à€Źà„…à€Ÿà€°à€ż à€—à€‚à€­à„€à€° à€žà„à€€à€°à€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€•à€źà„€ à€žà„à€€à€°à€Ÿà€”à€° à€†à€ąà€łà€Čà„€ à€” à€žà€‚à€—à€Łà€• à€čà€Ÿà€Żà€Źà€°à€šà„‡à€Ÿ à€čà„‹à€Łà„à€Żà€Ÿà€šà„à€Żà€Ÿ " +"à€źà€Ÿà€°à„à€—à€Ÿà€”à€° à€†à€čà„‡." -#: ../data/desktop_gnome_font_rendering.schemas.in.h:8 +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1701 msgid "" -"The type of hinting to use when rendering fonts. Possible values are: \"none" -"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" -"\" for maximum hinting (may cause distortion of letter forms)." +"The battery is below the critical level and this computer is about to " +"shutdown." msgstr "" -"à€«à„‰à€šà„à€Ÿ à€Šà€°à„à€¶à€”à€żà€€à„‡à€”à„‡à€łà„€ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€čà€żà€šà„à€Ÿà„€à€‚à€—à€šà€Ÿ à€Șà„à€°à€•à€Ÿà€°. à€žà€‚à€­à€Ÿà€”à„à€Ż à€źà„à€Čà„à€Ż à€–à€Ÿà€Čà€żà€Č à€šà„à€°à„‚à€Ș à€†à€čà„‡: \"none\" " -"à€¶à„‚à€šà„à€Ż à€čà€żà€šà„à€Ÿà„€à€‚à€— à€•à€°à„€à€€à€Ÿ, \"slight\" à€źà„à€Čà€­à„‚à€€ à€•à€°à„€à€€à€Ÿ, \"medium\" à€źà€§à„à€Ż à€•à€°à„€à€€à€Ÿ, à€” \"rgba\" " -"à€‰à€Șà€Șà„€à€•à„à€žà„‡à€Č à€…à€Čà€Ÿà€Żà€žà„€à€‚à€— à€•à€°à„€à€€à€Ÿ (à€«à€•à„à€€ LCD à€Șà€Ąà€Šà€Ÿ à€•à€°à„€à€€à€Ÿ)." +"à€Źà„…à€Ÿà€°à€ż à€—à€‚à€­à„€à€° à€žà„à€€à€°à€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€•à€źà„€ à€žà„à€€à€°à€Ÿà€”à€° à€†à€ąà€łà€Čà„€ à€” à€žà€‚à€—à€Łà€• à€Źà€‚à€Š à€čà„‹à€Łà„à€Żà€Ÿà€šà„à€Żà€Ÿ à€źà€Ÿà€°à„à€—à€Ÿà€”à€° à€†à€čà„‡." -#: ../data/desktop_gnome_keybindings.schemas.in.h:1 -msgid "Allowed keys" -msgstr "à€žà„à€”à„€à€•à€Ÿà€°à„à€Ż à€•à€żà€œà„" +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1719 +msgid "" +"UPS is below the critical level and this computer will power-off when " +"the UPS becomes completely empty." +msgstr "" +"UPS à€—à€‚à€­à„€à€° à€žà„à€€à€°à€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€•à€źà„€ à€žà„à€€à€°à€Ÿà€”à€° à€†à€ąà€łà€Čà„‡ à€” UPS à€Șà„‚à€°à„à€Łà€Șà€Łà„‡ à€°à€żà€•à€Ÿà€źà„‡ à€à€Ÿà€Čà„à€Żà€Ÿà€”à€° à€žà€‚à€—à€Łà€• " +"à€Źà€‚à€Š à€čà„‹à€ˆà€Č." -#: ../data/desktop_gnome_keybindings.schemas.in.h:2 +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1725 msgid "" -"If non-empty, keybindings will be ignored unless their GConf directory is in " -"the list. This is useful for lockdown." +"UPS is below the critical level and this computer is about to hibernate." msgstr "" -"à€°à€żà€•à€Ÿà€źà„‡ à€šà€žà€Čà„à€Żà€Ÿà€ž, à€•à€żà€Źà€Ÿà€‡à€šà„à€Ąà„€à€‚à€— à€€à„‹à€Șà€°à„à€Żà€‚à€€ à€Šà„à€°à„à€Čà€•à„à€· à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č à€œà„‹à€Șà€°à„à€Żà€‚à€€ à€€à„à€Żà€Ÿà€‚à€šà„€ GConf à€Ąà€żà€°à„‡à€•à„à€Ÿà„à€°à„€ " -"à€Żà€Ÿà€Šà„€à€€ à€‰à€Șà€Čà„à€Źà€§ à€†à€čà„‡. lockdown à€•à€°à„€à€€à€Ÿ à€‰à€Șà€Żà„‹à€—à„€ à€†à€čà„‡." +"UPS à€—à€‚à€­à„€à€° à€žà„à€€à€°à€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€•à€źà„€ à€žà„à€€à€°à€Ÿà€”à€° à€†à€ąà€łà€Čà„‡ à€” à€žà€‚à€—à€Łà€• à€čà€Ÿà€Żà€Źà€°à€šà„‡à€Ÿ à€čà„‹à€Łà„à€Żà€Ÿà€šà„à€Żà€Ÿ à€źà€Ÿà€°à„à€—à€Ÿà€”à€° " +"à€†à€čà„‡." -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:1 -msgid "Disable touchpad while typing" -msgstr "à€Ÿà€Ÿà€ˆà€Șà€•à€°à€€à„‡à€”à„‡à€łà„€ à€Ÿà€šà€Șà„…à€Ą à€…à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€•à€°à€Ÿ" +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1730 +msgid "UPS is below the critical level and this computer is about to shutdown." +msgstr "" +"UPS à€—à€‚à€­à„€à€° à€žà„à€€à€°à€Ÿà€Șà„‡à€•à„à€·à€Ÿ à€•à€źà„€ à€žà„à€€à€°à€Ÿà€”à€° à€†à€ąà€łà€Čà„‡ à€” à€žà€‚à€—à€Łà€• à€Źà€‚à€Š à€čà„‹à€Łà„à€Żà€Ÿà€šà„à€Żà€Ÿ à€źà€Ÿà€°à„à€—à€Ÿà€”à€° à€†à€čà„‡." -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:2 -msgid "Enable horizontal scrolling" -msgstr "à€†à€Ąà€”à„‡ à€žà„à€•à„à€°à„‹à€Čà„€à€‚à€— à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€•à€°à€Ÿ" +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2224 +msgid "Lid has been opened" +msgstr "à€à€Ÿà€•à€š à€‰à€˜à€Ąà€Čà„‡" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:3 -msgid "Enable mouse clicks with touchpad" -msgstr "à€Ÿà€šà€Șà„…à€Ąà€žà€č à€źà€Ÿà€Šà€ž à€•à„à€Čà€żà€•à„à€žà„ à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€•à€°à€Ÿ" +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2301 +msgid "Lid has been closed" +msgstr "à€à€Ÿà€•à€š à€Źà€‚à€Š à€à€Ÿà€Čà„‡ à€†à€čà„‡" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:4 -#, fuzzy -msgid "Enable touchpad" -msgstr "à€Ÿà€šà€Șà„…à€Ąà€žà€č à€źà€Ÿà€Šà€ž à€•à„à€Čà€żà€•à„à€žà„ à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€•à€°à€Ÿ" +#. TRANSLATORS: this is the title of the power manager status icon +#. * that is only shown in fallback mode +#: ../plugins/power/gsd-power-manager.c:3692 +msgid "Power Manager" +msgstr "à€Șà€Ÿà€”à€° à€źà„…à€šà„‡à€œà€°" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:5 -msgid "Select the touchpad scroll method" -msgstr "à€Ÿà€šà€Șà„…à€Ą à€žà„à€•à„à€°à„‹à€Č à€Șà€Šà„à€§à€€ à€šà„€à€”à€Ąà€Ÿ" +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the backlight brightness. +#. +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:5 +msgid "Modify the laptop brightness" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Ș à€‰à€œà€łà€Șà€Łà€Ÿ à€žà€‚à€Șà€Ÿà€Šà€żà€€ à€•à€°à€Ÿ" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:6 -msgid "" -"Select the touchpad scroll method. Supported values are: 0 - disabled, 1 - " -"edge scrolling, 2 - two-finger scrolling" -msgstr "" -"à€Ÿà€šà€Șà„…à€Ą à€žà„à€•à„à€°à„‹à€Č à€Șà€Šà„à€§à€€ à€šà„€à€”à€Ąà€Ÿ. à€žà€źà€°à„à€„à„€à€€ à€źà„‚à€Čà„à€Żà„‡ à€…à€žà„‡ à€†à€čà„‡à€€: 0 - à€…à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź, 1 - à€•à€żà€šà€Ÿà€° à€žà„à€•à„à€°à„‹à€Čà„€à€‚à€—, 2 " -"- à€Šà„‹à€š-à€Źà„‹à€Ÿà€Ÿà€‚à€šà„‡ à€žà„à€•à„à€°à„‹à€Čà„€à€‚à€—" +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +msgid "Authentication is required to modify the laptop brightness" +msgstr "à€Čà„…à€Șà€Ÿà„‰à€Șà€šà€Ÿ à€‰à€œà€łà€Șà€Łà€Ÿ à€žà€‚à€Șà€Ÿà€Šà€żà€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€“à€łà€–à€Șà€Ÿà€”à€Łà„‡ à€†à€”à€¶à„à€Żà€• à€†à€čà„‡" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:7 -msgid "" -"Set this to TRUE if you have problems with accidentally hitting the touchpad " -"while typing." -msgstr "à€Ÿà€Ÿà€ˆà€Ș à€•à€°à€€à„‡à€”à„‡à€łà„€ à€Ÿà€šà€Șà„…à€Ąà€Čà€Ÿ à€šà„à€•à„€à€šà„‡ à€čà€Ÿà€€ à€Čà€Ÿà€—à€Čà„à€Żà€Ÿà€ž à€Żà€Ÿà€‚à€ž TRUE à€žà„‡à€Ÿ à€•à€°à€Ÿ." +#: ../plugins/power/power.gnome-settings-plugin.in.h:2 +#| msgid "Mouse plugin" +msgid "Power plugin" +msgstr "à€Șà€Ÿà€”à€° à€Șà„à€Čà€—à€‡à€š" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:8 -msgid "" -"Set this to TRUE to allow horizontal scrolling by the same method selected " -"with the scroll_method key." -msgstr "" -"scroll_method à€•à€ż à€žà€č à€žà€źà€Ÿà€š à€Șà€Šà„à€§à€€ à€šà„€à€”à€Ąà€Čà„‡ à€…à€žà€Čà„à€Żà€Ÿà€ž à€†à€Ąà€”à„‡ à€žà„à€•à„à€°à„‹à€Čà„€à€‚à€— à€žà„à€”à„€à€•à€Ÿà€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Żà€Ÿà€Čà€Ÿ " -"TRUE à€…à€žà„‡ à€žà„‡à€Ÿ à€•à€°à€Ÿ." +#. Translators: We are configuring new printer +#: ../plugins/print-notifications/gsd-printer.c:908 +msgid "Configuring new printer" +msgstr "à€šà€”à€żà€š à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€žà€‚à€°à€šà„€à€€ à€•à€°à€Ÿ" -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:9 -msgid "Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." -msgstr "à€Ÿà€šà€Șà„…à€Ąà€”à€° à€Ÿà„…à€Ș à€•à„‡à€Čà„à€Żà€Ÿà€šà€‚à€€à€° à€źà€Ÿà€Šà€ž à€•à„à€Čà€żà€•à„à€žà„ à€Șà€Ÿà€ à€”à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Żà€Ÿà€‚à€ž TRUE à€…à€žà„‡ à€žà„‡à€Ÿ à€•à€°à€Ÿ." +#. Translators: Just wait +#: ../plugins/print-notifications/gsd-printer.c:910 +msgid "Please wait..." +msgstr "à€•à„ƒà€Șà€Żà€Ÿ à€„à€Ÿà€‚à€Źà€Ÿ..." -#: ../data/desktop_gnome_peripherals_touchpad.schemas.in.h:10 -#, fuzzy -msgid "Set this to TRUE to enable all touchpads." -msgstr "à€Ÿà€šà€Șà„…à€Ąà€”à€° à€Ÿà„…à€Ș à€•à„‡à€Čà„à€Żà€Ÿà€šà€‚à€€à€° à€źà€Ÿà€Šà€ž à€•à„à€Čà€żà€•à„à€žà„ à€Șà€Ÿà€ à€”à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Żà€Ÿà€‚à€ž TRUE à€…à€žà„‡ à€žà„‡à€Ÿ à€•à€°à€Ÿ." +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:937 +msgid "Missing printer driver" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€Ąà„à€°à€Ÿà€‡à€”à„à€čà€° à€†à€ąà€łà€Čà„‡ à€šà€Ÿà€čà„€" -#: ../data/gnome-settings-daemon.desktop.in.in.h:1 -msgid "GNOME Settings Daemon" -msgstr "GNOME à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Ąà„€à€źà€š" +#. Translators: We have no driver installed for the device +#: ../plugins/print-notifications/gsd-printer.c:946 +#, c-format +msgid "No printer driver for %s." +msgstr "%s à€•à€°à„€à€€à€Ÿ à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€Ąà„à€°à€Ÿà€‡à€”à„à€čà€° à€†à€ąà€łà€Čà„‡ à€šà€Ÿà€čà„€." + +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:951 +msgid "No driver for this printer." +msgstr "à€Żà€Ÿ à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€°à€•à€°à„€à€€à€Ÿ à€Ąà„à€°à€Ÿà€‡à€”à„à€čà€° à€šà€Ÿà€čà„€." + +#: ../plugins/print-notifications/gsd-printer.c:1049 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:778 +msgid "Printers" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€°à„‡" + +#. Translators: The printer is low on toner (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 +msgid "Toner low" +msgstr "à€Ÿà„‹à€šà€° à€•à€źà„€ à€†à€čà„‡" + +#. Translators: The printer has no toner left (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:299 +msgid "Toner empty" +msgstr "à€Ÿà„‹à€šà€° à€°à€żà€•à€Ÿà€źà„‡ à€†à€čà„‡" + +#. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:301 +msgid "Not connected?" +msgstr "à€œà„‹à€Ąà€Łà„€ à€…à€¶à€•à„à€Ż?" + +#. Translators: One or more covers on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:303 +msgid "Cover open" +msgstr "à€•à€”à€° à€‰à€˜à€Ąà„‡ à€†à€čà„‡" + +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 +msgid "Printer configuration error" +msgstr "à€›à€Șà€Ÿà€ˆà€‚à€Żà€€à„à€° à€žà€‚à€°à€šà€šà€Ÿ à€€à„à€°à„à€Ÿà„€" + +#. Translators: One or more doors on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:307 +msgid "Door open" +msgstr "à€Šà€Ÿà€° à€‰à€˜à€Ąà€Ÿ" + +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 +msgid "Marker supply low" +msgstr "à€źà€Ÿà€°à„à€•à€° à€Șà„à€°à€”à€ à€Ÿ à€•à€źà„€ à€†à€čà„‡" + +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 +msgid "Out of a marker supply" +msgstr "à€źà€Ÿà€°à„à€•à€° à€Șà„à€°à€”à€ à€Ÿ à€•à€źà„€ à€†à€čà„‡" + +#. Translators: At least one input tray is low on media (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 +msgid "Paper low" +msgstr "à€Șà„‡à€Șà€° à€•à€źà„€ à€†à€čà„‡" + +#. Translators: At least one input tray is empty (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:315 +msgid "Out of paper" +msgstr "à€Șà„‡à€Șà€° à€•à€źà„€ à€†à€čà„‡" + +#. Translators: The printer is offline (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:317 +msgid "Printer off-line" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€‘à€«à€Čà€Ÿà€‡à€š à€†à€čà„‡" + +#. Translators: The printer has detected an error (same as in system-config-printer) +#. Translators: This is a title of an error notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:319 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:721 +msgid "Printer error" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€€à„à€°à„à€Ÿà„€" + +#. Translators: The printer is low on toner (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:323 +#, c-format +msgid "Printer '%s' is low on toner." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€šà€Ÿ à€Ÿà„‹à€šà€° à€•à€źà„€ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:1 -msgid "Binding to toggle the magnifier." -msgstr "à€”à€°à„à€§à€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€ à€•à€°à€€ à€†à€čà„‡." +#. Translators: The printer has no toner left (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:325 +#, c-format +msgid "Printer '%s' has no toner left." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€šà„‡ à€Ÿà„‹à€šà€° à€†à€ąà€łà€Čà„‡ à€šà€Ÿà€čà„€." -#: ../data/gnome-settings-daemon.schemas.in.h:2 -msgid "Binding to toggle the on-screen keyboard." -msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€ à€•à€°à€€ à€†à€čà„‡." +#. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:327 +#, c-format +msgid "Printer '%s' may not be connected." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€žà€č à€œà„‹à€Ąà€Łà„€ à€•à€Šà€Ÿà€šà€żà€€ à€…à€¶à€•à„à€Ż." -#: ../data/gnome-settings-daemon.schemas.in.h:3 -msgid "Binding to toggle the screen reader." -msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà€° à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€ à€•à€°à€€ à€†à€čà„‡." +#. Translators: One or more covers on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:329 +#, c-format +msgid "The cover is open on printer '%s'." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€”à€°à„€à€Č à€•à€”à€° à€‰à€˜à€Ąà„‡ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:4 -msgid "Bounce keys" -msgstr "à€Źà€Ÿà€Šà€šà„à€žà„ à€•à€żà€œà„" +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:331 +#, c-format +msgid "There is a missing print filter for printer '%s'." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€•à€°à„€à€€à€Ÿ à€Șà„à€°à€żà€‚à€Ÿ à€«à€żà€Čà„à€Ÿà€° à€†à€ąà€łà€Čà„‡ à€šà€Ÿà€čà„€." -#: ../data/gnome-settings-daemon.schemas.in.h:5 -msgid "Command used to turn the magnifier on or off." -msgstr "à€”à€°à„à€§à€• à€žà„à€°à„‚ à€•à€żà€‚à€”à€Ÿ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Șà€Ÿà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶." +#. Translators: One or more doors on the printer are open (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 +#, c-format +msgid "The door is open on printer '%s'." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€”à€°à„€à€Č à€Šà€Ÿà€° à€‰à€˜à€Ąà„‡ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:6 -msgid "Command used to turn the on-screen keyboard on or off." -msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€žà„à€°à„‚ à€•à€żà€‚à€”à€Ÿ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Șà€Ÿà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶." +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 +#, c-format +msgid "Printer '%s' is low on a marker supply." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€•à€°à„€à€€à€Ÿ à€źà€Ÿà€°à„à€•à€° à€Șà„à€°à€”à€ à€Ÿ à€•à€źà„€ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:7 -msgid "Command used to turn the screen reader on or off." -msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà„€à€° à€žà„à€°à„‚ à€•à€żà€‚à€”à€Ÿ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶." +#. Translators: "marker" is one color bin of the printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 +#, c-format +msgid "Printer '%s' is out of a marker supply." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€źà€§à„à€Żà„‡ à€źà€Ÿà€°à„à€•à€° à€Șà„à€°à€”à€ à€Ÿ à€†à€ąà€łà€Čà„‡ à€šà€Ÿà€čà„€." -#: ../data/gnome-settings-daemon.schemas.in.h:8 -msgid "Enable accessibility keyboard plugin" -msgstr "à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#. Translators: At least one input tray is low on media (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 +#, c-format +msgid "Printer '%s' is low on paper." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€źà€§à„à€Żà„‡ à€Șà„‡à€Șà€° à€•à€źà„€ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:9 -msgid "Enable background plugin" -msgstr "à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#. Translators: At least one input tray is empty (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 +#, c-format +msgid "Printer '%s' is out of paper." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€źà€§à„à€Żà„‡ à€Șà„‡à€Șà€° à€•à€źà„€ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:10 -msgid "Enable clipboard plugin" -msgstr "à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#. Translators: The printer is offline (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:344 +#, c-format +msgid "Printer '%s' is currently off-line." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€žà€§à„à€Żà€Ÿ à€‘à€«à€Čà€Ÿà€‡à€š à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:11 -msgid "Enable font plugin" -msgstr "à€«à„‰à€šà„à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#. Translators: The printer has detected an error (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:346 +#, c-format +msgid "There is a problem on printer '%s'." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s' à€”à€° à€…à€Ąà€šà€Ł à€†à€ąà€łà€Čà„€." -#: ../data/gnome-settings-daemon.schemas.in.h:12 -msgid "Enable housekeeping plugin" -msgstr "à€čà€Ÿà€Šà€žà€•à€żà€Șà„€à€‚à€— à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:423 +msgid "Printer added" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€žà€źà€Ÿà€”à€żà€·à„à€Ÿ à€•à„‡à€Čà„‡" + +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:431 +msgid "Printer removed" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Čà„‡" + +#. Translators: A print job has been stopped +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:448 +msgid "Printing stopped" +msgstr "à€›à€Șà€Ÿà€ˆ à€„à€Ÿà€‚à€Źà€”à€Čà„‡" + +#. Translators: "print-job xy" on a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:450 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:456 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:462 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:468 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:480 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:500 +#, c-format +msgid "\"%s\" on %s" +msgstr "\"%s\", %s à€”à€°à„€à€Č" -#: ../data/gnome-settings-daemon.schemas.in.h:13 -msgid "Enable keybindings plugin" -msgstr "à€•à€żà€Źà€Ÿà€‚à€§à€Łà„€ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€à€Ÿ à€•à€°à€Ÿ" +#. Translators: A print job has been canceled +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:454 +msgid "Printing canceled" +msgstr "à€›à€Șà€Ÿà€ˆ à€°à€Šà„à€Š à€•à„‡à€Čà„€" + +#. Translators: A print job has been aborted +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:460 +msgid "Printing aborted" +msgstr "à€›à€Șà€Ÿà€ˆ à€°à€Šà„à€Š à€•à„‡à€Čà„€" + +#. Translators: A print job has been completed +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:466 +msgid "Printing completed" +msgstr "à€›à€Șà€Ÿà€ˆ à€Șà„‚à€°à„à€Ł à€à€Ÿà€Čà„€" + +#. Translators: A job is printing +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:478 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:498 +#| msgid "Hinting" +msgid "Printing" +msgstr "à€›à€Șà€Ÿà€ˆ" + +#. Translators: This is a title of a report notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:715 +msgid "Printer report" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€°à€żà€Șà„‹à€°à„à€Ÿ" + +#. Translators: This is a title of a warning notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:718 +msgid "Printer warning" +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ" -#: ../data/gnome-settings-daemon.schemas.in.h:14 -msgid "Enable keyboard plugin" -msgstr "à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#. Translators: "Printer 'MyPrinterName': 'Description of the report/warning/error from a PPD file'." +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:728 +#, c-format +msgid "Printer '%s': '%s'." +msgstr "à€›à€Șà€Ÿà€ˆà€Żà€‚à€€à„à€° '%s': '%s'." -#: ../data/gnome-settings-daemon.schemas.in.h:15 -msgid "Enable media keys plugin" -msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 +msgid "Print-notifications" +msgstr "à€›à€Șà€Ÿà€ˆ-à€žà„‚à€šà€šà€Ÿ" + +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:2 +msgid "Print-notifications plugin" +msgstr "à€›à€Șà€Ÿà€ˆ-à€žà„‚à€šà€šà€Ÿ à€Șà„à€Čà€—à€‡à€š" + +#: ../plugins/smartcard/gsd-smartcard-manager.c:523 +msgid "received error or hang up from event source" +msgstr "à€‡à€”à„à€čà„‡à€‚à€Ÿ à€žà„à€°à„‹à€€à€Șà€Ÿà€žà„‚à€š à€€à„à€°à„à€Ÿà„€ à€•à€żà€‚à€”à€Ÿ à€čà€à€— à€…à€Ș à€Șà„à€°à€Ÿà€Șà„à€€ à€à€Ÿà€Čà„‡" -#: ../data/gnome-settings-daemon.schemas.in.h:16 -msgid "Enable mouse plugin" -msgstr "à€źà€Ÿà€Šà€ž à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#: ../plugins/smartcard/gsd-smartcard-manager.c:657 +#, c-format +msgid "NSS security system could not be initialized" +msgstr "NSS à€žà„‡à€•à„à€Żà„à€°à€żà€Ÿà€ż à€žà€żà€žà„à€Ÿà€ź à€žà„à€°à„‚ à€•à€°à€Łà„‡ à€…à€¶à€•à„à€Ż" -#: ../data/gnome-settings-daemon.schemas.in.h:17 -msgid "Enable smartcard plugin" -msgstr "à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€Șà„à€Čà€—à€‡à€š à€žà„à€°à„‚ à€•à€°à€Ÿ" +#: ../plugins/smartcard/gsd-smartcard-manager.c:785 +#, c-format +msgid "no suitable smartcard driver could be found" +msgstr "à€Żà„‹à€—à„à€Ż à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€Ąà„à€°à€Ÿà€‡à€”à„à€čà€° à€†à€ąà€łà€Čà„‡ à€šà€Ÿà€čà„€" -#: ../data/gnome-settings-daemon.schemas.in.h:18 -msgid "Enable sound plugin" -msgstr "à€†à€”à€Ÿà€œ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#: ../plugins/smartcard/gsd-smartcard-manager.c:799 +#, c-format +msgid "smartcard driver '%s' could not be loaded" +msgstr "à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€Ąà„à€°à€Ÿà€‡à€”à„à€čà€° '%s' à€Čà„‹à€Ą à€•à€°à€Łà„‡ à€…à€¶à€•à„à€Ż" -#: ../data/gnome-settings-daemon.schemas.in.h:19 -msgid "Enable typing breaks plugin" -msgstr "à€Źà„à€°à„‡à€• à€Șà„à€Čà€—à€‡à€š à€Ÿà€Ÿà€‡à€Ș à€•à€°à€Łà„‡ à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#: ../plugins/smartcard/gsd-smartcard-manager.c:871 +#, c-format +msgid "could not watch for incoming card events - %s" +msgstr "à€Żà„‡à€Łà€Ÿà€±à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ą à€˜à€Ÿà€šà€Ÿà€‚à€•à€°à„€à€€à€Ÿ - %s à€”à„‰à€š à€•à€°à€Łà„‡ à€…à€¶à€•à„à€Ż" -#: ../data/gnome-settings-daemon.schemas.in.h:20 -msgid "Enable xrandr plugin" -msgstr "xrandr à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#: ../plugins/smartcard/gsd-smartcard-manager.c:1269 +#, c-format +msgid "encountered unexpected error while waiting for smartcard events" +msgstr "à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€˜à€Ÿà€šà€Ÿà€‚à€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Ÿ à€Șà€čà€Ÿà€€à€Ÿà€šà€Ÿ à€…à€šà€Șà„‡à€•à„à€·à„€à€€ à€€à„à€°à„à€Ÿà„€ à€†à€ąà€łà€Čà„€" -#: ../data/gnome-settings-daemon.schemas.in.h:21 -msgid "Enable xrdb plugin" -msgstr "xrdb à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#. TRANSLATORS: we need to restart so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:240 +msgid "" +"You will need to restart this computer before the hardware will work " +"correctly." +msgstr "" +"à€čà€Ÿà€°à„à€Ąà€”à„‡à€…à€° à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà„à€Żà€Ÿà€Șà„‚à€°à„à€”à„€ à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€žà€‚à€—à€Łà€• à€Șà„à€šà€ƒà€žà„à€°à„‚ à€•à€°à€Ÿà€”à„‡ à€Čà€Ÿà€—à„‡à€Č." + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:243 +#: ../plugins/updates/gsd-updates-firmware.c:268 +#: ../plugins/updates/gsd-updates-firmware.c:293 +msgid "Additional software was installed" +msgstr "à€…à€—à€Ÿà€Š à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à„‡à€Čà„‡" + +#: ../plugins/updates/gsd-updates-firmware.c:244 +#: ../plugins/updates/gsd-updates-firmware.c:269 +#: ../plugins/updates/gsd-updates-firmware.c:294 +#: ../plugins/updates/gsd-updates-firmware.c:583 +#: ../plugins/updates/gsd-updates-manager.c:203 +#: ../plugins/updates/gsd-updates-manager.c:328 +#: ../plugins/updates/gsd-updates-manager.c:387 +#: ../plugins/updates/gsd-updates-manager.c:443 +#: ../plugins/updates/gsd-updates-manager.c:575 +#: ../plugins/updates/gsd-updates-manager.c:663 +msgid "Software Updates" +msgstr "à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ" + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:265 +msgid "" +"You will need to remove and then reinsert the hardware before it will work " +"correctly." +msgstr "" +"à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà„à€Żà€Ÿà€Șà„‚à€°à„à€”à„€ à€čà€Ÿà€°à„à€Ąà€”à„‡à€…à€° à€•à€Ÿà€ąà„‚à€š à€Șà„à€šà€ƒ à€…à€‚à€€à€°à„à€­à„à€€ à€•à€°à€Łà„‡ à€†à€”à€¶à„à€Żà€• à€†à€čà„‡." + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:290 +msgid "Your hardware has been set up and is now ready to use." +msgstr "à€čà€Ÿà€°à„à€Ąà€”à„‡à€…à€°à€Čà€Ÿ à€žà„‡à€Ÿ à€…à€Ș à€•à„‡à€Čà„‡ à€” à€†à€€à„à€€à€Ÿ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€žà€œà„à€œ à€†à€čà„‡." + +#. TRANSLATORS: we need another package to keep udev quiet +#: ../plugins/updates/gsd-updates-firmware.c:568 +msgid "" +"Additional firmware is required to make hardware in this computer function " +"correctly." +msgstr "" +"à€Żà€Ÿ à€žà€‚à€—à€Łà€•à€Ÿà€”à€°à„€à€Č à€čà€Ÿà€°à„à€Ąà€”à„‡à€…à€°à€Čà€Ÿ à€Żà„‹à€—à„à€Żà€°à€żà€€à„à€Żà€Ÿ à€•à€Ÿà€°à„à€Ż à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€…à€—à€Ÿà€Š à€«à€°à„à€źà€”à„‡à€…à€° à€†à€”à€¶à„à€Żà€• " +"à€†à€čà„‡." + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:582 +msgid "Additional firmware required" +msgstr "à€…à€—à€Ÿà€Š à€«à€°à„à€źà€”à„‡à€…à€° à€†à€”à€¶à„à€Żà€• à€†à€čà„‡" + +#. TRANSLATORS: button label +#: ../plugins/updates/gsd-updates-firmware.c:588 +msgid "Install firmware" +msgstr "à€«à€°à„à€źà€”à„‡à€…à€° à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" + +#. TRANSLATORS: we should ignore this device and not ask anymore +#: ../plugins/updates/gsd-updates-firmware.c:591 +#| msgid "Ignore" +msgid "Ignore devices" +msgstr "à€žà€Ÿà€§à€šà€Ÿà€‚à€•à€Ąà„‡ à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Ÿ" + +#. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 +#: ../plugins/updates/gsd-updates-manager.c:199 +msgid "Distribution upgrades available" +msgstr "à€”à€żà€€à€°à€Ł à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§" + +#. TRANSLATORS: provides more information about the upgrade +#: ../plugins/updates/gsd-updates-manager.c:208 +msgid "More information" +msgstr "à€…à€§à€żà€• à€źà€Ÿà€čà€żà€€à„€" + +#. TRANSLATORS: title in the libnotify popup +#: ../plugins/updates/gsd-updates-manager.c:311 +#: ../plugins/updates/gsd-updates-manager.c:370 +msgid "Update" +msgid_plural "Updates" +msgstr[0] "à€žà„à€§à€Ÿà€°à€Łà€Ÿ" +msgstr[1] "à€žà„à€§à€Ÿà€°à€Łà€Ÿ" + +#. TRANSLATORS: message when there are security updates +#: ../plugins/updates/gsd-updates-manager.c:314 +msgid "An important software update is available" +msgid_plural "Important software updates are available" +msgstr[0] "à€źà€čà€€à„à€”à€Ÿà€šà„‡ à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§ à€†à€čà„‡" +msgstr[1] "à€źà€čà€€à„à€”à€Ÿà€šà„à€Żà€Ÿ à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§ à€†à€čà„‡" + +#. TRANSLATORS: button: open the update viewer to install updates +#: ../plugins/updates/gsd-updates-manager.c:333 +#: ../plugins/updates/gsd-updates-manager.c:392 +msgid "Install updates" +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" + +#. TRANSLATORS: message when there are non-security updates +#: ../plugins/updates/gsd-updates-manager.c:373 +msgid "A software update is available." +msgid_plural "Software updates are available." +msgstr[0] "à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§ à€†à€čà„‡." +msgstr[1] "à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€‰à€Șà€Čà€Źà„à€§ à€†à€čà„‡." + +#. TRANSLATORS: policy says update, but we are on battery and so prompt +#: ../plugins/updates/gsd-updates-manager.c:438 +msgid "" +"Automatic updates are not being installed as the computer is running on " +"battery power" +msgstr "" +"à€žà€‚à€—à€Łà€• à€Źà„…à€Ÿà€°à€ż à€Șà€Ÿà€”à€°à€”à€° à€šà€Ÿà€Čà€€ à€…à€žà€Čà„à€Żà€Ÿà€šà„‡ à€žà„à€”à€Żà€‚ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à„‡à€Čà„‡ à€—à„‡à€Čà„‡ à€šà€Ÿà€čà„€" + +#. TRANSLATORS: informs user will not install by default +#: ../plugins/updates/gsd-updates-manager.c:440 +msgid "Updates not installed" +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€šà€Ÿà€čà„€" + +#. TRANSLATORS: to hell with my battery life, just do it +#: ../plugins/updates/gsd-updates-manager.c:448 +msgid "Install the updates anyway" +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€•à€žà„‡à€čà€ż à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" + +#: ../plugins/updates/gsd-updates-manager.c:464 +msgid "No restart is required." +msgstr "à€Șà„à€šà€ƒà€žà„à€°à„‚ à€•à€°à€Łà„‡ à€†à€”à€¶à„à€Żà€• à€šà€Ÿà€čà„€." + +#: ../plugins/updates/gsd-updates-manager.c:467 +msgid "A restart is required." +msgstr "à€Șà„à€šà€ƒà€žà„à€°à„‚ à€•à€°à€Łà„‡ à€†à€”à€¶à„à€Żà€•." + +#: ../plugins/updates/gsd-updates-manager.c:470 +msgid "You need to log out and log back in." +msgstr "à€Źà€Ÿà€čà„‡à€° à€Șà€Ąà€Ÿ à€” à€Șà„à€šà€ƒ à€Șà„à€°à€”à„‡à€¶ à€•à€°à€Ÿ." + +#: ../plugins/updates/gsd-updates-manager.c:473 +msgid "You need to restart the application." +msgstr "à„Čà€Șà„à€Čà€żà€•à„‡à€¶à€šà€Čà€Ÿ à€Șà„à€šà€ƒà€žà„à€°à„‚ à€•à€°à€Łà„‡ à€†à€”à€¶à„à€Żà€•." + +#: ../plugins/updates/gsd-updates-manager.c:476 +msgid "You need to log out and log back in to remain secure." +msgstr "" +"à€žà„à€°à€•à„à€·à€żà€€ à€°à€Ÿà€čà€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€Źà€Ÿà€čà„‡à€° à€Șà€Ąà„‚à€š à€Șà„à€šà„à€čà€Ÿ à€Șà„à€°à€”à„‡à€¶ à€•à€°à€Ÿà€Żà€šà„€ à€†à€”à€¶à„à€Żà€•à€€à€Ÿ à€†à€čà„‡." + +#: ../plugins/updates/gsd-updates-manager.c:479 +msgid "A restart is required to remain secure." +msgstr "à€žà„à€°à€•à„à€·à€żà€€ à€°à€Ÿà€čà€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Șà„à€šà€ƒà€žà„à€°à„‚ à€•à€°à€Łà„‡ à€†à€”à€¶à„à€Żà€• à€†à€čà„‡." + +#. TRANSLATORS: we did the update, but some updates were skipped and not applied +#: ../plugins/updates/gsd-updates-manager.c:540 +msgid "One package was skipped:" +msgid_plural "Some packages were skipped:" +msgstr[0] "à€à€• à€žà€‚à€•à„à€Č à€”à€—à€łà€Čà„‡:" +msgstr[1] "à€•à€Ÿà€čà€żà€• à€žà€‚à€•à„à€Č à€”à€—à€łà€Čà„‡:" + +#. TRANSLATORS: title: system update completed all okay +#: ../plugins/updates/gsd-updates-manager.c:572 +msgid "The system update has completed" +msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€žà„à€§à€Ÿà€°à€Łà€Ÿ à€Șà„‚à€°à„à€Ł à€à€Ÿà€Čà„‡" + +#. TRANSLATORS: restart computer as system packages need update +#: ../plugins/updates/gsd-updates-manager.c:581 +msgid "Restart computer now" +msgstr "à€žà€‚à€—à€Łà€•à€Ÿà€Čà€Ÿ à€†à€€à„à€€à€Ÿ à€Șà„à€šà€ƒà€žà„à€°à„‚ à€•à€°à€Ÿ" + +#. TRANSLATORS: the updates mechanism +#: ../plugins/updates/gsd-updates-manager.c:651 +msgid "Updates" +msgstr "à€žà„à€§à€Ÿà€°à€Łà€Ÿ" + +#. TRANSLATORS: we failed to get the updates multiple times, +#. * and now we need to inform the user that something might be wrong +#: ../plugins/updates/gsd-updates-manager.c:655 +msgid "Unable to access software updates" +msgstr "à€žà„‰à€«à„à€Ÿà€”à„‡à€…à€° à€žà„à€§à€Ÿà€°à€Łà€Ÿà€‚à€•à€Ąà„‡ à€Șà„à€°à€”à„‡à€¶ à€…à€¶à€•à„à€Ż" + +#. TRANSLATORS: try again, this time launching the update viewer +#: ../plugins/updates/gsd-updates-manager.c:658 +msgid "Try again" +msgstr "à€Șà„à€šà€ƒ à€Șà„à€°à€Żà€€à„à€š à€•à€°à€Ÿ" + +#. TRANSLATORS: the reason why we've inhibited it +#: ../plugins/updates/gsd-updates-manager.c:1096 +msgid "A transaction that cannot be interrupted is running" +msgstr "à€”à„à€Żà€€à„à€Ż à€…à€¶à€•à„à€Ż à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€Ÿà„à€°à€Ÿà€‚à€œà„…à€•à„à€¶à€š à€žà„à€°à„‚ à€†à€čà„‡" -#: ../data/gnome-settings-daemon.schemas.in.h:22 -msgid "Enable xsettings plugin" -msgstr "xsettings à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#: ../plugins/wacom/gsd-wacom-device.c:909 +#, c-format +msgid "Left Ring Mode #%d" +msgstr "à€Ąà€Ÿà€”à„‡ à€°à€żà€‚à€— à€źà„‹à€Ą #%d" -#: ../data/gnome-settings-daemon.schemas.in.h:23 -msgid "Mouse keys" -msgstr "à€źà€Ÿà€Šà€ž à€•à€żà€œà„" +#: ../plugins/wacom/gsd-wacom-device.c:916 +#, c-format +msgid "Right Ring Mode #%d" +msgstr "à€‰à€œà€”à„‡ à€°à€żà€‚à€— à€źà„‹à€Ą #%d" -#: ../data/gnome-settings-daemon.schemas.in.h:24 -msgid "On-screen keyboard" -msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€•" +#: ../plugins/wacom/gsd-wacom-device.c:944 +#, c-format +msgid "Left Touchstrip Mode #%d" +msgstr "à€Ąà€Ÿà€”à„‡ à€Ÿà€šà€žà„à€Ÿà„à€°à€żà€Ș à€źà„‹à€Ą #%d" -#: ../data/gnome-settings-daemon.schemas.in.h:25 -msgid "Screen magnifier" -msgstr "à€žà„à€•à„à€°à„€à€š à€”à€°à„à€§à€•" +#: ../plugins/wacom/gsd-wacom-device.c:951 +#, c-format +msgid "Right Touchstrip Mode #%d" +msgstr "à€Šà€œà€”à„‡ à€Ÿà€šà€žà„à€Ÿà„à€°à€żà€Ș à€źà„‹à€Ą #%d" -#: ../data/gnome-settings-daemon.schemas.in.h:26 -msgid "Screen reader" -msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà€°" +#: ../plugins/wacom/gsd-wacom-device.c:966 +#, c-format +msgid "Left Touchring Mode Switch" +msgstr "à€Ąà€Ÿà€”à„‡ à€Ÿà€šà€°à€żà€‚à€— à€źà„‹à€Ą à€žà„à€”à€żà€šà„" -#: ../data/gnome-settings-daemon.schemas.in.h:27 -msgid "" -"Set to True to enable the housekeeping plugin, to prune transient file " -"caches." -msgstr "" -"à€čà€Ÿà€Šà€žà€•à€żà€Șà„€à€‚à€— à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡, à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€«à€Ÿà€‡à€Č à€•à„…à€¶ à€•à€Ÿà€ąà„‚à€Ł " -"à€Ÿà€Ÿà€•à€Čà„‡ à€œà€Ÿà€€à„€à€Č." +#: ../plugins/wacom/gsd-wacom-device.c:968 +#, c-format +msgid "Right Touchring Mode Switch" +msgstr "à€Šà€œà€”à„‡ à€Ÿà€šà€°à€żà€‚à€— à€źà„‹à€Ą à€žà„à€”à€żà€šà„" -#: ../data/gnome-settings-daemon.schemas.in.h:28 -msgid "Set to True to enable the plugin to manage clipboard settings." -msgstr "" -"à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ " -"à€œà€Ÿà€€à„‡." +#: ../plugins/wacom/gsd-wacom-device.c:971 +#, c-format +msgid "Left Touchstrip Mode Switch" +msgstr "à€Ąà€Ÿà€”à„‡ à€Ÿà€šà€žà„à€Ÿà„à€°à€żà€Ș à€źà„‹à€Ą à€žà„à€”à€żà€šà„" -#: ../data/gnome-settings-daemon.schemas.in.h:29 -msgid "Set to True to enable the plugin to manage desktop background settings." -msgstr "" -"à€Ąà„‡à€žà„à€•à€Ÿà„‰à€Ș à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ " -"à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/wacom/gsd-wacom-device.c:973 +#, c-format +msgid "Right Touchstrip Mode Switch" +msgstr "à€Šà€œà€”à„‡ à€Ÿà€šà€žà„à€Ÿà„à€°à€żà€Ș à€źà„‹à€Ą à€žà„à€”à€żà€šà„" -#: ../data/gnome-settings-daemon.schemas.in.h:30 -msgid "Set to True to enable the plugin to manage font settings." -msgstr "à€«à„‰à€šà„à€Ÿ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/wacom/gsd-wacom-device.c:978 +#, c-format +msgid "Mode Switch #%d" +msgstr "à€źà„‹à€Ą à€žà„à€”à€żà€šà„ #%d" -#: ../data/gnome-settings-daemon.schemas.in.h:31 -msgid "Set to True to enable the plugin to manage keyboard settings." -msgstr "à€•à€łà€«à€Čà€• à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/wacom/gsd-wacom-device.c:1050 +#, c-format +msgid "Left Button #%d" +msgstr "à€Ąà€Ÿà€”à„‡ à€Źà€Ÿà€š #%d" -#: ../data/gnome-settings-daemon.schemas.in.h:32 -msgid "" -"Set to True to enable the plugin to manage locking screen on smartcard " -"removal." -msgstr "" -"à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Čà„à€Żà€Ÿà€”à€° à€Șà€Ąà€Šà€Ÿ à€•à„à€Čà„‚à€Șà€Źà€‚à€Š à€•à€°à€Łà„‡ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà„€à€€ à€•à€°à€Łà„‡ à€žà„à€°à„‚ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ " -"à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/wacom/gsd-wacom-device.c:1053 +#, c-format +msgid "Right Button #%d" +msgstr "à€Šà€œà€”à„‡ à€Źà€Ÿà€š #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1056 +#, c-format +msgid "Top Button #%d" +msgstr "à€¶à„€à€°à„à€· à€Źà€Ÿà€š #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1059 +#, c-format +msgid "Bottom Button #%d" +msgstr "à€€à€ł à€Źà€Ÿà€š #%d" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:5 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "à€”à„…à€•à„‰à€ź à€Ÿà„…à€Źà€Čà„‡à€Ÿà€•à€°à„€à€€à€Ÿ à€Čà€żà€Ÿ LED à€žà€‚à€Șà€Ÿà€Šà€żà€€ à€•à€°à€Ÿ" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +msgid "Authentication is required to modify the lit LED for a Wacom tablet" +msgstr "à€”à„…à€•à„‰à€ź à€Ÿà„…à€Źà€Čà„‡à€Ÿà€•à€°à„€à€€à€Ÿ LED à€žà„à€°à„‚ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€“à€łà€– à€Șà€Ÿà€”à€Łà„‡ à€†à€”à€¶à„à€Żà€• à€†à€čà„‡" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:500 +msgid "Could not switch the monitor configuration" +msgstr "à€źà„‰à€šà„€à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Źà€Šà€Čà€”à€żà€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:524 +msgid "Could not restore the display's configuration" +msgstr "à€Šà„ƒà€·à„à€Żà€šà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Șà„‚à€°à„à€”à€”à€€ à€•à€°à€Łà„à€Żà€Ÿà€ž à€…à€¶à€•à„à€Ż" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:549 +msgid "Could not restore the display's configuration from a backup" +msgstr "à€Źà„…à€•à€…à€Ș à€Șà€Ÿà€žà„‚à€š à€Šà„ƒà€·à„à€Żà€šà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Șà„‚à€°à„à€”à€”à€€ à€•à€°à€Łà„à€Żà€Ÿà€ž à€…à€¶à€•à„à€Ż" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:570 +#, c-format +msgid "The display will be reset to its previous configuration in %d second" +msgid_plural "" +"The display will be reset to its previous configuration in %d seconds" +msgstr[0] "%d à€žà„‡à€•à€‚à€Šà€Ÿà€€ à€Šà„ƒà€·à„à€Ż à€źà€Ÿà€—à„€à€Č à€žà€‚à€°à€šà€šà€Ÿ à€Șà„à€°à€źà€Ÿà€Łà„‡ à€Șà„‚à€°à„à€”à€”à€€à„ à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č" +msgstr[1] "%d à€žà„‡à€•à€‚à€Šà€Ÿà€€ à€Šà„ƒà€·à„à€Ż à€źà€Ÿà€—à„€à€Č à€žà€‚à€°à€šà€šà€Ÿ à€Șà„à€°à€źà€Ÿà€Łà„‡ à€Șà„‚à€°à„à€”à€”à€€à„ à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:619 +msgid "Does the display look OK?" +msgstr "à€Šà„ƒà€·à„à€Ż à€ à€żà€• à€Šà€żà€žà€€à„‡?" -#: ../data/gnome-settings-daemon.schemas.in.h:33 -msgid "Set to True to enable the plugin to manage mouse settings." -msgstr "à€źà€Ÿà€Šà€ž à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/xrandr/gsd-xrandr-manager.c:626 +msgid "_Restore Previous Configuration" +msgstr "à€źà€Ÿà€—à„€à€Č à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Șà„‚à€°à„à€”à€”à€€ à€•à€°à€Ÿ (_R)" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:627 +msgid "_Keep This Configuration" +msgstr "à€čà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€œà€Șà€”à€Ÿ (_K)" -#: ../data/gnome-settings-daemon.schemas.in.h:34 -msgid "Set to True to enable the plugin to manage multimedia keys settings." -msgstr "" -"à€źà€Čà„à€Ÿà€żà€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ " -"à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/xrandr/gsd-xrandr-manager.c:708 +msgid "The selected configuration for displays could not be applied" +msgstr "à€Šà„ƒà€·à„à€Ż à€•à€°à„€à€€à€Ÿ à€šà€żà€”à€Ąà€Čà„‡à€Čà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Čà€Ÿà€—à„‚ à€•à€°à€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" -#: ../data/gnome-settings-daemon.schemas.in.h:35 -msgid "Set to True to enable the plugin to manage sound sample caches." -msgstr "" -"sound sample caches à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ True à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ " -"à€•à€°à€Ÿ." +#: ../plugins/xrandr/gsd-xrandr-manager.c:1358 +#, c-format +msgid "Could not refresh the screen information: %s" +msgstr "à€Șà€Ąà€Šà€Ÿ à€źà€Ÿà€čà€żà€€à„€ à€Șà„à€šà„à€č à€Šà€Ÿà€–à€Č à€•à€°à€Łà„à€Żà€Ÿà€ž à€…à€¶à€•à„à€Ż: %s" -#: ../data/gnome-settings-daemon.schemas.in.h:36 -msgid "" -"Set to True to enable the plugin to manage the accessibility keyboard " -"settings." -msgstr "" -"à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€• à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ " -"à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/xrandr/gsd-xrandr-manager.c:1362 +msgid "Trying to switch the monitor configuration anyway." +msgstr "à€źà„‰à€šà„€à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€•à€žà„‡à€čà„€ à€•à€°à„‚à€š à€Źà€Šà€Čà€”à€żà€Łà„à€Żà€Ÿà€šà€Ÿ à€Șà„à€°à€Żà€€à„à€š à€•à€°à€€ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:37 -msgid "Set to True to enable the plugin to manage the keybindings." -msgstr "à€•à€łà€«à€Čà€• à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/xrandr/gsd-xrandr-manager.c:1793 +msgid "Could not apply the stored configuration for monitors" +msgstr "à€źà„‰à€šà„€à€Ÿà€° à€•à€°à„€à€€à€Ÿ à€žà€Ÿà€ à€”à€żà€Čà„‡à€Čà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Čà€Ÿà€—à„‚ à€•à€°à€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" -#: ../data/gnome-settings-daemon.schemas.in.h:38 -msgid "Set to True to enable the plugin to manage typing breaks." -msgstr "à€Źà„à€°à„‡à€• à€Ÿà€Ÿà€ˆà€Ș à€•à€°à€Łà„‡ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 +msgid "XRandR" +msgstr "XRandR" -#: ../data/gnome-settings-daemon.schemas.in.h:39 -msgid "Set to True to enable the plugin to manage xrandr settings." -msgstr "xrandr à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 +msgid "Set up screen size and rotation settings" +msgstr "à€Șà€Ąà€Šà€Ÿ à€†à€•à€Ÿà€° à€” à€šà€•à„à€°à€Ÿà€•à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€šà€żà€¶à„à€šà€żà€€ à€•à€°à€Ÿ" -#: ../data/gnome-settings-daemon.schemas.in.h:40 -msgid "Set to True to enable the plugin to manage xrdb settings." -msgstr "xrdb à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 +msgid "X Settings" +msgstr "X à€žà€‚à€Żà„‹à€œà€šà€Ÿ" -#: ../data/gnome-settings-daemon.schemas.in.h:41 -msgid "Set to True to enable the plugin to manage xsettings." -msgstr "" -"xsettings à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ " -"à€œà€Ÿà€€à„‡." +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 +msgid "Manage X Settings" +msgstr "X à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" -#: ../data/gnome-settings-daemon.schemas.in.h:42 -msgid "Slow keys" -msgstr "à€čà€łà„ à€•à€żà€œà„" +#, fuzzy +#~ msgid "Binding to enable or disable the touchpad." +#~ msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ à€”à€Ÿà€ąà€”à€żà€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€Źà€Ÿà€‚à€§à€Łà„€." -#: ../data/gnome-settings-daemon.schemas.in.h:43 -msgid "Sticky keys" -msgstr "à€žà„à€Ÿà€żà€•à„€ à€•à€żà€œà„" +#~ msgid "Volume step" +#~ msgstr "à€†à€”à€Ÿà€œ à€”à€Ÿà€ą" -#: ../data/gnome-settings-daemon.schemas.in.h:44 -msgid "The name of the keyboard shortcut to toggle the magnifier" -msgstr "à€”à€°à„à€§à€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿà€šà„‡ à€šà€Ÿà€”" +#~ msgid "Volume step as percentage of volume." +#~ msgstr "à€†à€”à€Ÿà€œ à€”à€Ÿà€ą à€Ÿà€•à„à€•à„‡à€”à€Ÿà€°à„€ à€žà„à€”à€°à„‚à€Șà€Ÿà€€." -#: ../data/gnome-settings-daemon.schemas.in.h:45 -msgid "The name of the keyboard shortcut to toggle the on-screen keyboard" -msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿà€šà„‡ à€šà€Ÿà€”" +#~ msgid "" +#~ "If a notification icon with display related things should be shown in the " +#~ "panel." +#~ msgstr "à€Šà„ƒà€¶à„à€Ż à€žà€‚à€Źà€‚à€§à€żà€€ à€˜à€Ÿà€šà€Ÿ à€Șà€Ÿà€Č à€…à€‚à€€à€°à„à€—à€€ à€žà„‚à€šà€šà€Ÿ à€šà€żà€šà„à€čà€žà€č à€Šà€°à„à€¶à€”à€Ÿà€Żà€šà„‡ à€…à€žà€Čà„à€Żà€Ÿà€ž." -#: ../data/gnome-settings-daemon.schemas.in.h:46 -msgid "The name of the keyboard shortcut to toggle the screen reader" -msgstr "à€žà„à€•à„à€°à„€à€š à€°à„€à€Ąà€° à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿà€šà„‡ à€šà€Ÿà€”" +#~ msgid "Show Displays in Notification Area" +#~ msgstr "à€žà„‚à€šà€šà€Ÿ à€•à€•à„à€·à€Ÿà€€ à€Šà„ƒà€¶à„à€Ż à€Šà€°à„à€¶à€”à€Ÿ" -#: ../data/gnome-settings-daemon.schemas.in.h:47 -msgid "" -"This is the name of the keyboard shortcut to toggle the magnifier. This name " -"will be shown in the keyboard shortcut preferences dialog." -msgstr "" -"à€”à€°à„à€§à€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€čà„‡ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€šà€Ÿà€” à€”à€Ÿà€Șà€°à€Ÿ. à€čà„‡ à€šà€Ÿà€” à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€†à€”à€Ą à€šà€żà€”à€Ą " -"à€žà€‚à€”à€Ÿà€Š à€…à€‚à€€à€°à„à€—à€€ à€Šà€Ÿà€–à€”à€żà€Čà„‡ à€œà€Ÿà€ˆà€Č." +#~ msgid "DPI" +#~ msgstr "DPI" -#: ../data/gnome-settings-daemon.schemas.in.h:48 -msgid "" -"This is the name of the keyboard shortcut to toggle the on-screen keyboard. " -"This name will be shown in the keyboard shortcut preferences dialog." -msgstr "" -"à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€čà„‡ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€šà€Ÿà€” à€”à€Ÿà€Șà€°à€Ÿ. à€čà„‡ à€šà€Ÿà€” à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ " -"à€†à€”à€Ą à€šà€żà€”à€Ą à€žà€‚à€”à€Ÿà€Š à€…à€‚à€€à€°à„à€—à€€ à€Šà€Ÿà€–à€”à€żà€Čà„‡ à€œà€Ÿà€ˆà€Č." +#~ msgid "" +#~ "The resolution used for converting font sizes to pixel sizes, in dots per " +#~ "inch." +#~ msgstr "" +#~ "à€«à„‰à€šà„à€Ÿ à€†à€•à€Ÿà€°à€Čà€Ÿ à€Șà„€à€•à„à€žà„‡à€Č à€†à€•à€Ÿà€°à€Ÿà€€ à€°à„‚à€Șà€Ÿà€‚à€€à€°à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€°à„‡à€œà„‹à€Čà„à€Żà„‚à€¶à€š, à€Ąà„‰à€Ÿà€žà„ à€Šà€° " +#~ "à€‡à€‚à€š à€šà„à€°à„‚à€Ș." -#: ../data/gnome-settings-daemon.schemas.in.h:49 -msgid "" -"This is the name of the keyboard shortcut to toggle the screen reader. This " -"name will be shown in the keyboard shortcut preferences dialog." -msgstr "" -"à€žà„à€•à„à€°à„€à€š à€°à„€à€Ąà€° à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€čà„‡ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€šà€Ÿà€” à€”à€Ÿà€Șà€°à€Ÿ. à€čà„‡ à€šà€Ÿà€” à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€Șà€žà€‚à€€à„€ " -"à€žà€‚à€”à€Ÿà€Šà€Ÿà€€ à€Šà€Ÿà€–à€”à€Čà„‡ à€œà€Ÿà€ˆà€Č." +#~ msgid "Allowed keys" +#~ msgstr "à€žà„à€”à„€à€•à€Ÿà€°à„à€Ż à€•à€żà€œà„" -#: ../data/gnome-settings-daemon.schemas.in.h:50 -msgid "Toggle magnifier" -msgstr "à€Ÿà„‰à€—à€Č à€”à€°à„à€§à€•" +#~ msgid "" +#~ "If non-empty, keybindings will be ignored unless their GConf directory is " +#~ "in the list. This is useful for lockdown." +#~ msgstr "" +#~ "à€°à€żà€•à€Ÿà€źà„‡ à€šà€žà€Čà„à€Żà€Ÿà€ž, à€•à€żà€Źà€Ÿà€‡à€šà„à€Ąà„€à€‚à€— à€€à„‹à€Șà€°à„à€Żà€‚à€€ à€Šà„à€°à„à€Čà€•à„à€· à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č à€œà„‹à€Șà€°à„à€Żà€‚à€€ à€€à„à€Żà€Ÿà€‚à€šà„€ GConf à€Ąà€żà€°à„‡à€•à„à€Ÿà„à€°à„€ " +#~ "à€Żà€Ÿà€Šà„€à€€ à€‰à€Șà€Čà„à€Źà€§ à€†à€čà„‡. lockdown à€•à€°à„€à€€à€Ÿ à€‰à€Șà€Żà„‹à€—à„€ à€†à€čà„‡." -#: ../data/gnome-settings-daemon.schemas.in.h:51 -msgid "Toggle on-screen keyboard" -msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€Ÿà„‰à€—à€Č à€•à€°à€Ÿ" +#~ msgid "Bounce keys" +#~ msgstr "à€Źà€Ÿà€Šà€šà„à€žà„ à€•à€żà€œà„" -#: ../data/gnome-settings-daemon.schemas.in.h:52 -msgid "Toggle screen reader" -msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà€° à€Ÿà„‰à€—à€Č à€•à€°à€Ÿ" +#~ msgid "Command used to turn the magnifier on or off." +#~ msgstr "à€”à€°à„à€§à€• à€žà„à€°à„‚ à€•à€żà€‚à€”à€Ÿ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Șà€Ÿà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶." -#: ../data/gnome-settings-daemon.schemas.in.h:53 -msgid "Whether the bounce keys keyboard accessibility feature is turned on." -msgstr "à€Źà€Ÿà€Šà€šà„à€žà„ à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." - -#: ../data/gnome-settings-daemon.schemas.in.h:54 -msgid "Whether the mouse keys keyboard accessibility feature is turned on." -msgstr "à€źà€Ÿà€Šà€ž à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." - -#: ../data/gnome-settings-daemon.schemas.in.h:55 -msgid "Whether the on-screen keyboard is turned on." -msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." - -#: ../data/gnome-settings-daemon.schemas.in.h:56 -msgid "Whether the screen magnifier is turned on." -msgstr "à€Șà€Ąà€Šà€Ÿ à€”à€°à„à€§à€• à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." - -#: ../data/gnome-settings-daemon.schemas.in.h:57 -msgid "Whether the screen reader is turned on." -msgstr "à€Șà€Ąà€Šà€Ÿ à€”à€Ÿà€šà€• à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." - -#: ../data/gnome-settings-daemon.schemas.in.h:58 -msgid "Whether the slow keys keyboard accessibility feature is turned on." -msgstr "à€čà€łà„ à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." - -#: ../data/gnome-settings-daemon.schemas.in.h:59 -msgid "Whether the sticky keys keyboard accessibility feature is turned on." -msgstr "à€žà„à€Ÿà€żà€•à„€ à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." +#~ msgid "Command used to turn the on-screen keyboard on or off." +#~ msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€žà„à€°à„‚ à€•à€żà€‚à€”à€Ÿ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Șà€Ÿà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶." -#: ../gnome-settings-daemon/main.c:55 -msgid "Enable debugging code" -msgstr "à€Ąà„€à€Źà€—à„€à€‚à€— à€•à„‹à€Ą à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" +#~ msgid "Command used to turn the screen reader on or off." +#~ msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà„€à€° à€žà„à€°à„‚ à€•à€żà€‚à€”à€Ÿ à€Źà€‚à€Š à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€”à€Ÿà€Șà€°à€Łà„à€Żà€Ÿà€œà„‹à€—à„€ à€†à€Šà„‡à€¶." -#: ../gnome-settings-daemon/main.c:56 -msgid "Don't become a daemon" -msgstr "à€Ąà„€à€źà€š à€Źà€šà„‚ à€šà€•à€Ÿ" - -#: ../gnome-settings-daemon/main.c:57 -msgid "GConf prefix from which to load plugin settings" -msgstr "à€Șà„à€Čà€—à€‡à€š à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Šà€Ÿà€–à€Č à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€à€šà„‡ GConf à€Șà„‚à€°à„à€”à€Șà€Š" +#~ msgid "Enable accessibility keyboard plugin" +#~ msgstr "à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../gnome-settings-daemon/main.c:58 -msgid "Exit after a time - for debugging" -msgstr "" +#~ msgid "Enable background plugin" +#~ msgstr "à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:1 -msgid "Accessibility Keyboard" -msgstr "à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€•" +#~ msgid "Enable clipboard plugin" +#~ msgstr "à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:2 -msgid "Accessibility keyboard plugin" -msgstr "à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š" +#~ msgid "Enable font plugin" +#~ msgstr "à€«à„‰à€šà„à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:388 -#, c-format -msgid "There was an error displaying help: %s" -msgstr "à€źà€Šà€€ à€Šà€°à„à€¶à€”à€Łà„à€Żà€Ÿà€€ à€šà„‚à€• à€à€Ÿà€Čà„€: %s" +#~ msgid "Enable housekeeping plugin" +#~ msgstr "à€čà€Ÿà€Šà€žà€•à€żà€Șà„€à€‚à€— à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:519 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:585 -msgid "Do you want to activate Slow Keys?" -msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€žà€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:520 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:586 -msgid "Do you want to deactivate Slow Keys?" -msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" +#~ msgid "Enable keybindings plugin" +#~ msgstr "à€•à€żà€Źà€Ÿà€‚à€§à€Łà„€ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€à€Ÿ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:521 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:587 -msgid "" -"You just held down the Shift key for 8 seconds. This is the shortcut for " -"the Slow Keys feature, which affects the way your keyboard works." -msgstr "" -"à€€à„à€źà„à€čà„€ à€šà„à€•à€€à„‡à€š Shift à€•à€ż 8 à€žà„‡à€•à€‚à€Š à€•à€°à„€à€€à€Ÿ à€Šà€Ÿà€Źà„‚à€š à€ à„‡à€”à€Čà„‡ à€†à€čà„‡. à€čà„‡ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€•à€°à„€à€€à€Ÿ à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€†à€čà„‡, " -"à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€•à€łà€«à€Čà€•à€šà„à€Żà€Ÿ à€•à€Ÿà€°à„à€Żà€Șà€Šà„à€§à€€à„€à€”à€° à€Șà„à€°à€­à€Ÿà€” à€Șà€Ąà€€à„‹." +#~ msgid "Enable keyboard plugin" +#~ msgstr "à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:546 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:685 -msgid "Don't activate" -msgstr "à€žà€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:546 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:685 -msgid "Don't deactivate" -msgstr "à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:552 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:691 -msgid "Activate" -msgstr "à€žà€•à„à€°à„€à€Ż" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:552 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:691 -msgid "Deactivate" -msgstr "à€šà€żà€·à„à€•à„à€°à„€à€Ż" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:608 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:749 -msgid "Do_n't activate" -msgstr "à€žà€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ (_n)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:608 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:749 -msgid "Do_n't deactivate" -msgstr "à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ (_n)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:611 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:752 -msgid "_Activate" -msgstr "à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ(_A)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:611 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:752 -msgid "_Deactivate" -msgstr "à€…à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ(_D)" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:615 -msgid "Slow Keys Alert" -msgstr "à€§à€żà€źà„€ à€•à€ż à€žà€€à€°à„à€•à€€à€Ÿ" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:655 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:723 -msgid "Do you want to activate Sticky Keys?" -msgstr "à€žà„à€Ÿà„€à€•à„€ à€•à€ż à€žà€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:656 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:724 -msgid "Do you want to deactivate Sticky Keys?" -msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€žà„à€Ÿà€żà€•à„€ à€•à€ż à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" +#~ msgid "Enable media keys plugin" +#~ msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:658 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:726 -msgid "" -"You just pressed the Shift key 5 times in a row. This is the shortcut for " -"the Sticky Keys feature, which affects the way your keyboard works." -msgstr "" -"à€€à„à€źà„à€čà„€ à€šà„à€•à€€à„‡à€š Shift à€•à€ż 5 à€”à„‡à€łà€Ÿ à€à€•à€Ÿ à€“à€łà„€à€€ à€Šà€Ÿà€Źà„‚à€š à€ à„‡à€”à€Čà„‡ à€čà„‹à€€à„‡. à€čà„‡ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€•à€°à„€à€€à€Ÿ à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€†à€čà„‡, " -"à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€•à€łà€«à€Čà€•à€šà„à€Żà€Ÿ à€•à€Ÿà€°à„à€Żà€Șà€Šà„à€§à€€à„€à€”à€° à€Șà„à€°à€­à€Ÿà€” à€Șà€Ąà€€à„‹." +#~ msgid "Enable mouse plugin" +#~ msgstr "à€źà€Ÿà€Šà€ž à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:660 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:728 -msgid "" -"You just pressed two keys at once, or pressed the Shift key 5 times in a " -"row. This turns off the Sticky Keys feature, which affects the way your " -"keyboard works." -msgstr "" -"à€€à„à€źà„à€čà„€ à€šà„à€•à€€à„‡à€š à€Šà„‹à€š à€•à€ż à€à€•à€Ÿà€š à€”à„‡à€łà€Ÿ, à€•à€żà€‚à€”à€Ÿ Shift à€•à€ż 5 à€žà„‡à€•à€‚à€Š à€•à€°à„€à€€à€Ÿ à€Šà€Ÿà€Źà„‚à€š à€ à„‡à€”à€Čà„‡ à€čà„‹à€€à„‡. à€Żà€Ÿ à€čà€łà„à€”à€Ÿà€° " -"à€•à€ż à€…à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź à€čà„‹à€€à„‡, à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€•à€łà€«à€Čà€•à€šà„à€Żà€Ÿ à€•à€Ÿà€°à„à€Żà€Șà€Šà„à€§à€€à„€à€”à€° à€Șà„à€°à€­à€Ÿà€” à€Șà€Ąà€€à„‹." +#~ msgid "Enable smartcard plugin" +#~ msgstr "à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€Șà„à€Čà€—à€‡à€š à€žà„à€°à„‚ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:756 -msgid "Sticky Keys Alert" -msgstr "à€žà„à€Ÿà€żà€•à„€ à€•à€ż à€žà€€à€°à„à€•à€€à€Ÿ" +#~ msgid "Enable sound plugin" +#~ msgstr "à€†à€”à€Ÿà€œ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:920 -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 -msgid "Universal Access Preferences" -msgstr "à€œà€Ÿà€—à€€à€żà€• à€Șà„à€°à€”à„‡à€¶ à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" +#~ msgid "Enable typing breaks plugin" +#~ msgstr "à€Źà„à€°à„‡à€• à€Șà„à€Čà€—à€‡à€š à€Ÿà€Ÿà€‡à€Ș à€•à€°à€Łà„‡ à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 -msgid "Enhance _contrast in colors" -msgstr "à€°à€‚à€— à€źà€§à€żà€Č à€­à„‡à€Š à€”à€Ÿà€ąà€”à€Ÿ (_c)" +#~ msgid "Enable xrandr plugin" +#~ msgstr "xrandr à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 -msgid "Make _text larger and easier to read" -msgstr "à€Șà€Ÿà€ à„à€Ż à€źà„‹à€ à„‡ à€” à€”à€Ÿà€šà€š à€•à€°à„€à€€à€Ÿ à€žà„à€Čà€­ à€•à€°à€Ÿ (_t)" +#~ msgid "Enable xrdb plugin" +#~ msgstr "xrdb à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 -msgid "Press and _hold keys to accept them (Slow Keys)" -msgstr "à€žà„à€”à„€à€•à€Ÿà€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€ż à€Šà€Ÿà€Źà€Ÿ à€” à€œà€°à€Ÿ à€”à„‡à€ł à€§à€°à„‚à€š à€ à„‡à€”à€Ÿ (à€čà€łà„ à€•à€ż) (_h)" +#~ msgid "Enable xsettings plugin" +#~ msgstr "xsettings à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 -msgid "Use on-screen _keyboard" -msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€”à€Ÿà€Șà€°à€Ÿ (_k)" +#~ msgid "On-screen keyboard" +#~ msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€•" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 -msgid "Use screen _magnifier" -msgstr "à€žà„à€•à„à€°à„€à€š à€”à€°à„à€§à€• à€”à€Ÿà€Șà€°à€Ÿ (_m)" +#~ msgid "Screen magnifier" +#~ msgstr "à€žà„à€•à„à€°à„€à€š à€”à€°à„à€§à€•" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 -msgid "Use screen _reader" -msgstr "à€Șà€Šà€Ąà€Ÿ à€”à€Ÿà€šà€•à€šà€Ÿ à€”à€Ÿà€Șà€° à€•à€°à€Ÿ (_r)" +#~ msgid "Screen reader" +#~ msgstr "à€žà„à€•à„à€°à„€à€š à€°à€żà€Ąà€°" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 -msgid "_Ignore duplicate keypresses (Bounce Keys)" -msgstr "à€Șà„à€šà„à€čà€Ÿà€Șà„à€šà„à€čà€Ÿ à€•à€ż à€Šà€Ÿà€Źà€Čà„à€Żà€Ÿà€ž à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Ÿ (à€Źà€Ÿà€Šà€šà„à€žà„ à€•à€ż) (_I)" +#~ msgid "" +#~ "Set to True to enable the housekeeping plugin, to prune transient file " +#~ "caches." +#~ msgstr "" +#~ "à€čà€Ÿà€Šà€žà€•à€żà€Șà„€à€‚à€— à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡, à€œà„à€Żà€Ÿà€źà„à€łà„‡ à€«à€Ÿà€‡à€Č à€•à„…à€¶ " +#~ "à€•à€Ÿà€ąà„‚à€Ł à€Ÿà€Ÿà€•à€Čà„‡ à€œà€Ÿà€€à„€à€Č." -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 -msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" -msgstr "à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€•à€°à„€à€€à€Ÿ à€à€•à€Ÿ à€”à„‡à€łà„€ à€à€•à€š à€•à€ż à€Šà€Ÿà€Źà€Ÿ (à€žà„à€Ÿà€żà€•à„€ à€•à€ż) (_P)" +#~ msgid "Set to True to enable the plugin to manage clipboard settings." +#~ msgstr "" +#~ "à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ " +#~ "à€œà€Ÿà€€à„‡." -#: ../plugins/background/background.gnome-settings-plugin.in.h:1 -msgid "Background" -msgstr "à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€" +#~ msgid "" +#~ "Set to True to enable the plugin to manage desktop background settings." +#~ msgstr "" +#~ "à€Ąà„‡à€žà„à€•à€Ÿà„‰à€Ș à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ " +#~ "à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/background/background.gnome-settings-plugin.in.h:2 -msgid "Background plugin" -msgstr "à€Șà€Ÿà€°à„à€¶à„à€”à€­à„‚à€źà„€ à€Șà„à€Čà€—à€‡à€š" +#~ msgid "Set to True to enable the plugin to manage font settings." +#~ msgstr "" +#~ "à€«à„‰à€šà„à€Ÿ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:1 -msgid "Clipboard" -msgstr "à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą" +#~ msgid "Set to True to enable the plugin to manage keyboard settings." +#~ msgstr "" +#~ "à€•à€łà€«à€Čà€• à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ " +#~ "à€œà€Ÿà€€à„‡." -#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:2 -msgid "Clipboard plugin" -msgstr "à€•à„à€Čà€żà€Șà€Źà„‹à€°à„à€Ą à€Șà„à€Čà€—à€‡à€š" +#~ msgid "" +#~ "Set to True to enable the plugin to manage locking screen on smartcard " +#~ "removal." +#~ msgstr "" +#~ "à€žà„à€źà€Ÿà€°à„à€Ÿà€•à€Ÿà€°à„à€Ą à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€Čà„à€Żà€Ÿà€”à€° à€Șà€Ąà€Šà€Ÿ à€•à„à€Čà„‚à€Șà€Źà€‚à€Š à€•à€°à€Łà„‡ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà„€à€€ à€•à€°à€Łà„‡ à€žà„à€°à„‚ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ " +#~ "à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1 -msgid "Dummy" -msgstr "à€šà€•à€Čà„à€Č" +#~ msgid "Set to True to enable the plugin to manage mouse settings." +#~ msgstr "" +#~ "à€źà€Ÿà€Šà€ž à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2 -msgid "Dummy plugin" -msgstr "à€šà€•à€Čà„à€Č à€Șà„à€Čà€—à€‡à€š" +#~ msgid "Set to True to enable the plugin to manage multimedia keys settings." +#~ msgstr "" +#~ "à€źà€Čà„à€Ÿà€żà€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ " +#~ "à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/font/font.gnome-settings-plugin.in.h:1 -msgid "Font" -msgstr "à€«à„‰à€šà„à€Ÿ" - -#: ../plugins/font/font.gnome-settings-plugin.in.h:2 -msgid "Font plugin" -msgstr "à€«à„‰à€šà„à€Ÿ à€Șà„à€Čà€—à€‡à€š" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:64 -msgid "Don't show any warnings again for this filesystem" -msgstr "à€Żà€Ÿ à€«à€Ÿà€‡à€Čà€Șà„à€°à€Łà€Ÿà€Čà„€à€žà€Ÿà€ à„€ à€•à„à€ à€Čà„à€Żà€Ÿà€čà„€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Șà„à€šà„à€čà€Ÿ à€Šà€Ÿà€–à€”à„‚ à€šà€•à€Ÿ" +#~ msgid "Set to True to enable the plugin to manage sound sample caches." +#~ msgstr "" +#~ "sound sample caches à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ True à€…à€žà„‡ " +#~ "à€šà€żà€¶à„à€šà€żà€€ à€•à€°à€Ÿ." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 -msgid "Don't show any warnings again" -msgstr "à€•à„à€ à€Čà„à€Żà€Ÿà€čà„€ à€žà€Ÿà€”à€§à€Ÿà€šà€€à€Ÿ à€Șà„à€šà„à€čà€Ÿ à€Šà€Ÿà€–à€”à„‚ à€šà€•à€Ÿ" +#~ msgid "" +#~ "Set to True to enable the plugin to manage the accessibility keyboard " +#~ "settings." +#~ msgstr "" +#~ "à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€łà€«à€Čà€• à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ " +#~ "à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:79 -#, c-format -msgid "The volume \"%s\" has only %s disk space remaining." -msgstr "à€–à€‚à€Ą \"%s\" à€Żà„‡à€„à„‡ à€«à€•à„à€€ %s à€‰à€°à„à€”à€°à„€à€€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€†à€ąà€łà€Čà„€." +#~ msgid "Set to True to enable the plugin to manage the keybindings." +#~ msgstr "" +#~ "à€•à€łà€«à€Čà€• à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:82 -#, c-format -msgid "This computer has only %s disk space remaining." -msgstr "à€Żà€Ÿ à€žà€‚à€—à€Łà€•à€Ÿà€”à€° à€«à€•à„à€€ %s à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€‰à€°à„à€”à€°à„€à€€ à€†à€čà„‡." +#~ msgid "Set to True to enable the plugin to manage typing breaks." +#~ msgstr "" +#~ "à€Źà„à€°à„‡à€• à€Ÿà€Ÿà€ˆà€Ș à€•à€°à€Łà„‡ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ " +#~ "à€œà€Ÿà€€à„‡." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:98 -msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to another disk or partition." -msgstr "" -"à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à„‚à€š, à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€‡à€€à€° à€Ąà€żà€žà„à€• " -"à€•à€żà€‚à€”à€Ÿ à€Șà€Ÿà€°à„à€Ÿà€żà€¶à€šà€”à€° à€čà€Čà€”à„‚à€š à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." +#~ msgid "Set to True to enable the plugin to manage xrandr settings." +#~ msgstr "" +#~ "xrandr à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ " +#~ "à€œà€Ÿà€€à„‡." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:101 -msgid "" -"You can free up disk space by removing unused programs or files, or by " -"moving files to another disk or partition." -msgstr "" -"à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€‡à€€à€° à€Ąà€żà€žà„à€• à€•à€żà€‚à€”à€Ÿ à€Șà€Ÿà€°à„à€Ÿà€żà€¶à€šà€”à€° à€čà€Čà€”à„‚à€š " -"à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." +#~ msgid "Set to True to enable the plugin to manage xrdb settings." +#~ msgstr "" +#~ "xrdb à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:106 -msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to an external disk." -msgstr "" -"à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à„‚à€š, à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€Źà€Ÿà€čà„‡à€° " -"à€Ąà€żà€žà„à€•à€”à€° à€čà€Čà€”à„‚à€š à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." +#~ msgid "Set to True to enable the plugin to manage xsettings." +#~ msgstr "" +#~ "xsettings à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà€š à€•à€°à„€à€€à€Ÿ à€Șà„à€Čà€—à€‡à€š à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à€€à„€à€€ à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€ à€–à€°à„‡ à€…à€žà„‡ à€šà€żà€¶à„à€šà€żà€€ " +#~ "à€•à„‡à€Čà„‡ à€œà€Ÿà€€à„‡." -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:109 -msgid "" -"You can free up disk space by removing unused programs or files, or by " -"moving files to an external disk." -msgstr "" -"à€š à€”à€Ÿà€Șà€°à€Čà„‡à€Čà„‡ à€•à€Ÿà€°à„à€Żà€•à„à€°à€ź à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„ à€•à€Ÿà€ąà„‚à€š, à€•à€żà€‚à€”à€Ÿ à€«à€Ÿà€‡à€Čà„à€žà„à€Čà€Ÿ à€Źà€Ÿà€čà„‡à€°à„€à€Č à€Ąà€żà€žà„à€•à€”à€° à€čà€Čà€”à„‚à€š à€€à„à€źà„à€čà„€ à€Ąà€żà€žà„à€• " -"à€œà€Ÿà€—à€Ÿ à€źà„‹à€•à€łà„€ à€•à€°à„‚ à€¶à€•à€€à€Ÿ." +#~ msgid "Slow keys" +#~ msgstr "à€čà€łà„ à€•à€żà€œà„" -#. Set up all the window stuff here -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:204 -msgid "Low Disk Space" -msgstr "à€•à€źà„€ à€Ąà€żà€žà„à€• à€œà€Ÿà€—à€Ÿ" +#~ msgid "Sticky keys" +#~ msgstr "à€žà„à€Ÿà€żà€•à„€ à€•à€żà€œà„" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:439 -msgid "Empty Trash" -msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à€Ÿ" +#~ msgid "The name of the keyboard shortcut to toggle the magnifier" +#~ msgstr "à€”à€°à„à€§à€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿà€šà„‡ à€šà€Ÿà€”" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:447 -msgid "Examine..." -msgstr "à€”à€żà€¶à„à€Čà„‡à€·à„€à€€ à€•à€°à€Ÿ..." +#~ msgid "The name of the keyboard shortcut to toggle the on-screen keyboard" +#~ msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿà€šà„‡ à€šà€Ÿà€”" -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:454 -msgid "Ignore" -msgstr "à€Šà„à€°à„à€Čà€•à„à€· à€•à€°à€Ÿ" +#~ msgid "The name of the keyboard shortcut to toggle the screen reader" +#~ msgstr "à€žà„à€•à„à€°à„€à€š à€°à„€à€Ąà€° à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿà€šà„‡ à€šà€Ÿà€”" -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:96 -#, c-format -msgid "Removing item %lu of %lu" -msgstr "%lu à€Șà„ˆà€•à„€ à€˜à€Ÿà€• %lu à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€€ à€†à€čà„‡" +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the magnifier. This " +#~ "name will be shown in the keyboard shortcut preferences dialog." +#~ msgstr "" +#~ "à€”à€°à„à€§à€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€čà„‡ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€šà€Ÿà€” à€”à€Ÿà€Șà€°à€Ÿ. à€čà„‡ à€šà€Ÿà€” à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€†à€”à€Ą " +#~ "à€šà€żà€”à€Ą à€žà€‚à€”à€Ÿà€Š à€…à€‚à€€à€°à„à€—à€€ à€Šà€Ÿà€–à€”à€żà€Čà„‡ à€œà€Ÿà€ˆà€Č." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:116 -#, c-format -msgid "Removing: %s" -msgstr "à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€€ à€†à€čà„‡: %s" +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the on-screen " +#~ "keyboard. This name will be shown in the keyboard shortcut preferences " +#~ "dialog." +#~ msgstr "" +#~ "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€čà„‡ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€šà€Ÿà€” à€”à€Ÿà€Șà€°à€Ÿ. à€čà„‡ à€šà€Ÿà€” à€•à€łà€«à€Čà€• " +#~ "à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€†à€”à€Ą à€šà€żà€”à€Ą à€žà€‚à€”à€Ÿà€Š à€…à€‚à€€à€°à„à€—à€€ à€Šà€Ÿà€–à€”à€żà€Čà„‡ à€œà€Ÿà€ˆà€Č." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:244 -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:293 -msgid "Emptying the trash" -msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€€ à€†à€čà„‡" +#~ msgid "" +#~ "This is the name of the keyboard shortcut to toggle the screen reader. " +#~ "This name will be shown in the keyboard shortcut preferences dialog." +#~ msgstr "" +#~ "à€žà„à€•à„à€°à„€à€š à€°à„€à€Ąà€° à€Ÿà„‰à€—à€Č à€•à€°à€Łà„à€Żà€Ÿà€•à€°à„€à€€à€Ÿ à€čà„‡ à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ à€šà€Ÿà€” à€”à€Ÿà€Șà€°à€Ÿ. à€čà„‡ à€šà€Ÿà€” à€•à€łà€«à€Čà€• à€¶à€Ÿà€°à„à€Ÿà€•à€Ÿ " +#~ "à€Șà€žà€‚à€€à„€ à€žà€‚à€”à€Ÿà€Šà€Ÿà€€ à€Šà€Ÿà€–à€”à€Čà„‡ à€œà€Ÿà€ˆà€Č." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:269 -msgid "Preparing to empty trash..." -msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€Łà„à€Żà€Ÿà€šà„€ à€€à€Żà€Ÿà€°à„€ à€•à€°à€€ à€†à€čà„‡..." +#~ msgid "Whether the bounce keys keyboard accessibility feature is turned on." +#~ msgstr "à€Źà€Ÿà€Šà€šà„à€žà„ à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." -#. Translators: "Emptying trash from " -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:296 -msgid "From: " -msgstr "à€Șà€Ÿà€žà„‚à€š: " +#~ msgid "Whether the mouse keys keyboard accessibility feature is turned on." +#~ msgstr "à€źà€Ÿà€Šà€ž à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:357 -msgid "Empty all of the items from the trash?" -msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€à€€à„‚à€š à€žà€°à„à€” à€˜à€Ÿà€•à„‡ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€Ÿ?" +#~ msgid "Whether the on-screen keyboard is turned on." +#~ msgstr "à€‘à€š-à€žà„à€•à„à€°à„€à€š à€•à€łà€«à€Čà€• à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:360 -msgid "" -"If you choose to empty the trash, all items in it will be permanently lost. " -"Please note that you can also delete them separately." -msgstr "" -"à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à€Ÿà€Żà€šà„‡ à€ à€°à€”à€Čà„à€Żà€Ÿà€ž, à€€à„à€Żà€Ÿà€€à„€à€Č à€žà€°à„à€” à€˜à€Ÿà€•à„‡ à€šà„‡à€čà€źà„€à€•à€°à„€à€€à€Ÿ à€šà€Ÿà€čà„€à€žà„‡ à€čà„‹à€€à„€à€Č. à€€à„à€źà„à€čà„€ " -"à€€à„à€Żà€Ÿà€‚à€ž à€”à„‡à€—à€łà„à€Żà€Ÿà€Șà„à€°à€•à€Ÿà€°à„‡ à€šà€·à„à€Ÿ à€•à€°à„‚ à€¶à€•à€€à€Ÿ à€•à„ƒà€Șà€Żà€Ÿ à€čà„‡ à€Čà€•à„à€·à€Ÿà€€ à€ à„‡à€”à€Ÿ." +#~ msgid "Whether the screen magnifier is turned on." +#~ msgstr "à€Șà€Ąà€Šà€Ÿ à€”à€°à„à€§à€• à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." -#: ../plugins/housekeeping/gsd-ldsm-trash-empty.c:367 -msgid "_Empty Trash" -msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€Ÿ (_E)" +#~ msgid "Whether the screen reader is turned on." +#~ msgstr "à€Șà€Ąà€Šà€Ÿ à€”à€Ÿà€šà€• à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." -#: ../plugins/keybindings/gsd-keybindings-manager.c:139 -#, c-format -msgid "Key binding (%s) is invalid" -msgstr "à€•à€ż à€Źà€Ÿà€‚à€§à€Łà„€ (%s) à€…à€”à„ˆà€§ à€†à€čà„‡" +#~ msgid "Whether the slow keys keyboard accessibility feature is turned on." +#~ msgstr "à€čà€łà„ à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." -#: ../plugins/keybindings/gsd-keybindings-manager.c:197 -#, c-format -msgid "Key binding (%s) is incomplete" -msgstr "à€•à€ż à€Źà€Ÿà€‚à€§à€Łà„€ (%s) à€…à€Șà„‚à€°à„‡ à€†à€čà„‡" +#~ msgid "Whether the sticky keys keyboard accessibility feature is turned on." +#~ msgstr "à€žà„à€Ÿà€żà€•à„€ à€•à€żà€œà„ à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€—à„à€Łà€”à€żà€¶à„‡à€· à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€•à€Ÿ." -#: ../plugins/keybindings/gsd-keybindings-manager.c:493 -#, c-format -msgid "" -"Error while trying to run (%s)\n" -"which is linked to the key (%s)" -msgstr "" -"(%s) à€šà€Ÿà€Čà€”à€żà€€à„‡à€”à„‡à€łà„€ à€€à„à€°à„à€Ÿà„€ à€†à€ąà€łà€Čà„€\n" -"à€œà„‡ à€•à€ż (%s) à€žà€č à€œà„à€łà€Čà„€ à€†à€čà„‡" +#~ msgid "Don't become a daemon" +#~ msgstr "à€Ąà„€à€źà€š à€Źà€šà„‚ à€šà€•à€Ÿ" -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:1 -msgid "Keybindings" -msgstr "à€•à€żà€Źà€Ÿà€‚à€§à€Łà„€" +#~ msgid "GConf prefix from which to load plugin settings" +#~ msgstr "à€Șà„à€Čà€—à€‡à€š à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Šà€Ÿà€–à€Č à€•à€°à€Łà„à€Żà€Ÿà€žà€Ÿà€ à„€à€šà„‡ GConf à€Șà„‚à€°à„à€”à€Șà€Š" -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:2 -msgid "Keybindings plugin" -msgstr "à€•à€żà€Źà€Ÿà€‚à€§à€Łà„€ à€Șà„à€Čà€—à€‡à€š" +#~ msgid "Do you want to activate Slow Keys?" +#~ msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€žà€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 -msgid "Keyboard" -msgstr "à€•à€łà€«à€Čà€•" +#~ msgid "Do you want to deactivate Slow Keys?" +#~ msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€čà€łà„à€”à€Ÿà€° à€•à€ż à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 -msgid "Keyboard plugin" -msgstr "à€•à€łà€«à€Čà€• à€Șà„à€Čà€—à€‡à€š" +#~ msgid "Don't activate" +#~ msgstr "à€žà€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:137 -#, c-format -msgid "" -"Error activating XKB configuration.\n" -"It can happen under various circumstances:\n" -"- a bug in libxklavier library\n" -"- a bug in X server (xkbcomp, xmodmap utilities)\n" -"- X server with incompatible libxkbfile implementation\n" -"\n" -"X server version data:\n" -"%s\n" -"%d\n" -"%s\n" -"If you report this situation as a bug, please include:\n" -"- The result of %s\n" -"- The result of %s" -msgstr "" +#~ msgid "Don't deactivate" +#~ msgstr "à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:151 -msgid "" -"You are using XFree 4.3.0.\n" -"There are known problems with complex XKB configurations.\n" -"Try using a simpler configuration or taking a fresher version of XFree " -"software." -msgstr "" +#~ msgid "Activate" +#~ msgstr "à€žà€•à„à€°à„€à€Ż" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:236 -msgid "Unknown" -msgstr "" +#~ msgid "Deactivate" +#~ msgstr "à€šà€żà€·à„à€•à„à€°à„€à€Ż" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:305 -#, c-format -msgid "Keyboard Layout \"%s\"" -msgstr "" +#~ msgid "Do_n't activate" +#~ msgstr "à€žà€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ (_n)" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:428 -msgid "_Layouts" -msgstr "" +#~ msgid "Do_n't deactivate" +#~ msgstr "à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à„‚ à€šà€•à€Ÿ (_n)" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:435 -#, fuzzy -msgid "Keyboard _Preferences" -msgstr "à€źà€Ÿà€‰à€ž à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" +#~ msgid "_Activate" +#~ msgstr "à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ(_A)" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:441 -msgid "Show _Current Layout" -msgstr "" +#~ msgid "_Deactivate" +#~ msgstr "à€…à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ(_D)" -#: ../plugins/keyboard/modmap-dialog.ui.h:1 -msgid "A_vailable files:" -msgstr "à€‰à€Șà€Čà€Źà„à€§ à€«à€Ÿà€‡à€Č (_v):" +#~ msgid "Do you want to activate Sticky Keys?" +#~ msgstr "à€žà„à€Ÿà„€à€•à„€ à€•à€ż à€žà€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" -#: ../plugins/keyboard/modmap-dialog.ui.h:2 -msgid "Load modmap files" -msgstr "modmap à€«à€Ÿà€‡à€Č à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" +#~ msgid "Do you want to deactivate Sticky Keys?" +#~ msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ à€žà„à€Ÿà€żà€•à„€ à€•à€ż à€šà€żà€·à„à€•à„à€°à„€à€Ż à€•à€°à€Ÿà€Żà€šà„‡?" -#: ../plugins/keyboard/modmap-dialog.ui.h:3 -msgid "Would you like to load the modmap file(s)?" -msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ modmap à€«à€Ÿà€‡à€Č à€Šà€Ÿà€–à€Č à€•à€°à€Ÿà€Żà€Čà€Ÿ à€†à€”à€Ąà„‡à€Č à€•à€Ÿ?" +#~ msgid "Font" +#~ msgstr "à€«à„‰à€šà„à€Ÿ" -#: ../plugins/keyboard/modmap-dialog.ui.h:4 -msgid "_Do not show this message again" -msgstr "à€čà€Ÿ à€žà€‚à€Šà„‡à€¶ à€Șà„à€šà„à€čà€Ÿ à€Šà€Ÿà€–à€”à„‚ à€šà€•à€Ÿ (_D)" +#~ msgid "Font plugin" +#~ msgstr "à€«à„‰à€šà„à€Ÿ à€Șà„à€Čà€—à€‡à€š" -#: ../plugins/keyboard/modmap-dialog.ui.h:5 -msgid "_Load" -msgstr "à€­à€Ÿà€° (_L)" +#~ msgid "Removing item %lu of %lu" +#~ msgstr "%lu à€Șà„ˆà€•à„€ à€˜à€Ÿà€• %lu à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€€ à€†à€čà„‡" -#: ../plugins/keyboard/modmap-dialog.ui.h:6 -msgid "_Loaded files:" -msgstr "à€Šà€Ÿà€–à€Č à€•à„‡à€Čà„‡à€Čà„‡ à€«à€Ÿà€‡à€Č (_L):" +#~ msgid "Removing: %s" +#~ msgstr "à€•à€Ÿà€ąà„‚à€š à€Ÿà€Ÿà€•à€€ à€†à€čà„‡: %s" -#: ../plugins/keyboard/show-layout.ui.h:1 -#, fuzzy -msgid "Keyboard Layout" -msgstr "à€•à€łà€«à€Čà€•" +#~ msgid "Emptying the trash" +#~ msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€€ à€†à€čà„‡" -#: ../plugins/media-keys/gsd-media-keys-manager.c:195 -msgid "" -"Could not get default terminal. Verify that your default terminal command is " -"set and points to a valid application." -msgstr "" -"à€źà„à€Čà€­à„‚à€€ à€Ÿà€°à„à€źà€żà€šà€Č à€Șà„à€°à€Ÿà€Șà„à€€ à€•à€°à„‚ à€¶à€•à€€ à€šà€Ÿà€čà„€. à€€à„à€źà€šà„‡ à€źà„à€Čà€­à„‚à€€ à€Ÿà€°à„à€źà€żà€šà€Č à€†à€Šà„‡à€¶ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€” à€”à„ˆà€§ à€…à€šà„à€Șà„à€°à€Żà„‹à€— " -"à€•à€°à„€à€€à€Ÿ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€†à€čà„‡ à€Żà€Ÿà€šà„€ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Ÿ." +#~ msgid "Preparing to empty trash..." +#~ msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€Łà„à€Żà€Ÿà€šà„€ à€€à€Żà€Ÿà€°à„€ à€•à€°à€€ à€†à€čà„‡..." -#: ../plugins/media-keys/gsd-media-keys-manager.c:235 -#, c-format -msgid "" -"Couldn't execute command: %s\n" -"Verify that this is a valid command." -msgstr "" -"à€†à€Šà„‡à€¶ à€šà€Ÿà€Čà€”à„‚ à€¶à€•à€€ à€šà€Ÿà€čà„€: %s\n" -"à€čà„‡ à€”à„ˆà€§ à€†à€Šà„‡à€¶ à€†à€čà„‡ à€Żà€Ÿà€šà„€ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Ÿ." +#~ msgid "From: " +#~ msgstr "à€Șà€Ÿà€žà„‚à€š: " -#. translators: -#. * The device has been disabled -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:991 -msgid "Disabled" -msgstr "à€…à€•à€Ÿà€°à„à€Żà€•à„à€·à€ź" +#~ msgid "Empty all of the items from the trash?" +#~ msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€à€€à„‚à€š à€žà€°à„à€” à€˜à€Ÿà€•à„‡ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€Ÿ?" -#. translators: -#. * The number of sound outputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:998 -#, c-format -msgid "%u Output" -msgid_plural "%u Outputs" -msgstr[0] "%u à€†à€Šà€Ÿà€Șà„à€Ÿ" -msgstr[1] "%u à€†à€Šà€Ÿà€Șà„à€Ÿà€žà„" +#~ msgid "" +#~ "If you choose to empty the trash, all items in it will be permanently " +#~ "lost. Please note that you can also delete them separately." +#~ msgstr "" +#~ "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„€ à€•à€°à€Ÿà€Żà€šà„‡ à€ à€°à€”à€Čà„à€Żà€Ÿà€ž, à€€à„à€Żà€Ÿà€€à„€à€Č à€žà€°à„à€” à€˜à€Ÿà€•à„‡ à€šà„‡à€čà€źà„€à€•à€°à„€à€€à€Ÿ à€šà€Ÿà€čà„€à€žà„‡ à€čà„‹à€€à„€à€Č. à€€à„à€źà„à€čà„€ " +#~ "à€€à„à€Żà€Ÿà€‚à€ž à€”à„‡à€—à€łà„à€Żà€Ÿà€Șà„à€°à€•à€Ÿà€°à„‡ à€šà€·à„à€Ÿ à€•à€°à„‚ à€¶à€•à€€à€Ÿ à€•à„ƒà€Șà€Żà€Ÿ à€čà„‡ à€Čà€•à„à€·à€Ÿà€€ à€ à„‡à€”à€Ÿ." -#. translators: -#. * The number of sound inputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1008 -#, c-format -msgid "%u Input" -msgid_plural "%u Inputs" -msgstr[0] "%u à€‡à€‚à€Șà„à€Ÿ" -msgstr[1] "%u à€‡à€‚à€Șà„à€Ÿà€žà„" +#~ msgid "_Empty Trash" +#~ msgstr "à€•à€šà€°à€Ÿà€Șà„‡à€Ÿà„€ à€°à€żà€•à€Ÿà€źà„‡ à€•à€°à€Ÿ (_E)" -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1304 -msgid "System Sounds" -msgstr "à€Șà„à€°à€Łà€Ÿà€Čà„€ à€†à€”à€Ÿà€œ" +#~ msgid "Key binding (%s) is invalid" +#~ msgstr "à€•à€ż à€Źà€Ÿà€‚à€§à€Łà„€ (%s) à€…à€”à„ˆà€§ à€†à€čà„‡" -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 -msgid "Media keys" -msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż" +#~ msgid "Key binding (%s) is incomplete" +#~ msgstr "à€•à€ż à€Źà€Ÿà€‚à€§à€Łà„€ (%s) à€…à€Șà„‚à€°à„‡ à€†à€čà„‡" -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 -msgid "Media keys plugin" -msgstr "à€źà€żà€Ąà„€à€Żà€Ÿ à€•à€ż à€Șà€Čà„à€—à€‡à€š" +#~ msgid "" +#~ "Error while trying to run (%s)\n" +#~ "which is linked to the key (%s)" +#~ msgstr "" +#~ "(%s) à€šà€Ÿà€Čà€”à€żà€€à„‡à€”à„‡à€łà„€ à€€à„à€°à„à€Ÿà„€ à€†à€ąà€łà€Čà„€\n" +#~ "à€œà„‡ à€•à€ż (%s) à€žà€č à€œà„à€łà€Čà„€ à€†à€čà„‡" -#: ../plugins/mouse/gsd-mouse-manager.c:882 -msgid "Could not enable mouse accessibility features" -msgstr "à€•à€łà€«à€Čà€• à€žà„à€Čà€­à€€à€Ÿ à€”à„ˆà€¶à€żà€·à„à€Ÿà„à€Żà„‡ à€•à€Ÿà€°à„à€Żà€Ÿà€šà„à€”à„€à€€ à€•à€°à€Ÿ(_E)" +#~ msgid "Keybindings plugin" +#~ msgstr "à€•à€żà€Źà€Ÿà€‚à€§à€Łà„€ à€Șà„à€Čà€—à€‡à€š" -#: ../plugins/mouse/gsd-mouse-manager.c:884 -msgid "Mouse accessibility requires mousetweaks to be installed on your system." -msgstr "à€źà€Ÿà€Šà€ž à€Șà„à€°à€”à„‡à€¶à„€à€Ż à€•à€°à„€à€€à€Ÿ à€źà€Ÿà€Šà€žà€Ÿà„à€”à„€à€• à€Șà„à€°à€Łà€Ÿà€Čà„€à€”à€° à€Șà„à€°à€€à€żà€·à„à€ à€Ÿà€Șà„€à€€ à€…à€žà€Łà„à€Żà€Ÿà€šà„€ à€†à€”à€¶à„à€Żà€•à€€à€Ÿ à€†à€čà„‡." - -#: ../plugins/mouse/gsd-mouse-manager.c:887 -msgid "Mouse Preferences" -msgstr "à€źà€Ÿà€‰à€ž à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" +#, fuzzy +#~ msgid "Keyboard _Preferences" +#~ msgstr "à€źà€Ÿà€‰à€ž à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 -msgid "Mouse" -msgstr "à€źà€Ÿà€‰à€ž" +#~ msgid "A_vailable files:" +#~ msgstr "à€‰à€Șà€Čà€Źà„à€§ à€«à€Ÿà€‡à€Č (_v):" -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 -msgid "Mouse plugin" -msgstr "à€źà€Ÿà€Šà€ž à€Șà„à€Čà€—à€‡à€š" +#~ msgid "Load modmap files" +#~ msgstr "modmap à€«à€Ÿà€‡à€Č à€Šà€Ÿà€–à€Č à€•à€°à€Ÿ" -#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:1 -msgid "Typing Break" -msgstr "à€Ÿà€Ÿà€‡à€Șà€żà€‚à€— à€Źà„à€°à„‡à€•" - -#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:2 -msgid "Typing break plugin" -msgstr "à€Ÿà€Ÿà€Żà€Șà„€à€‚à€— à€–à€‚à€Ąà€š à€Șà„à€Čà€—à€‡à€š" +#~ msgid "Would you like to load the modmap file(s)?" +#~ msgstr "à€€à„à€źà„à€čà€Ÿà€Čà€Ÿ modmap à€«à€Ÿà€‡à€Č à€Šà€Ÿà€–à€Č à€•à€°à€Ÿà€Żà€Čà€Ÿ à€†à€”à€Ąà„‡à€Č à€•à€Ÿ?" -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 -msgid "Set up screen size and rotation settings" -msgstr "à€Șà€Ąà€Šà€Ÿ à€†à€•à€Ÿà€° à€” à€šà€•à„à€°à€Ÿà€•à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€šà€żà€¶à„à€šà€żà€€ à€•à€°à€Ÿ" +#~ msgid "_Load" +#~ msgstr "à€­à€Ÿà€° (_L)" -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 -msgid "XRandR" -msgstr "XRandR" +#~ msgid "_Loaded files:" +#~ msgstr "à€Šà€Ÿà€–à€Č à€•à„‡à€Čà„‡à€Čà„‡ à€«à€Ÿà€‡à€Č (_L):" -#: ../plugins/xrandr/gsd-xrandr-manager.c:225 -msgid "Could not switch the monitor configuration" -msgstr "à€źà„‰à€šà„€à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Źà€Šà€Čà€”à€żà€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" +#~ msgid "" +#~ "Could not get default terminal. Verify that your default terminal command " +#~ "is set and points to a valid application." +#~ msgstr "" +#~ "à€źà„à€Čà€­à„‚à€€ à€Ÿà€°à„à€źà€żà€šà€Č à€Șà„à€°à€Ÿà€Șà„à€€ à€•à€°à„‚ à€¶à€•à€€ à€šà€Ÿà€čà„€. à€€à„à€źà€šà„‡ à€źà„à€Čà€­à„‚à€€ à€Ÿà€°à„à€źà€żà€šà€Č à€†à€Šà„‡à€¶ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€†à€čà„‡ à€” à€”à„ˆà€§ " +#~ "à€…à€šà„à€Șà„à€°à€Żà„‹à€— à€•à€°à„€à€€à€Ÿ à€šà€żà€°à„à€Šà„‡à€¶à„€à€€ à€†à€čà„‡ à€Żà€Ÿà€šà„€ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Ÿ." -#: ../plugins/xrandr/gsd-xrandr-manager.c:249 -msgid "Could not restore the display's configuration" -msgstr "à€Šà„ƒà€·à„à€Żà€šà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Șà„‚à€°à„à€”à€”à€€ à€•à€°à€Łà„à€Żà€Ÿà€ž à€…à€¶à€•à„à€Ż" +#~ msgid "" +#~ "Couldn't execute command: %s\n" +#~ "Verify that this is a valid command." +#~ msgstr "" +#~ "à€†à€Šà„‡à€¶ à€šà€Ÿà€Čà€”à„‚ à€¶à€•à€€ à€šà€Ÿà€čà„€: %s\n" +#~ "à€čà„‡ à€”à„ˆà€§ à€†à€Šà„‡à€¶ à€†à€čà„‡ à€Żà€Ÿà€šà„€ à€€à€Șà€Ÿà€žà€Łà„€ à€•à€°à€Ÿ." -#: ../plugins/xrandr/gsd-xrandr-manager.c:274 -msgid "Could not restore the display's configuration from a backup" -msgstr "à€Źà„…à€•à€…à€Ș à€Șà€Ÿà€žà„‚à€š à€Šà„ƒà€·à„à€Żà€šà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Șà„‚à€°à„à€”à€”à€€ à€•à€°à€Łà„à€Żà€Ÿà€ž à€…à€¶à€•à„à€Ż" +#~ msgid "Mouse Preferences" +#~ msgstr "à€źà€Ÿà€‰à€ž à€Șà„à€°à€Ÿà€§à€Ÿà€šà„à€Żà€€à€Ÿ" -#: ../plugins/xrandr/gsd-xrandr-manager.c:295 -#, c-format -msgid "The display will be reset to its previous configuration in %d second" -msgid_plural "The display will be reset to its previous configuration in %d seconds" -msgstr[0] "%d à€žà„‡à€•à€‚à€Šà€Ÿà€€ à€Šà„ƒà€·à„à€Ż à€źà€Ÿà€—à„€à€Č à€žà€‚à€°à€šà€šà€Ÿ à€Șà„à€°à€źà€Ÿà€Łà„‡ à€Șà„‚à€°à„à€”à€”à€€à„ à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č" -msgstr[1] "%d à€žà„‡à€•à€‚à€Šà€Ÿà€€ à€Šà„ƒà€·à„à€Ż à€źà€Ÿà€—à„€à€Č à€žà€‚à€°à€šà€šà€Ÿ à€Șà„à€°à€źà€Ÿà€Łà„‡ à€Șà„‚à€°à„à€”à€”à€€à„ à€•à„‡à€Čà„‡ à€œà€Ÿà€ˆà€Č" +#~ msgid "Typing Break" +#~ msgstr "à€Ÿà€Ÿà€‡à€Șà€żà€‚à€— à€Źà„à€°à„‡à€•" -#: ../plugins/xrandr/gsd-xrandr-manager.c:344 -msgid "Does the display look OK?" -msgstr "à€Šà„ƒà€·à„à€Ż à€ à€żà€• à€Šà€żà€žà€€à„‡?" +#~ msgid "Typing break plugin" +#~ msgstr "à€Ÿà€Ÿà€Żà€Șà„€à€‚à€— à€–à€‚à€Ąà€š à€Șà„à€Čà€—à€‡à€š" -#: ../plugins/xrandr/gsd-xrandr-manager.c:350 -msgid "_Restore Previous Configuration" -msgstr "à€źà€Ÿà€—à„€à€Č à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Șà„‚à€°à„à€”à€”à€€ à€•à€°à€Ÿ (_R)" +#~ msgid "Rotation not supported" +#~ msgstr "à€šà€•à„à€°à€Ÿà€•à€Ÿà€° à€žà€źà€°à„à€„à„€à€€ à€šà€Ÿà€čà„€" -#: ../plugins/xrandr/gsd-xrandr-manager.c:351 -msgid "_Keep This Configuration" -msgstr "à€čà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€œà€Șà€”à€Ÿ (_K)" +#~ msgid "Could not save monitor configuration" +#~ msgstr "à€źà„‰à€šà„€à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€žà€Ÿà€ à€”à€żà€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" -#: ../plugins/xrandr/gsd-xrandr-manager.c:432 -msgid "The selected configuration for displays could not be applied" -msgstr "à€Šà„ƒà€·à„à€Ż à€•à€°à„€à€€à€Ÿ à€šà€żà€”à€Ąà€Čà„‡à€Čà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Čà€Ÿà€—à„‚ à€•à€°à€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" +#~ msgid "Normal" +#~ msgstr "à€žà€°à„à€”à€žà€Ÿà€§à€Ÿà€°à€Ł" -#: ../plugins/xrandr/gsd-xrandr-manager.c:970 -#, c-format -msgid "Could not refresh the screen information: %s" -msgstr "à€Șà€Ąà€Šà€Ÿ à€źà€Ÿà€čà€żà€€à„€ à€Șà„à€šà„à€č à€Šà€Ÿà€–à€Č à€•à€°à€Łà„à€Żà€Ÿà€ž à€…à€¶à€•à„à€Ż: %s" +#~ msgid "Left" +#~ msgstr "à€Ąà€Ÿà€”à„€" -#: ../plugins/xrandr/gsd-xrandr-manager.c:973 -msgid "Trying to switch the monitor configuration anyway." -msgstr "à€źà„‰à€šà„€à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€•à€žà„‡à€čà„€ à€•à€°à„‚à€š à€Źà€Šà€Čà€”à€żà€Łà„à€Żà€Ÿà€šà€Ÿ à€Șà„à€°à€Żà€€à„à€š à€•à€°à€€ à€†à€čà„‡." +#~ msgid "Right" +#~ msgstr "à€‰à€œà€”à„€" -#: ../plugins/xrandr/gsd-xrandr-manager.c:1684 -msgid "Rotation not supported" -msgstr "à€šà€•à„à€°à€Ÿà€•à€Ÿà€° à€žà€źà€°à„à€„à„€à€€ à€šà€Ÿà€čà„€" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1738 -msgid "Could not save monitor configuration" -msgstr "à€źà„‰à€šà„€à€Ÿà€° à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€žà€Ÿà€ à€”à€żà€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1756 -msgid "Normal" -msgstr "à€žà€°à„à€”à€žà€Ÿà€§à€Ÿà€°à€Ł" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1757 -msgid "Left" -msgstr "à€Ąà€Ÿà€”à„€" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1758 -msgid "Right" -msgstr "à€‰à€œà€”à„€" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1759 -msgid "Upside Down" -msgstr "à€”à€° à€–à€Ÿà€Čà„€" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1879 -msgid "_Configure Display Settings ..." -msgstr "à€Šà„ƒà€¶à„à€Ż à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€žà€‚à€Żà„‹à€œà„€à€€ à€•à€°à€Ÿ (_C) ..." - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1920 -msgid "Configure display settings" -msgstr "à€Šà„ƒà€¶à„à€Ż à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€žà€‚à€Żà„‹à€œà„€à€€ à€•à€°à€Ÿ" +#~ msgid "Upside Down" +#~ msgstr "à€”à€° à€–à€Ÿà€Čà„€" -#: ../plugins/xrandr/gsd-xrandr-manager.c:1980 -msgid "Could not apply the stored configuration for monitors" -msgstr "à€źà„‰à€šà„€à€Ÿà€° à€•à€°à„€à€€à€Ÿ à€žà€Ÿà€ à€”à€żà€Čà„‡à€Čà„€ à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€Čà€Ÿà€—à„‚ à€•à€°à€Łà„‡ à€¶à€•à„à€Ż à€šà€Ÿà€čà„€" +#~ msgid "_Configure Display Settings ..." +#~ msgstr "à€Šà„ƒà€¶à„à€Ż à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€žà€‚à€Żà„‹à€œà„€à€€ à€•à€°à€Ÿ (_C) ..." -#: ../plugins/xrdb/gsd-xrdb-manager.c:255 -#: ../plugins/xrdb/gsd-xrdb-manager.c:324 -msgid "Cannot determine user's home directory" -msgstr "à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€šà„€ à€źà„à€–à„à€Ż à€žà€‚à€šà€Żà„€à€•à€Ÿ à€“à€łà€–à„‚ à€¶à€•à€Čà„‡ à€šà€Ÿà€čà„€" - -#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:1 -msgid "Manage the X resource database" -msgstr "X à€žà„à€€à„à€°à„‹à€€ à€źà€Ÿà€čà€żà€€à„€à€•à„‹à€· à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" - -#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:2 -msgid "X Resource Database" -msgstr "X à€žà„à€€à„à€°à„‹à€€ à€źà€Ÿà€čà€żà€€à„€à€•à„‹à€·" +#~ msgid "Configure display settings" +#~ msgstr "à€Šà„ƒà€¶à„à€Ż à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€žà€‚à€Żà„‹à€œà„€à€€ à€•à€°à€Ÿ" -#: ../plugins/xsettings/gsd-xsettings-manager.c:596 -#, c-format -msgid "GConf key %s set to type %s but its expected type was %s\n" -msgstr "GConf à€•à€ż %s à€Șà„à€°à€•à€Ÿà€° %s à€•à€°à„€à€€à€Ÿ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€Șà€°à€‚à€€à„ à€…à€Șà„‡à€•à„à€·à„€à€€ à€Șà„à€°à€•à€Ÿà€° %s à€…à€žà„‡ à€čà„‹à€€à„‡\n" +#~ msgid "Cannot determine user's home directory" +#~ msgstr "à€”à€Ÿà€Șà€°à€•à€°à„à€€à„à€Żà€Ÿà€šà„€ à€źà„à€–à„à€Ż à€žà€‚à€šà€Żà„€à€•à€Ÿ à€“à€łà€–à„‚ à€¶à€•à€Čà„‡ à€šà€Ÿà€čà„€" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 -msgid "Manage X Settings" -msgstr "X à€žà€‚à€Żà„‹à€œà€šà€Ÿ à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" +#~ msgid "Manage the X resource database" +#~ msgstr "X à€žà„à€€à„à€°à„‹à€€ à€źà€Ÿà€čà€żà€€à„€à€•à„‹à€· à€”à„à€Żà€”à€žà„à€„à€Ÿà€Șà„€à€€ à€•à€°à€Ÿ" -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 -msgid "X Settings" -msgstr "X à€žà€‚à€Żà„‹à€œà€šà€Ÿ" +#~ msgid "X Resource Database" +#~ msgstr "X à€žà„à€€à„à€°à„‹à€€ à€źà€Ÿà€čà€żà€€à„€à€•à„‹à€·" +#~ msgid "GConf key %s set to type %s but its expected type was %s\n" +#~ msgstr "GConf à€•à€ż %s à€Șà„à€°à€•à€Ÿà€° %s à€•à€°à„€à€€à€Ÿ à€šà€żà€¶à„à€šà€żà€€ à€•à„‡à€Čà„‡ à€Șà€°à€‚à€€à„ à€…à€Șà„‡à€•à„à€·à„€à€€ à€Șà„à€°à€•à€Ÿà€° %s à€…à€žà„‡ à€čà„‹à€€à„‡\n" diff -Nru gnome-settings-daemon-3.4.0/po/nl.po gnome-settings-daemon-3.4.1/po/nl.po --- gnome-settings-daemon-3.4.0/po/nl.po 2011-10-31 09:43:36.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/nl.po 2012-04-12 09:54:01.000000000 +0000 @@ -5,25 +5,25 @@ # # Bas Wagter # Hein-Jan Leliveld -# Dennis Smit , 2000 -# Almer S. Tigelaar , 2001 -# Jan-Willem Harmanny , 2002 -# Huib Kleinhout , 2002 -# Ronald Hummelink , 2002 -# Reinout van Schouwen , 2002-2008 -# Tino Meinen , 2004, 2006–2008 -# Rob van den Berg , 2010 -# Hannie Dumoleyn , 2010–2011 +# +# Dennis Smit , 2000. +# Almer S. Tigelaar , 2001. +# Jan-Willem Harmanny , 2002. +# Huib Kleinhout , 2002. +# Ronald Hummelink , 2002. +# Reinout van Schouwen , 2002-2008. +# Tino Meinen , 2004, 2006–2008. +# Rob van den Berg , 2010. # Wouter Bolsterlee , 2006–2011. # Redmar , 2011. -# +# Hannie Dumoleyn , 2010–2012. msgid "" msgstr "" "Project-Id-Version: gnome-settings-daemon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-16 15:24+0200\n" -"PO-Revision-Date: 2011-10-16 15:25+0200\n" -"Last-Translator: Wouter Bolsterlee \n" +"POT-Creation-Date: 2012-03-30 21:29+0200\n" +"PO-Revision-Date: 2012-03-24 10:46+0100\n" +"Last-Translator: Hannie Dumoleyn \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Launchpad-Export-Date: 2011-09-24 06:48+0000\n" -"X-Generator: Launchpad (build 14012)\n" +"X-Generator: Lokalize 1.2\n" "X-DamnedLies-Scope: partial\n" # behouden/gebruiken @@ -40,52 +40,74 @@ msgstr "Gnome-instellingenvoorziening" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:1 -msgid "Command to be run when a device is added or removed." -msgstr "" -"Uit te voeren opdracht als een apparaat wordt toegevoegd of verwijderd." +msgid "Smartcard removal action" +msgstr "Actie bij verwijderen smartcard" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 -msgid "Device hotplug custom command" +msgid "" +"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " +"action will get performed when the smartcard used for log in is removed." msgstr "" -"Aangepaste opdracht bij toevoegen of verwijderen van apparaat (hotplug)" +"Stel dit in op ‘none’, ‘lock-screen’ of ‘force-logout’. De actie zal " +"uitgevoerd worden wanneer de smartcard die voor het aanmelden gebruikt is " +"verwijderd wordt." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 msgid "Disable touchpad while typing" msgstr "Touchpad uitschakelen tijdens het typen" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 -msgid "Distance before a drag is started." -msgstr "Afstand voordat slepen wordt gestart." +msgid "" +"Set this to TRUE if you have problems with accidentally hitting the touchpad " +"while typing." +msgstr "" +"Schakel dit in wanneer u problemen heeft met het per ongeluk aanraken van uw " +"touchpad tijdens het typen." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 -msgid "Double click time" -msgstr "Dubbelklik-tijd" +msgid "Enable horizontal scrolling" +msgstr "Horizontaal schuiven inschakelen" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 -msgid "Drag threshold" -msgstr "Sleepdrempel" +msgid "" +"Set this to TRUE to allow horizontal scrolling by the same method selected " +"with the scroll_method key." +msgstr "" +"Schakel dit in voor horizontaal scrollen met dezelfde methode die is " +"ingesteld bij de scroll_methodesleutel." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 -msgid "Enable horizontal scrolling" -msgstr "Horizontaal schuiven inschakelen" +msgid "Select the touchpad scroll method" +msgstr "Selecteer de touchpad-scrollmethode" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 -msgid "Enable mouse clicks with touchpad" -msgstr "Muisklikken met touchpad inschakelen" +msgid "" +"Select the touchpad scroll method. Supported values are: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "" +"Selecteer de touchpad-scrollmethode. Keuzemogelijkheden: 0 - uitgeschakeld, " +"1 - hoekscrollen, 2 - twee-vingerscrollen." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 -msgid "Enable touchpad" -msgstr "Touchpad inschakelen" +msgid "Enable mouse clicks with touchpad" +msgstr "Muisklikken met touchpad inschakelen" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 msgid "" -"Enables middle mouse button emulation through simultaneous left and right " -"button click." +"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." msgstr "" -"Emulatie van middelste muisknop inschakelen door tegelijk met links en " -"rechts te klikken." +"Schakel dit in voor de mogelijkheid om te klikken met uw muis door te tikken " +"op het touchpad." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 +msgid "Enable touchpad" +msgstr "Touchpad inschakelen" + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 +msgid "Set this to TRUE to enable all touchpads." +msgstr "Schakel dit in om alle touchpads te activeren." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 msgid "" "Highlights the current location of the pointer when the Control key is " "pressed and released." @@ -93,294 +115,262 @@ "Geeft aan waar de muisaanwijzer zich bevindt wanneer de CTRL-toets wordt " "ingedrukt en losgelaten." -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:12 -msgid "Length of a double click in milliseconds." -msgstr "Duur van dubbel klikken in milliseconden." - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 -msgid "Middle button emulation" -msgstr "Emulatie voor middelste muisknop" - #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 -msgid "Select the touchpad scroll method" -msgstr "Selecteer de touchpad-scrollmethode" +msgid "Double click time" +msgstr "Dubbelklik-tijd" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:15 -msgid "" -"Select the touchpad scroll method. Supported values are: \"disabled\", " -"\"edge-scrolling\", \"two-finger-scrolling\"." -msgstr "" -"Selecteer de touchpad-scrollmethode. Keuzemogelijkheden: 0 - uitgeschakeld, " -"1 - hoekscrollen, 2 - twee-vingerscrollen." +msgid "Length of a double click in milliseconds." +msgstr "Duur van dubbel klikken in milliseconden." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:16 -msgid "" -"Set this to TRUE if you have problems with accidentally hitting the touchpad " -"while typing." -msgstr "" -"Schakel dit in wanneer u problemen heeft met het per ongeluk aanraken van uw " -"touchpad tijdens het typen." +msgid "Drag threshold" +msgstr "Sleepdrempel" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:17 -msgid "" -"Set this to TRUE to allow horizontal scrolling by the same method selected " -"with the scroll_method key." -msgstr "" -"Schakel dit in voor horizontaal scrollen met dezelfde methode die is " -"ingesteld bij de scroll_methodesleutel." +msgid "Distance before a drag is started." +msgstr "Afstand voordat slepen wordt gestart." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:18 -msgid "" -"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." -msgstr "" -"Schakel dit in voor de mogelijkheid om te klikken met uw muis door te tikken " -"op het touchpad." +msgid "Middle button emulation" +msgstr "Emulatie voor middelste muisknop" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 -msgid "Set this to TRUE to enable all touchpads." -msgstr "Schakel dit in om alle touchpads te activeren." - -#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 msgid "" -"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " -"action will get performed when the smartcard used for log in is removed." +"Enables middle mouse button emulation through simultaneous left and right " +"button click." msgstr "" -"Stel dit in op ‘none’, ‘lock-screen’ of ‘force-logout’. De actie zal " -"uitgevoerd worden wanneer de smartcard die voor het aanmelden gebruikt is " -"verwijderd wordt." +"Emulatie van middelste muisknop inschakelen door tegelijk met links en " +"rechts te klikken." + +#: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 +msgid "Whether the tablet's orientation is locked, or rotated automatically." +msgstr "Of de oriĂ«ntatie van de tablet vast staat of automatisch roteert." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:21 -msgid "Smartcard removal action" -msgstr "Actie bij verwijderen smartcard" +msgid "Device hotplug custom command" +msgstr "" +"Aangepaste opdracht bij toevoegen of verwijderen van apparaat (hotplug)" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:22 -msgid "Whether the tablet's orientation is locked, or rotated automatically." -msgstr "Of de oriĂ«ntatie van de tablet vast staat of automatisch roteert." +msgid "Command to be run when a device is added or removed." +msgstr "" +"Uit te voeren opdracht als een apparaat wordt toegevoegd of verwijderd." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:1 #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:1 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 msgid "Activation of this plugin" msgstr "Activatie van deze plug-in" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:2 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 -msgid "Priority to use for this plugin" -msgstr "Te gebruiken prioriteit voor deze plug-in" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +msgid "Whether this plugin would be activated by gnome-settings-daemon or not" +msgstr "Of de plug-in door gnome-settings-daemon geactiveerd moet worden" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:3 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:5 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 -msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" -msgstr "" -"Te gebruiken prioriteit van deze plug-in in de opstartvolgorde van gnome-" -"settings-daemon" +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 +msgid "Priority to use for this plugin" +msgstr "Te gebruiken prioriteit voor deze plug-in" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 #: ../data/org.gnome.settings-daemon.plugins.gschema.xml.in.in.h:4 #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:14 #: ../data/org.gnome.settings-daemon.plugins.keyboard.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 #: ../data/org.gnome.settings-daemon.plugins.orientation.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 #: ../data/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml.in.in.h:4 -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:37 -msgid "Whether this plugin would be activated by gnome-settings-daemon or not" -msgstr "Of de plug-in door gnome-settings-daemon geactiveerd moet worden" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 +msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" +msgstr "" +"Te gebruiken prioriteit van deze plug-in in de opstartvolgorde van gnome-" +"settings-daemon" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:2 -msgid "Free percentage notify threshold" -msgstr "Vrije ruimte percentagenotificatiedrempel" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 +msgid "Wacom stylus absolute mode" +msgstr "Wacom stylus absolute mode" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 -msgid "Free space notify threshold" -msgstr "Notificatiedrempel voor gebrek aan vrije ruimte" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 +msgid "Enable this to set the tablet to absolute mode." +msgstr "Schakel dit in om de tablet in de absolute modus te zetten." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 -msgid "Minimum notify period for repeated warnings" -msgstr "Minimum notificatieperiode voor herhaalde waarschuwingen" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 +msgid "Wacom tablet area" +msgstr "Wacom tablet gebied" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 -msgid "Mount paths to ignore" -msgstr "Te negeren aankoppelpaden" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 +msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." +msgstr "" +"Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de hulpmiddelen " +"gebruikt kan worden." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 +msgid "Wacom tablet rotation" +msgstr "Wacom tablet-rotatie" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 msgid "" -"Percentage free space threshold for initial warning of low disk space. If " -"the percentage free space drops below this, a warning will be shown." +"Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " +"'ccw' for 90 degree counterclockwise." msgstr "" -"Vrije ruimte-percentagedrempel voor eerste waarschuwing voor weinig " -"schijfruimte. Indien het percentage vrije ruimte hieronder zakt, zal er een " -"waarschuwing gegeven worden." +"Stel dit in op 'none', 'cw' voor 90 graden met de klok mee, 'half' voor 180 " +"graden en 'ccw' voor 90 graden tegen de klok in." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 -msgid "Specify a list of mount paths to ignore when they run low on space." -msgstr "" -"Specificeer een lijst met te negeren aankoppelpaden bij weinig schijfruimte." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 +msgid "Wacom touch feature" +msgstr "Wacom aanraakopties" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 -msgid "" -"Specify a time in minutes. Subsequent warnings for a volume will not appear " -"more often than this period." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 +msgid "Enable this to move the cursor when the user touches the tablet." msgstr "" -"Specificeer een tijd in minuten, zodat waarschuwingen voor een volume niet " -"vaker zullen verschijnen dan deze periode." +"Stel dit in om de cursor te bewegen als de gebruiker de tablet aanraakt." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 -msgid "" -"Specify an amount in GB. If the amount of free space is more than this, no " -"warning will be shown." -msgstr "" -"Specificeer een hoeveelheid in GB. Indien de vrije ruimte groter is dan dit, " -"zal er geen waarschuwing getoond worden." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 +msgid "Wacom tablet PC feature" +msgstr "Wacom tablet PC feature" -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 -msgid "" -"Specify the percentage that the free disk space should reduce by before " -"issuing a subsequent warning." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 +msgid "Enable this to only report stylus events when the tip is pressed." msgstr "" -"Specificeer het percentage dat de vrije schijfruimte af moet nemen voordat " -"er een volgende waarschuwing gegeven wordt." +"Schakel dit in om alleen stylus-events door te geven wanneer de punt wordt " +"ingedrukt." -#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:13 -msgid "Subsequent free space percentage notify threshold" -msgstr "Volgende vrije ruimte percentagenotificatiedrempel" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 +msgid "Wacom display mapping" +msgstr "Wacom weergave-mapping" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 msgid "" -"If time based notifications should be used. If set to false, then the " -"percentage change is used instead, which may fix a broken ACPI BIOS." +"EDID information of monitor to map tablet to. Must be in the format [vendor, " +"product, serial]. [\"\",\"\",\"\"] disables mapping." msgstr "" -"Of time-based-notifications gebruikt moeten worden. Als dit op ‘false’ staat " -"wordt in plaats daarvan het percentage lading gebruikt. Dit kan van pas " -"komen bij een beschadigde ACPI BIOS." +"EDID-informatie van de monitor waar de tablet naar gemapt wordt. Moet in de " +"indeling opgenomen zijn [fabrikant, product, serie]. [\"\",\"\",\"\"] " +"schakelt mappen uit." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:3 -msgid "If we should show the recalled battery warning for a broken battery" -msgstr "Of de waarschuwing voor teruggeroepen accuen getoond moet worden" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 +msgid "Wacom stylus pressure curve" +msgstr "Wacom stylus pressure curve" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 msgid "" -"If we should show the recalled battery warning for a broken battery. Set " -"this to false only if you know your battery is okay." +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." msgstr "" -"Of de waarschuwing voor teruggeroepen accuen getoond moet worden. Zet dit " -"alleen op ‘false’ als u zeker weet dat er niets met uw accu mis is." +"Stel dit in op de x1, y1 en x2, y2 van de pressure-curve die op de stylus " +"toegepast wordt." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 -msgid "Percentage action is taken" -msgstr "Percentage waarbij actie ondernomen wordt" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 +msgid "Wacom stylus button mapping" +msgstr "Wacom stylus button mapping" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 -msgid "Percentage considered critical" -msgstr "Percentage dat als kritiek laag beschouwd wordt" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 +msgid "Set this to the logical button mapping." +msgstr "Stel dit in op de logical button mapping." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 -msgid "Percentage considered low" -msgstr "Percentage dat als laag beschouwd wordt" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 +msgid "Wacom stylus pressure threshold" +msgstr "Wacom stylus pressure-drempelwaarde" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 msgid "" -"The percentage of the battery when it is considered critical. Only valid " -"when use-time-for-policy is false." +"Set this to the pressure value at which a stylus click event is generated." msgstr "" -"Het percentage van acculading die als kritiek wordt beschouwd. Alleen geldig " -"als use-time-for-policy op ‘false’ staat." +"Stel dit in op de drukwaarde waarbij een stylus-click-event gegeneerd wordt." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 -msgid "" -"The percentage of the battery when it is considered low. Only valid when use-" -"time-for-policy is false." -msgstr "" -"Het percentage van acculading dat als laag wordt beschouwd. Alleen geldig " -"als use-time-for-policy op ‘false’ staat." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 +msgid "Wacom eraser pressure curve" +msgstr "Wacom eraser pressure-curve" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 msgid "" -"The percentage of the battery when the critical action is performed. Only " -"valid when use-time-for-policy is false." +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." msgstr "" -"Het percentage van acculading waarbij de kritiek-actie wordt uitgevoerd. " -"Alleen geldig als use-time-for-policy op ‘false’ staat." +"Stel dit in op de x1, y1 en x2, y2 van de pressure-curve die op de eraser " +"toegepast wordt." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 -msgid "" -"The time remaining in seconds of the battery when critical action is taken. " -"Only valid when use-time-for-policy is true." -msgstr "" -"De accuduur in seconden waarbij de kritiek-actie uitgevoerd wordt. Alleen " -"geldig als use-time-for-policy op ‘true’ staat." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 +msgid "Wacom eraser button mapping" +msgstr "Wacom eraser button mapping" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 -msgid "" -"The time remaining in seconds of the battery when it is considered critical. " -"Only valid when use-time-for-policy is true." -msgstr "" -"De accuduur in seconden die als kritiek wordt beschouwd. Alleen geldig als " -"use-time-for-policy op ‘true’ staat." +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 +msgid "Wacom eraser pressure threshold" +msgstr "Wacom eraser pressure-drempelwaarde" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 msgid "" -"The time remaining in seconds of the battery when it is considered low. Only " -"valid when use-time-for-policy is true." +"Set this to the pressure value at which an eraser click event is generated." msgstr "" -"De accuduur in seconden waarbij de acculadig als laag wordt beschouwd. " -"Alleen geldig als use-time-for-policy op ‘true’ staat." +"Stel dit in op de drukwaarde waarbij een eraser-click-event gegeneerd wordt." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 -msgid "The time remaining when action is taken" -msgstr "Accuduur waarbij actie ondernomen wordt" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 +msgid "Wacom button action type" +msgstr "Wacom type knopactie" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 -msgid "The time remaining when critical" -msgstr "Accuduur die als kritiek beschouwd wordt" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 +msgid "The type of action triggered by the button being pressed." +msgstr "De actie die wordt ingezet wanneer de knop wordt ingedrukt." -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 -msgid "The time remaining when low" -msgstr "Accuduur die als laag beschouwd wordt" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 +msgid "Key combination for the custom action" +msgstr "Toetscombinatie voor de aangepaste actie" -#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 -msgid "Whether to use time-based notifications" -msgstr "Of time-based-notifications gebruikt moeten worden" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 +msgid "" +"The keyboard shortcut generated when the button is pressed for custom " +"actions." +msgstr "" +"De sneltoets die gegenereerd wordt wanneer de knop wordt ingedrukt voor " +"aangepaste acties." -#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:4 -msgid "The duration a display profile is valid" -msgstr "De tijd dat een displayprofiel geldig is" +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 +msgid "Key combinations for an elevator custom action" +msgstr "Toetscombinaties voor een aangepaste actie" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 +msgid "" +"The keyboard shortcuts generated when a touchring or touchstrip is used for " +"custom actions (up followed by down)." +msgstr "" +"Sneltoetsen die gegenereerd worden wanneer er een aanraakring of " +"aanraakstrip gebruikt wordt voor aangepaste acties (omhoog gevolgd door " +"omlaag)." #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 -msgid "The duration a printer profile is valid" -msgstr "De tijd dat een printerprofiel geldig is" +msgid "The duration a display profile is valid" +msgstr "De tijd dat een displayprofiel geldig is" #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 msgid "" @@ -389,252 +379,510 @@ msgstr "Het aantal dagen waarna een display-color-profile niet meer geldig is." #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 +msgid "The duration a printer profile is valid" +msgstr "De tijd dat een printerprofiel geldig is" + +#: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 msgid "" "This is the number of days after which the printer color profile is " "considered invalid." msgstr "Het aantal dagen waarna een printer-color-profile niet meer geldig is." -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:2 -msgid "Allowed keys" -msgstr "Toegestane toetsen" +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 +msgid "Mount paths to ignore" +msgstr "Te negeren aankoppelpaden" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 +msgid "Specify a list of mount paths to ignore when they run low on space." +msgstr "" +"Specificeer een lijst met te negeren aankoppelpaden bij weinig schijfruimte." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 +msgid "Free percentage notify threshold" +msgstr "Vrije ruimte percentagenotificatiedrempel" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 +msgid "" +"Percentage free space threshold for initial warning of low disk space. If " +"the percentage free space drops below this, a warning will be shown." +msgstr "" +"Vrije ruimte-percentagedrempel voor eerste waarschuwing voor weinig " +"schijfruimte. Indien het percentage vrije ruimte hieronder zakt, zal er een " +"waarschuwing gegeven worden." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 +msgid "Subsequent free space percentage notify threshold" +msgstr "Volgende vrije ruimte percentagenotificatiedrempel" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 +msgid "" +"Specify the percentage that the free disk space should reduce by before " +"issuing a subsequent warning." +msgstr "" +"Specificeer het percentage dat de vrije schijfruimte af moet nemen voordat " +"er een volgende waarschuwing gegeven wordt." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 +msgid "Free space notify threshold" +msgstr "Notificatiedrempel voor gebrek aan vrije ruimte" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 +msgid "" +"Specify an amount in GB. If the amount of free space is more than this, no " +"warning will be shown." +msgstr "" +"Specificeer een hoeveelheid in GB. Indien de vrije ruimte groter is dan dit, " +"zal er geen waarschuwing getoond worden." + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 +msgid "Minimum notify period for repeated warnings" +msgstr "Minimum notificatieperiode voor herhaalde waarschuwingen" + +#: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 +msgid "" +"Specify a time in minutes. Subsequent warnings for a volume will not appear " +"more often than this period." +msgstr "" +"Specificeer een tijd in minuten, zodat waarschuwingen voor een volume niet " +"vaker zullen verschijnen dan deze periode." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 -msgid "Binding for the magnifier to zoom in" -msgstr "Sneltoets om het vergrootglas aan of uit te zetten" +msgid "Custom keybindings" +msgstr "Aangepaste toetsbindingen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:4 -msgid "Binding for the magnifier to zoom out" -msgstr "Sneltoets om het vergrootglas aan of uit te zetten" +msgid "List of custom keybindings" +msgstr "Lijst van aangepaste toetsbindingen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:5 -msgid "Binding to decrease the text size" -msgstr "Sneltoets om de tekst te verkleinen" +msgid "Launch calculator" +msgstr "Rekenmachine starten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:6 -msgid "Binding to eject an optical disc." -msgstr "Sneltoets voor het uitwerpen van een optische schijf." +msgid "Binding to launch the calculator." +msgstr "Sneltoets om de rekenmachine te starten." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:7 -msgid "Binding to increase the text size" -msgstr "Sneltoets om de tekst te vergroten" +msgid "Launch email client" +msgstr "E-mailprogramma starten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:8 -msgid "Binding to launch the calculator." -msgstr "Sneltoets om de rekenmachine te starten." - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 msgid "Binding to launch the email client." msgstr "Sneltoets om het e-mailprogramma te starten." -# openen/tonen +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:9 +msgid "Eject" +msgstr "Uitwerpen" + #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:10 -msgid "Binding to launch the help browser." -msgstr "Sneltoets om de hulp te openen." +msgid "Binding to eject an optical disc." +msgstr "Sneltoets voor het uitwerpen van een optische schijf." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:11 -msgid "Binding to launch the media player." -msgstr "Sneltoets om de mediaspeler te starten." +msgid "Launch help browser" +msgstr "Hulp openen" +# openen/tonen #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:12 -msgid "Binding to launch the search tool." -msgstr "Sneltoets om het zoekprogramma te starten." +msgid "Binding to launch the help browser." +msgstr "Sneltoets om de hulp te openen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:13 -msgid "Binding to launch the web browser." -msgstr "Sneltoets om de webbrowser te starten." +msgid "Home folder" +msgstr "Persoonlijke map" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:14 -msgid "Binding to lock the screen." -msgstr "Sneltoets om het scherm te vergrendelen." - +msgid "Binding to open the Home folder." +msgstr "Sneltoets om de persoonlijke map te openen." + #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:15 -msgid "Binding to log out." -msgstr "Sneltoets om af te melden." +msgid "Launch media player" +msgstr "Mediaspeler starten" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:16 -msgid "Binding to lower the system volume." -msgstr "Sneltoets om het geluid zachter te zetten." +msgid "Binding to launch the media player." +msgstr "Sneltoets om de mediaspeler te starten." +# naar volgende nummer/volgende nummer #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:17 -msgid "Binding to mute the system volume." -msgstr "Sneltoets om het geluid te dempen." +msgid "Next track" +msgstr "Volgende nummer" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:18 -msgid "Binding to open the Home folder." -msgstr "Sneltoets om de persoonlijke map te openen." +msgid "Binding to skip to next track." +msgstr "Sneltoets om naar het volgende nummer te gaan." +# pauzeren/afspelen pauzeren #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:19 -msgid "Binding to pause playback." -msgstr "Sneltoets om afspelen te pauzeren." +msgid "Pause playback" +msgstr "Afspelen pauzeren" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:20 -msgid "Binding to raise the system volume." -msgstr "Sneltoets om het geluid harder te zetten." +msgid "Binding to pause playback." +msgstr "Sneltoets om afspelen te pauzeren." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:21 -msgid "Binding to show the on-screen keyboard" -msgstr "Sneltoets om het schermtoetsenbord op het scherm aan of uit te zetten" +msgid "Play (or play/pause)" +msgstr "Afspelen (of afspelen/pauzeren)" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:22 -msgid "Binding to show the screen magnifier" -msgstr "Sneltoets om het vergrootglas aan of uit te zetten" +msgid "Binding to start playback (or toggle play/pause)." +msgstr "Sneltoets om af te spelen (of te schakelen tussen afspelen/pauzeren)." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:23 -msgid "Binding to skip to next track." -msgstr "Sneltoets om naar het volgende nummer te gaan." +msgid "Log out" +msgstr "Afmelden" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:24 -msgid "Binding to skip to previous track." -msgstr "Sneltoets om naar het vorige nummer te gaan." +msgid "Binding to log out." +msgstr "Sneltoets om af te melden." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:25 -msgid "Binding to start playback (or toggle play/pause)." -msgstr "Sneltoets om af te spelen (of te schakelen tussen afspelen/pauzeren)." +msgid "Previous track" +msgstr "Vorige nummer" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:26 -msgid "Binding to start the screen reader" -msgstr "Sneltoets om de schermlezer aan of uit te zetten" - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:27 -msgid "Binding to stop playback." -msgstr "Sneltoets om afspelen te stoppen." - -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:28 -msgid "Binding to toggle the interface contrast" -msgstr "Sneltoets om het contrast van de interface aan of uit te zetten" +msgid "Binding to skip to previous track." +msgstr "Sneltoets om naar het vorige nummer te gaan." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:29 -msgid "Decrease text size" -msgstr "Kleinere tekst" +msgid "Lock screen" +msgstr "Scherm vergrendelen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:30 -msgid "Eject" -msgstr "Uitwerpen" +msgid "Binding to lock the screen." +msgstr "Sneltoets om het scherm te vergrendelen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:31 -msgid "Home folder" -msgstr "Persoonlijke map" +msgid "Search" +msgstr "Zoeken" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:32 -msgid "" -"If non-empty, keybindings will be ignored unless their settings directory is " -"in the list. This is useful for lockdown." -msgstr "" -"Indien niet leeg zullen sneltoetsen genegeerd worden, tenzij het GConf-pad " -"in de lijst voorkomt. Dit is handig voor het vergrendelen van bepaalde " -"functionaliteit." +msgid "Binding to launch the search tool." +msgstr "Sneltoets om het zoekprogramma te starten." +# stoppen/afspelen stoppen #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:33 -msgid "Increase text size" -msgstr "Grotere tekst" +msgid "Stop playback" +msgstr "Afspelen stoppen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:34 -msgid "Launch calculator" -msgstr "Rekenmachine starten" +msgid "Binding to stop playback." +msgstr "Sneltoets om afspelen te stoppen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:35 -msgid "Launch email client" -msgstr "E-mailprogramma starten" +msgid "Volume down" +msgstr "Geluid zachter" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:36 -msgid "Launch help browser" -msgstr "Hulp openen" +msgid "Binding to lower the system volume." +msgstr "Sneltoets om het geluid zachter te zetten." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:37 -msgid "Launch media player" -msgstr "Mediaspeler starten" +msgid "Volume mute" +msgstr "Geluid dempen" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:38 -msgid "Launch web browser" -msgstr "Webbrowser starten" +msgid "Binding to mute the system volume." +msgstr "Sneltoets om het geluid te dempen." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:39 -msgid "Lock screen" -msgstr "Scherm vergrendelen" +msgid "Volume up" +msgstr "Geluid harder" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:40 -msgid "Log out" -msgstr "Afmelden" +msgid "Binding to raise the system volume." +msgstr "Sneltoets om het geluid harder te zetten." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:41 -msgid "Magnifier zoom in" -msgstr "Inzoomen met vergrootglas" +msgid "Take a screenshot" +msgstr "Een schermafdruk maken" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:42 -msgid "Magnifier zoom out" -msgstr "Uitzoomen met vergrootglas" +msgid "Binding to take a screenshot." +msgstr "Sneltoets om een schermafdruk te maken." -# naar volgende nummer/volgende nummer #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:43 -msgid "Next track" -msgstr "Volgende nummer" +msgid "Take a screenshot of a window" +msgstr "Een schermafdruk van een venster maken" -# pauzeren/afspelen pauzeren #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:44 -msgid "Pause playback" -msgstr "Afspelen pauzeren" +msgid "Binding to take a screenshot of a window." +msgstr "Sneltoets om een schermafdruk van een venster te maken." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:45 -msgid "Play (or play/pause)" -msgstr "Afspelen (of afspelen/pauzeren)" +msgid "Take a screenshot of an area" +msgstr "Een schermafdruk van een gebied maken" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:46 -msgid "Previous track" -msgstr "Vorige nummer" +msgid "Binding to take a screenshot of an area." +msgstr "Sneltoets om een schermafdruk van een gebied te maken." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:47 +msgid "Copy a screenshot to clipboard" +msgstr "Een schermafdruk naar het klembord kopiĂ«ren" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:48 +msgid "Binding to copy a screenshot to clipboard." +msgstr "Sneltoets om een schermafdruk naar het klembord te kopiĂ«ren." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:49 -msgid "Search" -msgstr "Zoeken" +msgid "Copy a screenshot of a window to clipboard" +msgstr "Een schermafdruk van een venster naar het klembord kopiĂ«ren" -# stoppen/afspelen stoppen #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:50 -msgid "Stop playback" -msgstr "Afspelen stoppen" +msgid "Binding to copy a screenshot of a window to clipboard." +msgstr "" +"Sneltoets om een schermafdruk van een venster naar het klembord te kopiĂ«ren." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:51 -msgid "Toggle contrast" -msgstr "Contrast aan- of uitzetten" +msgid "Copy a screenshot of an area to clipboard" +msgstr "Een schermafdruk van een gebied naar het klembord kopiĂ«ren" #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:52 +msgid "Binding to copy a screenshot of an area to clipboard." +msgstr "" +"Sneltoets om een schermafdruk van een gebied naar het klembord te kopiĂ«ren." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 +msgid "Launch web browser" +msgstr "Webbrowser starten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 +msgid "Binding to launch the web browser." +msgstr "Sneltoets om de webbrowser te starten." + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 msgid "Toggle magnifier" msgstr "Vergrootglas aan- of uitzetten" -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:53 -msgid "Toggle on-screen keyboard" -msgstr "Toetsen_bord-op-scherm aan- of uitzetten" +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 +msgid "Binding to show the screen magnifier" +msgstr "Sneltoets om het vergrootglas aan of uit te zetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 +msgid "Toggle screen reader" +msgstr "Schermle_zer aan- of uitzetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:58 +msgid "Binding to start the screen reader" +msgstr "Sneltoets om de schermlezer aan of uit te zetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:59 +msgid "Toggle on-screen keyboard" +msgstr "Toetsen_bord-op-scherm aan- of uitzetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:60 +msgid "Binding to show the on-screen keyboard" +msgstr "Sneltoets om het schermtoetsenbord op het scherm aan of uit te zetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:61 +msgid "Increase text size" +msgstr "Grotere tekst" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:62 +msgid "Binding to increase the text size" +msgstr "Sneltoets om de tekst te vergroten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:63 +msgid "Decrease text size" +msgstr "Kleinere tekst" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:64 +msgid "Binding to decrease the text size" +msgstr "Sneltoets om de tekst te verkleinen" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:65 +msgid "Toggle contrast" +msgstr "Contrast aan- of uitzetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:66 +msgid "Binding to toggle the interface contrast" +msgstr "Sneltoets om het contrast van de interface aan of uit te zetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:67 +msgid "Magnifier zoom in" +msgstr "Inzoomen met vergrootglas" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:68 +msgid "Binding for the magnifier to zoom in" +msgstr "Sneltoets om het vergrootglas aan of uit te zetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:69 +msgid "Magnifier zoom out" +msgstr "Uitzoomen met vergrootglas" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:70 +msgid "Binding for the magnifier to zoom out" +msgstr "Sneltoets om het vergrootglas aan of uit te zetten" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:71 +msgid "Name" +msgstr "Naam" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:72 +msgid "Name of the custom binding" +msgstr "Naam van de aangepaste sneltoets" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:73 +msgid "Binding" +msgstr "Binding" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:74 +msgid "Binding for the custom binding" +msgstr "Binding voor de aangepaste sneltoets" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:75 +msgid "Command" +msgstr "Opdracht" + +#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:76 +msgid "Command to run when the binding is invoked" +msgstr "Uit te voeren opdracht wanneer de sneltoets wordt aangeroepen" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:5 +msgid "Percentage considered low" +msgstr "Percentage dat als laag beschouwd wordt" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 +msgid "" +"The percentage of the battery when it is considered low. Only valid when use-" +"time-for-policy is false." +msgstr "" +"Het percentage van acculading dat als laag wordt beschouwd. Alleen geldig " +"als use-time-for-policy op ‘false’ staat." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 +msgid "Percentage considered critical" +msgstr "Percentage dat als kritiek laag beschouwd wordt" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 +msgid "" +"The percentage of the battery when it is considered critical. Only valid " +"when use-time-for-policy is false." +msgstr "" +"Het percentage van acculading die als kritiek wordt beschouwd. Alleen geldig " +"als use-time-for-policy op ‘false’ staat." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 +msgid "Percentage action is taken" +msgstr "Percentage waarbij actie ondernomen wordt" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 +msgid "" +"The percentage of the battery when the critical action is performed. Only " +"valid when use-time-for-policy is false." +msgstr "" +"Het percentage van acculading waarbij de kritiek-actie wordt uitgevoerd. " +"Alleen geldig als use-time-for-policy op ‘false’ staat." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 +msgid "The time remaining when low" +msgstr "Accuduur die als laag beschouwd wordt" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 +msgid "" +"The time remaining in seconds of the battery when it is considered low. Only " +"valid when use-time-for-policy is true." +msgstr "" +"De accuduur in seconden waarbij de acculadig als laag wordt beschouwd. " +"Alleen geldig als use-time-for-policy op ‘true’ staat." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 +msgid "The time remaining when critical" +msgstr "Accuduur die als kritiek beschouwd wordt" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 +msgid "" +"The time remaining in seconds of the battery when it is considered critical. " +"Only valid when use-time-for-policy is true." +msgstr "" +"De accuduur in seconden die als kritiek wordt beschouwd. Alleen geldig als " +"use-time-for-policy op ‘true’ staat." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 +msgid "The time remaining when action is taken" +msgstr "Accuduur waarbij actie ondernomen wordt" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 +msgid "" +"The time remaining in seconds of the battery when critical action is taken. " +"Only valid when use-time-for-policy is true." +msgstr "" +"De accuduur in seconden waarbij de kritiek-actie uitgevoerd wordt. Alleen " +"geldig als use-time-for-policy op ‘true’ staat." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 +msgid "Whether to use time-based notifications" +msgstr "Of time-based-notifications gebruikt moeten worden" + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 +msgid "" +"If time based notifications should be used. If set to false, then the " +"percentage change is used instead, which may fix a broken ACPI BIOS." +msgstr "" +"Of time-based-notifications gebruikt moeten worden. Als dit op ‘false’ staat " +"wordt in plaats daarvan het percentage lading gebruikt. Dit kan van pas " +"komen bij een beschadigde ACPI BIOS." + +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 +msgid "If we should show the recalled battery warning for a broken battery" +msgstr "Of de waarschuwing voor teruggeroepen accuen getoond moet worden" -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:54 -msgid "Toggle screen reader" -msgstr "Schermle_zer aan- of uitzetten" +#: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 +msgid "" +"If we should show the recalled battery warning for a broken battery. Set " +"this to false only if you know your battery is okay." +msgstr "" +"Of de waarschuwing voor teruggeroepen accuen getoond moet worden. Zet dit " +"alleen op ‘false’ als u zeker weet dat er niets met uw accu mis is." -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:55 -msgid "Volume down" -msgstr "Geluid zachter" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 +msgid "The install root to use when adding and removing packages" +msgstr "" +"De install root die gebruikt wordt bij het toevoegen en verwijderen van " +"pakketten" -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:56 -msgid "Volume mute" -msgstr "Geluid dempen" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 +msgid "" +"The install root to use when processing packages, which is changed when " +"using LTSP or when testing." +msgstr "" +"De install root die gebruikt wordt bij het verwerken van pakketten, dit " +"verschilt tussen LTSP en testing." -#: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:57 -msgid "Volume up" -msgstr "Geluid harder" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 +msgid "Use mobile broadband connections" +msgstr "Mobiele breedbandverbindingen gebruiken" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:2 -msgid "Ask the user if additional firmware should be installed" -msgstr "De gebruiker vragen of aanvullende firmware geĂŻnstalleerd moet worden" +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 +msgid "" +"Use mobile broadband connections such as GSM and CDMA to check for updates." +msgstr "" +"Mobiele breedbandverbindingen, zoals GSM en CDMA, gebruiken om op updates te " +"controleren." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:3 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 +msgid "Use WiFi connections" +msgstr "WiFi-verbindingen gebruiken" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 msgid "" -"Ask the user if additional firmware should be installed if it is available." -msgstr "De gebruiker vragen of aanvullende firmware geĂŻnstalleerd moet worden" +"Use WiFi (wireless LAN) connections to check for updates. It may be faster " +"to download packages when on a wired connection, and the VPN or proxy " +"required may also only be available on wired connections." +msgstr "" +"WiFi (draadloos internet) gebruiken om op updates te controleren. Het kan " +"sneller zijn om pakketten via een bekabelde verbinding te downloaden, en de " +"VPN of proxy werkt mogelijk ook alleen op de bekabelde verbinding." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 msgid "Automatically download updates in the background without confirmation" msgstr "" "Updates automatisch op de achtergrond downloaden, zonder om bevestiging te " "vragen" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 msgid "" "Automatically download updates in the background without confirmation. " "Updates will be auto-downloaded when using wired network connnections, and " @@ -647,63 +895,29 @@ "ingeschakeld. Mobiel breedband zal gebruikt worden als 'connection-use-" "mobile' is ingeschakeld." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 msgid "Automatically install these types of updates" msgstr "Dit type updates automatisch installeren" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 msgid "Automatically install these types of updates." msgstr "Dit type updates automatisch installeren" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 -msgid "Devices that should be ignored" -msgstr "Te negeren apparaten" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 -msgid "" -"Devices that should be ignored, separated by commas. These can include '*' " -"and '?' characters." -msgstr "" -"Te negeren apparaten, gescheiden door komma's. De tekens '*' en '?' zijn " -"toegestaan." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 -msgid "Firmware files that should not be searched for" -msgstr "Firmwarebestanden waar niet naar gezocht moet worden" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 -msgid "" -"Firmware files that should not be searched for, separated by commas. These " -"can include '*' and '?' characters." -msgstr "" -"Firmwarebestanden waar niet naar gezocht moet worden, gescheiden door " -"komma's. De tekens '*' en '?' kunnen gebruikt worden." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 msgid "Get the update list when the session starts" msgstr "Haal de lijst met updates op als de sessie start" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 msgid "Get the update list when the session starts, even if not scheduled to." msgstr "" "Haal de lijst met updates op als de sessie start, zelfs als dit niet gepland " "is." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:14 -msgid "How often to check for distribution upgrades" -msgstr "Hoe vaak er op distributie-upgrades gecontroleerd moe worden" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:15 -msgid "How often to check for distribution upgrades. Value is in seconds." -msgstr "" -"Hoe vaak er op distributie-upgrades gecontroleerd moet worden. Waarde is in " -"seconden." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 msgid "How often to check for updates" msgstr "Hoe vaak er op updates gecontroleerd moet worden" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 msgid "" "How often to check for updates. Value is in seconds. This is a maximum " "amount of time that can pass between a security update being published, and " @@ -714,21 +928,13 @@ "beveiligingsupdate vrijgegeven wordt, en het moment dat de gebruiker een " "melding krijgt of de update automatisch geĂŻnstalleerd wordt." -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 msgid "How often to notify the user that non-critical updates are available" msgstr "" "Hoe vaak de gebruiker een melding moet krijgen als er niet-kritieke updates " "beschikbaar zijn" -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 -msgid "How often to refresh the package cache" -msgstr "Hoe vaak de pakket-cache vernieuwd moet worden" - #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 -msgid "How often to refresh the package cache. Value is in seconds." -msgstr "Hoe vaak de pakket-cache vernieuwd moet worden. Waarde is in seconden." - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 msgid "" "How often to tell the user there are non-critical updates. Value is in " "seconds. Security update notifications are always shown after the check for " @@ -740,143 +946,155 @@ "weergeven nadat op updates gecontroleerd wordt, maar niet-kritieke meldingen " "zullen een stuk minder vaak voorkomen." +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 +msgid "The last time we told the user about non-critical notifications" +msgstr "" +"De laatste keer dat de gebruiker voor niet-kritieke updates werd notificeerde" + #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 -msgid "Install updates automatically when running on battery power" -msgstr "Updates automatisch installeren als de computer op accustroom werkt" +msgid "" +"The last time we notified the user about non-critical updates. Value is in " +"seconds since the epoch, or zero for never." +msgstr "" +"De laatste keer dat we de gebruiker voor niet-kritieke update notificeerde. " +"Waarde is in seconden sinds epoch, of nul voor nooit." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 -msgid "Install updates automatically when running on battery power." -msgstr "Updates automatisch installeren als de computer op accustroom werkt." +msgid "How often to check for distribution upgrades" +msgstr "Hoe vaak er op distributie-upgrades gecontroleerd moe worden" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 -msgid "Notify the user for completed updates" -msgstr "Geef een melding weer als de updates voltooid zijn" +msgid "How often to check for distribution upgrades. Value is in seconds." +msgstr "" +"Hoe vaak er op distributie-upgrades gecontroleerd moet worden. Waarde is in " +"seconden." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 -msgid "Notify the user for completed updates where the user needs to restart" -msgstr "" -"Geef een melding weer als de updates voltooid zijn en de computer opnieuw " -"opgestart moet worden" +msgid "How often to refresh the package cache" +msgstr "Hoe vaak de pakket-cache vernieuwd moet worden" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:26 -msgid "Notify the user for completed updates where the user needs to restart." -msgstr "" -"Geef een melding weer als de updates voltooid zijn en de computer opnieuw " -"opgestart moet worden." +msgid "How often to refresh the package cache. Value is in seconds." +msgstr "Hoe vaak de pakket-cache vernieuwd moet worden. Waarde is in seconden." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 msgid "" -"Notify the user for completed updates. This may be a useful notification for " -"some users as installing updates prevents shutdown." +"The number of seconds at session startup to wait before checking for updates" msgstr "" -"Geef een melding weer als de updates voltooid zijn. Dit kan voor sommige " -"gebruikers van pas komen, omdat de computer niet uitgeschakeld kan worden " -"als er updates geĂŻnstalleerd worden." +"Het aantal seconden dat na het starten van een sessie gewacht moet worden " +"totdat er op updates gecontroleerd wordt" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 -msgid "Notify the user when distribution upgrades are available" -msgstr "De gebruiker notificeren als distributie-upgrades beschikbaar zijn" +msgid "" +"The number of seconds at session startup to wait before checking for " +"updates. Value is in seconds." +msgstr "" +"Het aantal seconden dat na het starten van een sessie gewacht moet worden " +"totdat er op updates gecontroleerd wordt. Waarde is in seconden." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 -msgid "Notify the user when distribution upgrades are available." -msgstr "De gebruiker notificeren als distributie-upgrades beschikbaar zijn." +msgid "Install updates automatically when running on battery power" +msgstr "Updates automatisch installeren als de computer op accustroom werkt" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:30 -msgid "" -"Notify the user when the automatic update was not started on battery power" -msgstr "" -"De gebruiker notificeren als een update niet automatisch is gestart omdat de " -"computer op accustroom werkt" +msgid "Install updates automatically when running on battery power." +msgstr "Updates automatisch installeren als de computer op accustroom werkt." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 -msgid "" -"Notify the user when the update was not automatically started because the " -"machine is running on battery power." -msgstr "" -"De gebruiker notificeren als een update niet automatisch is gestart omdat de " -"computer op accustroom werkt." +msgid "Notify the user when distribution upgrades are available" +msgstr "De gebruiker notificeren als distributie-upgrades beschikbaar zijn" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 -msgid "Notify the user when the update was started" -msgstr "De gebruiker notificeren wanneer de update gestart is" +msgid "Notify the user when distribution upgrades are available." +msgstr "De gebruiker notificeren als distributie-upgrades beschikbaar zijn." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 -msgid "Notify the user when the update was started." -msgstr "De gebruiker notificeren wanneer de update gestart is" +msgid "Notify the user for completed updates" +msgstr "Geef een melding weer als de updates voltooid zijn" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 +msgid "" +"Notify the user for completed updates. This may be a useful notification for " +"some users as installing updates prevents shutdown." +msgstr "" +"Geef een melding weer als de updates voltooid zijn. Dit kan voor sommige " +"gebruikers van pas komen, omdat de computer niet uitgeschakeld kan worden " +"als er updates geĂŻnstalleerd worden." + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 +msgid "Notify the user for completed updates where the user needs to restart" +msgstr "" +"Geef een melding weer als de updates voltooid zijn en de computer opnieuw " +"opgestart moet worden" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 -msgid "The filenames on removable media that designate it a software source." +msgid "Notify the user for completed updates where the user needs to restart." msgstr "" -"De bestandsnaam van externe media die aangeeft dat het een softwarebron is" +"Geef een melding weer als de updates voltooid zijn en de computer opnieuw " +"opgestart moet worden." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 -msgid "The install root to use when adding and removing packages" +msgid "" +"Notify the user when the automatic update was not started on battery power" msgstr "" -"De install root die gebruikt wordt bij het toevoegen en verwijderen van " -"pakketten" +"De gebruiker notificeren als een update niet automatisch is gestart omdat de " +"computer op accustroom werkt" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 msgid "" -"The install root to use when processing packages, which is changed when " -"using LTSP or when testing." +"Notify the user when the update was not automatically started because the " +"machine is running on battery power." msgstr "" -"De install root die gebruikt wordt bij het verwerken van pakketten, dit " -"verschilt tussen LTSP en testing." +"De gebruiker notificeren als een update niet automatisch is gestart omdat de " +"computer op accustroom werkt." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 -msgid "" -"The last time we notified the user about non-critical updates. Value is in " -"seconds since the epoch, or zero for never." -msgstr "" -"De laatste keer dat we de gebruiker voor niet-kritieke update notificeerde. " -"Waarde is in seconden sinds epoch, of nul voor nooit." +msgid "Notify the user when the update was started" +msgstr "De gebruiker notificeren wanneer de update gestart is" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:40 -msgid "The last time we told the user about non-critical notifications" -msgstr "" -"De laatste keer dat de gebruiker voor niet-kritieke updates werd notificeerde" - -#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 -msgid "" -"The number of seconds at session startup to wait before checking for updates" -msgstr "" -"Het aantal seconden dat na het starten van een sessie gewacht moet worden " -"totdat er op updates gecontroleerd wordt" +msgid "Notify the user when the update was started." +msgstr "De gebruiker notificeren wanneer de update gestart is" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:41 +msgid "Ask the user if additional firmware should be installed" +msgstr "De gebruiker vragen of aanvullende firmware geĂŻnstalleerd moet worden" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 msgid "" -"The number of seconds at session startup to wait before checking for " -"updates. Value is in seconds." -msgstr "" -"Het aantal seconden dat na het starten van een sessie gewacht moet worden " -"totdat er op updates gecontroleerd wordt. Waarde is in seconden." +"Ask the user if additional firmware should be installed if it is available." +msgstr "De gebruiker vragen of aanvullende firmware geĂŻnstalleerd moet worden" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 -msgid "" -"Use WiFi (wireless LAN) connections to check for updates. It may be faster " -"to download packages when on a wired connection, and the VPN or proxy " -"required may also only be available on wired connections." -msgstr "" -"WiFi (draadloos internet) gebruiken om op updates te controleren. Het kan " -"sneller zijn om pakketten via een bekabelde verbinding te downloaden, en de " -"VPN of proxy werkt mogelijk ook alleen op de bekabelde verbinding." +msgid "Firmware files that should not be searched for" +msgstr "Firmwarebestanden waar niet naar gezocht moet worden" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 -msgid "Use WiFi connections" -msgstr "WiFi-verbindingen gebruiken" +msgid "" +"Firmware files that should not be searched for, separated by commas. These " +"can include '*' and '?' characters." +msgstr "" +"Firmwarebestanden waar niet naar gezocht moet worden, gescheiden door " +"komma's. De tekens '*' en '?' kunnen gebruikt worden." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 -msgid "Use mobile broadband connections" -msgstr "Mobiele breedbandverbindingen gebruiken" +msgid "Devices that should be ignored" +msgstr "Te negeren apparaten" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 msgid "" -"Use mobile broadband connections such as GSM and CDMA to check for updates." +"Devices that should be ignored, separated by commas. These can include '*' " +"and '?' characters." msgstr "" -"Mobiele breedbandverbindingen, zoals GSM en CDMA, gebruiken om op updates te " -"controleren." +"Te negeren apparaten, gescheiden door komma's. De tekens '*' en '?' zijn " +"toegestaan." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 +msgid "The filenames on removable media that designate it a software source." +msgstr "" +"De bestandsnaam van externe media die aangeeft dat het een softwarebron is" + +#: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 msgid "" "When removable media is inserted, it is checked to see if it contains any " "important filenames in the root directory. If the filename matches, then an " @@ -888,21 +1106,11 @@ "geval is wordt de media op updates gecontroleerd. Hiermee kunt u met post-" "install-schijven actieve systemen updaten." -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:1 -msgid "" -"'clone' will display the same thing on all monitors, 'dock' will switch off " -"the internal monitor, 'do-nothing' will use the default Xorg behaviour " -"(extend the desktop in recent versions)" -msgstr "" -"'clone' zal hetzelfde beeld op alle monitors weergeven, 'dock' zal de " -"interne monitor uitschakelen, 'do-nothing' zal het standaard Xorg-gedrag " -"gebruiken (bureaublad over de monitors uitspreiden, in recente versies)" - #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 msgid "File for default configuration for RandR" msgstr "Bestand met standaard-configuraties voor RandR" -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 msgid "" "The XRandR plugin will look for a default configuration in the file " "specified by this key. This is similar to the ~/.config/monitors.xml that " @@ -916,60 +1124,26 @@ "als de huidige combinatie van monitors niet in het bestand aanwezig is, zal " "het bestand dat in deze sleutel is opgegeven gebruikt worden." -#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 msgid "Whether to turn off specific monitors after boot" msgstr "Of specifieke monitors na het opstarten uitgeschakeld moeten worden" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:1 -msgid "" -"A list of strings representing the GTK+ modules that will be loaded, usually " -"in addition to conditional and forcibly disabled ones." -msgstr "" -"Een lijst van strings die weergeeft welke GTK+-modules geladen zullen " -"worden, naast voorwaardelijke en expliciet uitgeschakelde modules." - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 +#: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 msgid "" -"A list of strings representing the GTK+ modules that will not be loaded, " -"even if enabled by default in their configuration." +"'clone' will display the same thing on all monitors, 'dock' will switch off " +"the internal monitor, 'do-nothing' will use the default Xorg behaviour " +"(extend the desktop in recent versions)" msgstr "" -"Een lijst van strings die weergeeft welke GTK+-modules niet geladen zullen " -"worden, zelfs als dit standaard wel ingesteld is." +"'clone' zal hetzelfde beeld op alle monitors weergeven, 'dock' zal de " +"interne monitor uitschakelen, 'do-nothing' zal het standaard Xorg-gedrag " +"gebruiken (bureaublad over de monitors uitspreiden, in recente versies)" # gladmaken/wazig maken/afronden/rond maken/bijvijlen -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 msgid "Antialiasing" msgstr "Gladmaken" -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 -msgid "Hinting" -msgstr "Hinten" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 -msgid "List of explicitly disabled GTK+ modules" -msgstr "Lijst van expliciet uitgeschakelde GTK+-modules" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:7 -msgid "List of explicitly enabled GTK+ modules" -msgstr "Lijst van expliciet ingeschakelde GTK+-modules" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 -msgid "RGBA order" -msgstr "RGBA-volgorde" - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 -msgid "" -"The order of subpixel elements on an LCD screen; only used when antialiasing " -"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " -"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " -"on bottom." -msgstr "" -"De volgorde van subpixel-elementen op een LCD-scherm; wordt alleen gebruikt " -"wanneer gladmaken (antialiasing) ingesteld is op ‘rgba’. Mogelijke waardes " -"zijn: ‘rgb’ voor rood op links (meest voorkomend), ‘bgr’ voor blauw op " -"links, ‘vrgb’ voor rood bovenop, ‘vbgr’ voor rood onderop." - -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 msgid "" "The type of antialiasing to use when rendering fonts. Possible values are: " "\"none\" for no antialiasing, \"grayscale\" for standard grayscale " @@ -980,7 +1154,11 @@ "‘grayscale’ voor standaard gladmaken met grijswaarden, en ‘rgba’ voor " "subpixel gladmaken (alleen bij LCD-schermen)." -#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 +msgid "Hinting" +msgstr "Hinten" + +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 msgid "" "The type of hinting to use when rendering fonts. Possible values are: \"none" "\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" @@ -991,162 +1169,45 @@ "‘medium’ voor gemiddeld, en ‘full’ voor maximaal hinten (kan vervorming van " "letters veroorzaken)." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:2 -msgid "Enable this to move the cursor when the user touches the tablet." -msgstr "" -"Stel dit in om de cursor te bewegen als de gebruiker de tablet aanraakt." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 -msgid "Enable this to only report stylus events when the tip is pressed." -msgstr "" -"Schakel dit in om alleen stylus-events door te geven wanneer de punt wordt " -"ingedrukt." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:4 -msgid "Enable this to set the cursor to absolute mode." -msgstr "Schakel dit in om de cursor in de absolute modus te zetten." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 -msgid "Enable this to set the eraser to absolute mode." -msgstr "Schakel dit in om de eraser in de absolute modus te zetten." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 -msgid "Enable this to set the stylus to absolute mode." -msgstr "Schakel dit in om de stylus in de absolute modus te zetten." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 +msgid "RGBA order" +msgstr "RGBA-volgorde" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 msgid "" -"Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " -"'ccw' for 90 degree counterclockwise." +"The order of subpixel elements on an LCD screen; only used when antialiasing " +"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " +"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " +"on bottom." msgstr "" -"Stel dit in op 'none', 'cw' voor 90 graden met de klok mee, 'half' voor 180 " -"graden en 'ccw' voor 90 graden tegen de klok in." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 -msgid "Set this to the logical button mapping." -msgstr "Stel dit in op de logical button mapping." +"De volgorde van subpixel-elementen op een LCD-scherm; wordt alleen gebruikt " +"wanneer gladmaken (antialiasing) ingesteld is op ‘rgba’. Mogelijke waardes " +"zijn: ‘rgb’ voor rood op links (meest voorkomend), ‘bgr’ voor blauw op " +"links, ‘vrgb’ voor rood bovenop, ‘vbgr’ voor rood onderop." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 -msgid "" -"Set this to the pressure value at which a stylus click event is generated." -msgstr "" -"Stel dit in op de drukwaarde waarbij een stylus-click-event gegeneerd wordt." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 +msgid "List of explicitly disabled GTK+ modules" +msgstr "Lijst van expliciet uitgeschakelde GTK+-modules" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:12 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 msgid "" -"Set this to the pressure value at which an eraser click event is generated." -msgstr "" -"Stel dit in op de drukwaarde waarbij een eraser-click-event gegeneerd wordt." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:13 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the cursor." -msgstr "" -"Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de cursor " -"gebruikt kan worden." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the eraser." -msgstr "" -"Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de eraser " -"gebruikt kan worden." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the pad." -msgstr "" -"Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de pad gebruikt " -"kan worden." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 -msgid "Set this to x1, y1 and x2, y2 of the area usable by the stylus." +"A list of strings representing the GTK+ modules that will not be loaded, " +"even if enabled by default in their configuration." msgstr "" -"Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de stylus " -"gebruikt kan worden." +"Een lijst van strings die weergeeft welke GTK+-modules niet geladen zullen " +"worden, zelfs als dit standaard wel ingesteld is." -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 -msgid "" -"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." -msgstr "" -"Stel dit in op de x1, y1 en x2, y2 van de pressure-curve die op de eraser " -"toegepast wordt." +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 +msgid "List of explicitly enabled GTK+ modules" +msgstr "Lijst van expliciet ingeschakelde GTK+-modules" -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 +#: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 msgid "" -"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." -msgstr "" -"Stel dit in op de x1, y1 en x2, y2 van de pressure-curve die op de stylus " -"toegepast wordt." - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 -msgid "Wacom cursor absolute mode" -msgstr "Wacom cursor absolute-modus" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:20 -msgid "Wacom cursor button mapping" -msgstr "Wacom cursor button mapping" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:21 -msgid "Wacom cursor tablet area" -msgstr "Wacom cursor tabletgebied" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 -msgid "Wacom eraser absolute mode" -msgstr "Wacom eraser absolute-modus" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 -msgid "Wacom eraser button mapping" -msgstr "Wacom eraser button mapping" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 -msgid "Wacom eraser pressure curve" -msgstr "Wacom eraser pressure-curve" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 -msgid "Wacom eraser pressure threshold" -msgstr "Wacom eraser pressure-drempelwaarde" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:26 -msgid "Wacom eraser tablet area" -msgstr "Wacom eraser tablet gebied" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 -msgid "Wacom pad button mapping" -msgstr "Wacom pad button mapping" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 -msgid "Wacom pad tablet area" -msgstr "Wacom pad tablet gebied" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 -msgid "Wacom stylus absolute mode" -msgstr "Wacom stylus absolute mode" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 -msgid "Wacom stylus button mapping" -msgstr "Wacom stylus button mapping" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 -msgid "Wacom stylus pressure curve" -msgstr "Wacom stylus pressure curve" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 -msgid "Wacom stylus pressure threshold" -msgstr "Wacom stylus pressure-drempelwaarde" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 -msgid "Wacom stylus tablet area" -msgstr "Wacom stylus tabletgebied" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:34 -msgid "Wacom tablet PC feature" -msgstr "Wacom tablet PC feature" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:35 -msgid "Wacom tablet rotation" -msgstr "Wacom tablet-rotatie" - -#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:36 -msgid "Wacom touch feature" -msgstr "Wacom aanraakopties" +"A list of strings representing the GTK+ modules that will be loaded, usually " +"in addition to conditional and forcibly disabled ones." +msgstr "" +"Een lijst van strings die weergeeft welke GTK+-modules geladen zullen " +"worden, naast voorwaardelijke en expliciet uitgeschakelde modules." #: ../gnome-settings-daemon/main.c:54 msgid "Enable debugging code" @@ -1164,23 +1225,23 @@ msgid "Accessibility keyboard plugin" msgstr "Toetsenbord-toegankelijkheid-plugin" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:392 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:383 #, c-format msgid "There was an error displaying help: %s" msgstr "Er is een fout opgetreden bij de hulpweergave: %s" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:517 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:580 -msgid "Do you want to activate Slow Keys?" -msgstr "Wilt u Trage Toetsen activeren?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:518 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:581 -msgid "Do you want to deactivate Slow Keys?" -msgstr "Wilt u Trage Toetsen deactiveren?" +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:508 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:572 +msgid "Slow Keys Turned On" +msgstr "Trage toetsen aan" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:509 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:573 +msgid "Slow Keys Turned Off" +msgstr "Trage toetsen uit" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:519 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:582 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 msgid "" "You just held down the Shift key for 8 seconds. This is the shortcut for " "the Slow Keys feature, which affects the way your keyboard works." @@ -1189,69 +1250,64 @@ "is de sneltoets voor de langzame toetsen modus hetgeen invloed heeft op de " "manier waarop het toetsenbord functioneert." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:538 -#: ../plugins/mouse/gsd-mouse-manager.c:858 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 +#: ../plugins/mouse/gsd-mouse-manager.c:867 msgid "Universal Access" msgstr "Universele toegang-voorkeuren" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:543 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:678 -msgid "Don't activate" -msgstr "Niet activeren" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:543 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:678 -msgid "Don't deactivate" -msgstr "Niet deactiveren" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:549 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:684 -msgid "Activate" -msgstr "Activeren" - -# uitzetten -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:549 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:684 -msgid "Deactivate" -msgstr "Deactiveren" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:603 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:740 -msgid "Do_n't activate" -msgstr "_Niet activeren" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:603 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:740 -msgid "Do_n't deactivate" -msgstr "_Niet deactiveren" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:606 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:743 -msgid "_Activate" -msgstr "_Activeren" - -# uitzetten -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:606 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:743 -msgid "_Deactivate" -msgstr "_Deactiveren" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:610 -msgid "Slow Keys Alert" -msgstr "Trage Toetsen-attendering" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:650 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:714 -msgid "Do you want to activate Sticky Keys?" -msgstr "Wilt u plaktoetsen activeren?" - -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:651 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:715 -msgid "Do you want to deactivate Sticky Keys?" -msgstr "Wilt u plaktoetsen deactiveren?" +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn Off" +msgstr "Uitschakelen" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:535 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671 +msgid "Turn On" +msgstr "Inschakelen" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave On" +msgstr "Aan laten" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:541 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:677 +msgid "Leave Off" +msgstr "Uit laten" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn Off" +msgstr "_Uitschakelen" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:595 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:733 +msgid "_Turn On" +msgstr "I_nschakelen" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave On" +msgstr "_Aan laten" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:736 +msgid "_Leave Off" +msgstr "Uit l_aten" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:641 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:707 +msgid "Sticky Keys Turned On" +msgstr "Plaktoetsen ingeschakeld" + +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:642 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:708 +msgid "Sticky Keys Turned Off" +msgstr "Plaktoetsen uitgeschakeld" -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:653 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:717 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 msgid "" "You just pressed the Shift key 5 times in a row. This is the shortcut for " "the Sticky Keys feature, which affects the way your keyboard works." @@ -1260,8 +1316,8 @@ "sneltoets voor de plaktoetsen modus, hetgeen invloed heeft op de manier " "waarop uw toetsenbord functioneert." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:655 -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:719 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:646 +#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:712 msgid "" "You just pressed two keys at once, or pressed the Shift key 5 times in a " "row. This turns off the Sticky Keys feature, which affects the way your " @@ -1271,46 +1327,42 @@ "een rij. Dat zet de plaktoetsen-modus uit, hetgeen invloed heeft op de " "manier waarop uw toetsenbord functioneert." -#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:747 -msgid "Sticky Keys Alert" -msgstr "Plaktoetsen-waarschuwing" - -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:449 -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 msgid "Universal Access Preferences" msgstr "Universele toegang-voorkeuren" -#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 -msgid "Enhance _contrast in colors" -msgstr "Kleur_contrast verbeteren" - #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:2 -msgid "Make _text larger and easier to read" -msgstr "_Tekst groter en makkelijker leesbaar maken" +msgid "Use on-screen _keyboard" +msgstr "Toetsen_bord-op-scherm gebruiken" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:3 -msgid "Press and _hold keys to accept them (Slow Keys)" -msgstr "Toetsen in_drukken en vasthouden om ze te bevestigen (Trage Toetsen)" +msgid "Use screen _reader" +msgstr "Schermle_zer gebruiken" + +#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:4 +msgid "Use screen _magnifier" +msgstr "Scher_mvergroter gebruiken" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:5 -msgid "Use on-screen _keyboard" -msgstr "Toetsen_bord-op-scherm gebruiken" +msgid "Enhance _contrast in colors" +msgstr "Kleur_contrast verbeteren" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:6 -msgid "Use screen _magnifier" -msgstr "Scher_mvergroter gebruiken" +msgid "Make _text larger and easier to read" +msgstr "_Tekst groter en makkelijker leesbaar maken" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:7 -msgid "Use screen _reader" -msgstr "Schermle_zer gebruiken" +msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" +msgstr "Sneltoetscombinaties Ă©Ă©n toets per keer indrukken (Plaktoetsen)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:8 msgid "_Ignore duplicate keypresses (Bounce Keys)" msgstr "Dubbele toetsaanslagen ne_geren (kaatstoetsen)" #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:9 -msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)" -msgstr "Sneltoetscombinaties Ă©Ă©n toets per keer indrukken (Plaktoetsen)" +msgid "Press and _hold keys to accept them (Slow Keys)" +msgstr "Toetsen in_drukken en vasthouden om ze te bevestigen (Trage Toetsen)" #: ../plugins/a11y-settings/a11y-settings.gnome-settings-plugin.in.h:1 msgid "Accessibility settings" @@ -1321,19 +1373,19 @@ msgstr "Plug-in voor toegankelijkheidsinstellingen" #: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:1 -msgid "Automount and autorun plugged devices" -msgstr "Apparaten aankoppelen en autorun uitvoeren" - -#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 msgid "Mount Helper" msgstr "Hulpmiddel voor aankoppelen" -#: ../plugins/automount/gsd-automount-manager.c:154 +#: ../plugins/automount/gnome-fallback-mount-helper.desktop.in.in.h:2 +msgid "Automount and autorun plugged devices" +msgstr "Apparaten aankoppelen en autorun uitvoeren" + +#: ../plugins/automount/gsd-automount-manager.c:151 #, c-format msgid "Unable to mount %s" msgstr "Kon %s niet aankoppelen" -#: ../plugins/automount/gsd-automount-manager.c:271 +#: ../plugins/automount/gsd-automount-manager.c:264 #, c-format msgid "Unable to open a folder for %s" msgstr "Kon geen map openen voor %s" @@ -1467,7 +1519,7 @@ msgstr "Klembord-plug-in" #: ../plugins/color/color.gnome-settings-plugin.in.h:1 -#: ../plugins/color/gsd-color-manager.c:1642 +#: ../plugins/color/gsd-color-manager.c:1757 msgid "Color" msgstr "Kleur" @@ -1475,45 +1527,41 @@ msgid "Color plugin" msgstr "Kleur-plug-in" -#: ../plugins/color/gsd-color-manager.c:630 -msgid "Default" -msgstr "Standaard" - -#: ../plugins/color/gsd-color-manager.c:1647 +#: ../plugins/color/gsd-color-manager.c:1762 msgid "Recalibrate now" msgstr "Nu hercalibreren" #. TRANSLATORS: this is when the device has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1689 +#: ../plugins/color/gsd-color-manager.c:1804 msgid "Recalibration required" msgstr "Hercalibratie vereist" #. TRANSLATORS: this is when the display has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1701 +#: ../plugins/color/gsd-color-manager.c:1816 #, c-format msgid "The display '%s' should be recalibrated soon." msgstr "Het beeldscherm ‘%s’ moet binnenkort gekalibreerd worden." #. TRANSLATORS: this is when the printer has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1710 +#: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." msgstr "De printer ‘%s’ moet binnenkort gekalibreerd worden." # behouden/gebruiken #. TRANSLATORS: this is the application name -#: ../plugins/color/gsd-color-manager.c:2040 -#: ../plugins/color/gsd-color-manager.c:2058 +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 msgid "GNOME Settings Daemon Color Plugin" msgstr "Gnome Settings Daemon kleur-plug-in" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2042 +#: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" msgstr "Kleur-kalibratieapparaat toegevoegd" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2060 +#: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" msgstr "Kleur-kalibratieapparaat verwijderd" @@ -1526,18 +1574,216 @@ msgid "Dummy plugin" msgstr "Dummy-plug-in" -#. TRANSLATORS: this is the notification application name -#: ../plugins/power/power.gnome-settings-plugin.in.h:1 -#: ../plugins/power/gsd-power-manager.c:1198 -#: ../plugins/power/gsd-power-manager.c:1376 -#: ../plugins/power/gsd-power-manager.c:1557 -#: ../plugins/power/gsd-power-manager.c:1710 -msgid "Power" -msgstr "Energie" +#: ../plugins/housekeeping/gsd-disk-space.c:332 +#, c-format +msgid "Low Disk Space on \"%s\"" +msgstr "Weinig schijfruimte op ‘%s’" -#: ../plugins/power/power.gnome-settings-plugin.in.h:2 -msgid "Power plugin" -msgstr "Energie-plug-in" +#: ../plugins/housekeeping/gsd-disk-space.c:334 +#, c-format +msgid "" +"The volume \"%s\" has only %s disk space remaining. You may free up some " +"space by emptying the trash." +msgstr "" +"Het volume ‘%s’ heeft nog maar %s schijfruimte over. U zou wat schijfruimte " +"kunnen vrijmaken door de prullenbak te legen." + +#: ../plugins/housekeeping/gsd-disk-space.c:338 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 +#, c-format +msgid "The volume \"%s\" has only %s disk space remaining." +msgstr "Het volume ’%s’ heeft nog maar %s schijfruimte over." + +#. Set up all the window stuff here +#: ../plugins/housekeeping/gsd-disk-space.c:343 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:205 +msgid "Low Disk Space" +msgstr "Weinig schijfruimte" + +#: ../plugins/housekeeping/gsd-disk-space.c:345 +#, c-format +msgid "" +"This computer has only %s disk space remaining. You may free up some space " +"by emptying the trash." +msgstr "" +"Deze computer heeft nog maar %s schijfruimte over. U zou wat schijfruimte " +"kunnen vrijmaken door de prullenbak te legen." + +#: ../plugins/housekeeping/gsd-disk-space.c:348 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 +#, c-format +msgid "This computer has only %s disk space remaining." +msgstr "Deze computer heeft nog maar %s schijfruimte over." + +#: ../plugins/housekeeping/gsd-disk-space.c:363 +msgid "Disk space" +msgstr "Schijfruimte" + +#: ../plugins/housekeeping/gsd-disk-space.c:370 +msgid "Examine" +msgstr "Onderzoeken" + +#: ../plugins/housekeeping/gsd-disk-space.c:378 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:437 +msgid "Empty Trash" +msgstr "Prullenbak legen" + +#: ../plugins/housekeeping/gsd-disk-space.c:385 +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:452 +msgid "Ignore" +msgstr "Negeren" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 +msgid "Don't show any warnings again for this file system" +msgstr "Geen waarschuwingen meer tonen voor dit bestandssysteem" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:68 +msgid "Don't show any warnings again" +msgstr "Geen waarschuwingen meer tonen" + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to another disk or partition." +msgstr "" +"U kunt schijfruimte vrijmaken door de prullenbak te legen, ongebruikte " +"bestanden of toepassingen te verwijderen of door bestanden naar een andere " +"schijf of partitie te verplaatsen." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to another disk or partition." +msgstr "" +"U kunt schijfruimte vrijmaken door ongebruikte bestanden of toepassingen te " +"verwijderen of door bestanden naar een andere schijf of partitie te " +"verplaatsen." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to an external disk." +msgstr "" +"U kunt schijfruimte vrijmaken door de prullenbak te legen, ongebruikte " +"bestanden of toepassingen te verwijderen of door bestanden naar een externe " +"schijf te verplaatsen." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to an external disk." +msgstr "" +"U kunt schijfruimte vrijmaken door ongebruikte bestanden of toepassingen te " +"verwijderen of door bestanden naar een externe schijf te verplaatsen." + +#: ../plugins/housekeeping/gsd-ldsm-dialog.c:445 +msgid "Examine
" +msgstr "Onderzoeken
" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:87 +#, c-format +msgid "" +"Error activating XKB configuration.\n" +"There can be various reasons for that.\n" +"\n" +"If you report this situation as a bug, include the results of\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" +msgstr "" +"Fout bij het activieren van de XKB-configuratie.\n" +"Hier kunnen meerdere redenen voor zijn.\n" +"\n" +"Als u een foutrapport indient, voeg dan het volgende bij: ‱ %s\n" +" ‱ %s\n" +" ‱ %s\n" +" ‱ %s" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:242 +msgid "_Layouts" +msgstr "_Layouts" + +#: ../plugins/keyboard/gsd-keyboard-xkb.c:248 +msgid "Show _Keyboard Layout..." +msgstr "_Toetsenbordindeling weergeven
" + +#. translators note: +#. * This is the name of the gnome-control-center "region" panel +#: ../plugins/keyboard/gsd-keyboard-xkb.c:255 +msgid "Region and Language Settings" +msgstr "Regio- en taalinstellingen" + +#. TRANSLATORS: wireless keyboard with internal battery +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:585 ../plugins/power/gpm-common.c:872 +msgid "Keyboard" +msgid_plural "Keyboards" +msgstr[0] "Toetsenbord" +msgstr[1] "Toetsenborden" + +#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 +msgid "Keyboard plugin" +msgstr "Toetsenbord-plugin" + +#. translators: +#. * The device has been disabled +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1087 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#. translators: +#. * The number of sound outputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1094 +#, c-format +msgid "%u Output" +msgid_plural "%u Outputs" +msgstr[0] "%u audio-uitvoer" +msgstr[1] "%u audio-uitvoer" + +#. translators: +#. * The number of sound inputs on a particular device +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1104 +#, c-format +msgid "%u Input" +msgid_plural "%u Inputs" +msgstr[0] "%u audio-invoer" +msgstr[1] "%u audio-invoer" + +#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1402 +msgid "System Sounds" +msgstr "Systeemgeluiden" + +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 +msgid "Media keys" +msgstr "Mediatoetsen" + +#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 +msgid "Media keys plugin" +msgstr "Mediatoetsen-plugin" + +#: ../plugins/mouse/gsd-mouse-manager.c:863 +msgid "Could not enable mouse accessibility features" +msgstr "Kon functies voor muis-toegankelijkheid niet activeren" + +#: ../plugins/mouse/gsd-mouse-manager.c:865 +msgid "" +"Mouse accessibility requires Mousetweaks to be installed on your system." +msgstr "" +"Muis-toegankelijkheid vereist dat ‘mousetweaks’ op uw systeem geĂŻnstalleerd " +"is." + +#. TRANSLATORS: wireless mice with internal batteries +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 +#: ../plugins/power/gpm-common.c:581 ../plugins/power/gpm-common.c:848 +msgid "Mouse" +msgid_plural "Mice" +msgstr[0] "Muis" +msgstr[1] "Muizen" + +#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 +msgid "Mouse plugin" +msgstr "Muis-plugin" #: ../plugins/power/gpm-common.c:47 msgid "Unknown time" @@ -1742,22 +1988,6 @@ msgstr[0] "Monitor" msgstr[1] "Monitors" -#. TRANSLATORS: wireless mice with internal batteries -#: ../plugins/power/gpm-common.c:581 ../plugins/power/gpm-common.c:848 -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 -msgid "Mouse" -msgid_plural "Mice" -msgstr[0] "Muis" -msgstr[1] "Muizen" - -#. TRANSLATORS: wireless keyboard with internal battery -#: ../plugins/power/gpm-common.c:585 ../plugins/power/gpm-common.c:872 -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 -msgid "Keyboard" -msgid_plural "Keyboards" -msgstr[0] "Toetsenbord" -msgstr[1] "Toetsenborden" - #. TRANSLATORS: portable device #: ../plugins/power/gpm-common.c:589 ../plugins/power/gpm-common.c:896 msgid "PDA" @@ -2038,12 +2268,12 @@ msgid "Computer is charged" msgstr "Computer is opgeladen" -#. TRANSLATORS: the battery may be recalled by it's vendor -#: ../plugins/power/gsd-power-manager.c:942 +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 msgid "Battery may be recalled" msgstr "Accu is mogelijk teruggeroepen" -#: ../plugins/power/gsd-power-manager.c:943 +#: ../plugins/power/gsd-power-manager.c:994 #, c-format msgid "" "A battery in your computer may have been recalled by %s and you may be at " @@ -2052,172 +2282,181 @@ "De accu in uw computer is mogelijk door %s teruggeroepen en is niet veilig " "om te gebruiken." -#: ../plugins/power/gsd-power-manager.c:946 +#: ../plugins/power/gsd-power-manager.c:997 msgid "For more information visit the battery recall website." msgstr "Voor meer informatie bezoekt u de terugroepwebsite." #. TRANSLATORS: button text, visit the manufacturers recall website -#: ../plugins/power/gsd-power-manager.c:957 +#: ../plugins/power/gsd-power-manager.c:1008 msgid "Visit recall website" msgstr "Terugroepwebsite" #. TRANSLATORS: button text, do not show this bubble again -#: ../plugins/power/gsd-power-manager.c:961 +#: ../plugins/power/gsd-power-manager.c:1012 msgid "Do not show me this again" msgstr "Dit bericht niet nogmaals weergeven" #. TRANSLATORS: UPS is now discharging -#: ../plugins/power/gsd-power-manager.c:1172 +#: ../plugins/power/gsd-power-manager.c:1223 msgid "UPS Discharging" msgstr "UPS is nu in gebruik" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1177 +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format msgid "%s of UPS backup power remaining" msgstr "%s backup-stroom beschikbaar" +#. TRANSLATORS: this is the notification application name +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 +#: ../plugins/power/power.gnome-settings-plugin.in.h:1 +msgid "Power" +msgstr "Energie" + #. TRANSLATORS: laptop battery low, and we only have one battery -#: ../plugins/power/gsd-power-manager.c:1291 +#: ../plugins/power/gsd-power-manager.c:1342 msgid "Battery low" msgstr "Accu bijna leeg" #. TRANSLATORS: laptop battery low, and we have more than one kind of battery -#: ../plugins/power/gsd-power-manager.c:1294 +#: ../plugins/power/gsd-power-manager.c:1345 msgid "Laptop battery low" msgstr "Laptopaccu bijna leeg" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1300 +#: ../plugins/power/gsd-power-manager.c:1351 #, c-format msgid "Approximately %s remaining (%.0f%%)" msgstr "Ongeveer %s beschikbaar (%.0f%%)" #. TRANSLATORS: UPS is starting to get a little low -#: ../plugins/power/gsd-power-manager.c:1304 +#: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" msgstr "UPS bijna leeg" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1308 +#: ../plugins/power/gsd-power-manager.c:1359 #, c-format msgid "Approximately %s of remaining UPS backup power (%.0f%%)" msgstr "Ongeveer %s van de UPS backup-stroom beschikbaar(%.0f%%)" #. TRANSLATORS: mouse is getting a little low #. TRANSLATORS: the mouse battery is very low -#: ../plugins/power/gsd-power-manager.c:1312 -#: ../plugins/power/gsd-power-manager.c:1478 +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 msgid "Mouse battery low" msgstr "Accu muis bijna leeg" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1315 +#: ../plugins/power/gsd-power-manager.c:1366 #, c-format msgid "Wireless mouse is low in power (%.0f%%)" msgstr "De accu van de draadloze muis is bijna leeg (%.0f%%)" #. TRANSLATORS: keyboard is getting a little low #. TRANSLATORS: the keyboard battery is very low -#: ../plugins/power/gsd-power-manager.c:1319 -#: ../plugins/power/gsd-power-manager.c:1486 +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 msgid "Keyboard battery low" msgstr "Accu van toetsenbord bijna leeg" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1322 +#: ../plugins/power/gsd-power-manager.c:1373 #, c-format msgid "Wireless keyboard is low in power (%.0f%%)" msgstr "De accu van het draadloze toetsenbord is bijna leeg (%.0f%%)" #. TRANSLATORS: PDA is getting a little low #. TRANSLATORS: the PDA battery is very low -#: ../plugins/power/gsd-power-manager.c:1326 -#: ../plugins/power/gsd-power-manager.c:1495 +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 msgid "PDA battery low" msgstr "Accu PDA bijna leeg" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1329 +#: ../plugins/power/gsd-power-manager.c:1380 #, c-format msgid "PDA is low in power (%.0f%%)" msgstr "De accu van de PDA is bijna leeg (%.0f%%)" #. TRANSLATORS: cell phone (mobile) is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1333 -#: ../plugins/power/gsd-power-manager.c:1505 -#: ../plugins/power/gsd-power-manager.c:1516 +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 msgid "Cell phone battery low" msgstr "Accu mobiele telefoon bijna leeg" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1336 +#: ../plugins/power/gsd-power-manager.c:1387 #, c-format msgid "Cell phone is low in power (%.0f%%)" msgstr "De accu van de mobiele telefon is bijna leeg (%.0f%%)" #. TRANSLATORS: media player, e.g. mp3 is getting a little low -#: ../plugins/power/gsd-power-manager.c:1341 +#: ../plugins/power/gsd-power-manager.c:1392 msgid "Media player battery low" msgstr "Accu MP3-speler bijna leeg" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1344 +#: ../plugins/power/gsd-power-manager.c:1395 #, c-format msgid "Media player is low in power (%.0f%%)" msgstr "De accu van de MP3-speler is bijna leeg (%.0f%%)" #. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1348 -#: ../plugins/power/gsd-power-manager.c:1525 +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 msgid "Tablet battery low" msgstr "Accu tablet bijna leeg" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1351 +#: ../plugins/power/gsd-power-manager.c:1402 #, c-format msgid "Tablet is low in power (%.0f%%)" msgstr "De accu van de tablet is bijna leeg (%.0f%%)" #. TRANSLATORS: computer, e.g. ipad is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1355 -#: ../plugins/power/gsd-power-manager.c:1534 +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 msgid "Attached computer battery low" msgstr "Accu aangekoppelde computer bijna leeg" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1358 +#: ../plugins/power/gsd-power-manager.c:1409 #, c-format msgid "Attached computer is low in power (%.0f%%)" msgstr "De accu van de aangekoppelde computer is bijna leeg (%.0f%%)" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1394 +#: ../plugins/power/gsd-power-manager.c:1446 msgid "Battery is low" msgstr "Accu bijna leeg" #. TRANSLATORS: laptop battery critically low, and only have one kind of battery -#: ../plugins/power/gsd-power-manager.c:1437 +#: ../plugins/power/gsd-power-manager.c:1488 msgid "Battery critically low" msgstr "Acculading kritiek laag" #. TRANSLATORS: laptop battery critically low, and we have more than one type of battery #. TRANSLATORS: laptop battery is really, really, low -#: ../plugins/power/gsd-power-manager.c:1440 -#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 msgid "Laptop battery critically low" msgstr "Laptopaccu kritiek laag" #. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything -#: ../plugins/power/gsd-power-manager.c:1449 +#: ../plugins/power/gsd-power-manager.c:1500 msgid "Plug in your AC adapter to avoid losing data." msgstr "Sluit uw laptop op netstroom aan om dataverlies te voorkomen." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1453 +#: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." msgstr "" @@ -2225,7 +2464,7 @@ "aangesloten wordt." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1457 +#: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." msgstr "" @@ -2233,7 +2472,7 @@ "aangesloten wordt." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1461 +#: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." msgstr "" @@ -2242,13 +2481,13 @@ #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low -#: ../plugins/power/gsd-power-manager.c:1468 -#: ../plugins/power/gsd-power-manager.c:1664 +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" msgstr "UPS-lading kritiek laag" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1472 +#: ../plugins/power/gsd-power-manager.c:1523 #, c-format msgid "" "Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " @@ -2258,7 +2497,7 @@ "aansluiting van uw computer om dataverlies te voorkomen." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1481 +#: ../plugins/power/gsd-power-manager.c:1532 #, c-format msgid "" "Wireless mouse is very low in power (%.0f%%). This device will soon stop " @@ -2268,7 +2507,7 @@ "binnenkort met functioneren als het niet opgeladen wordt." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1489 +#: ../plugins/power/gsd-power-manager.c:1540 #, c-format msgid "" "Wireless keyboard is very low in power (%.0f%%). This device will soon stop " @@ -2278,7 +2517,7 @@ "binnenkort met functioneren als het niet opgeladen wordt." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1498 +#: ../plugins/power/gsd-power-manager.c:1549 #, c-format msgid "" "PDA is very low in power (%.0f%%). This device will soon stop functioning if " @@ -2287,761 +2526,487 @@ "PDA zit bijna zonder stroom (%.0f%%). Dit apparaat stopt binnenkort met " "functioneren als het niet opgeladen wordt." -#. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1508 -#, c-format -msgid "" -"Cell phone is very low in power (%.0f%%). This device will soon stop " -"functioning if not charged." -msgstr "" -"Mobiele telefoon zit bijna zonder stroom (%.0f%%). Dit apparaat stopt " -"binnenkort met functioneren als het niet opgeladen wordt." - -#. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1519 -#, c-format -msgid "" -"Media player is very low in power (%.0f%%). This device will soon stop " -"functioning if not charged." -msgstr "" -"MP3-speler zit bijna zonder stroom (%.0f%%). Dit apparaat stopt binnenkort " -"met functioneren als het niet opgeladen wordt." - -#. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1528 -#, c-format -msgid "" -"Tablet is very low in power (%.0f%%). This device will soon stop functioning " -"if not charged." -msgstr "" -"Tablet zit bijna zonder stroom (%.0f%%). Dit apparaat stopt binnenkort met " -"functioneren als het niet opgeladen wordt." - -#. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1537 -#, c-format -msgid "" -"Attached computer is very low in power (%.0f%%). The device will soon " -"shutdown if not charged." -msgstr "" -"De aangesloten computer zit bijna zonder stroom (%.0f%%). Dit apparaat stopt " -"binnenkort met functioneren als het niet opgeladen wordt." - -#. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1578 -#: ../plugins/power/gsd-power-manager.c:1590 -#: ../plugins/power/gsd-power-manager.c:1728 -msgid "Battery is critically low" -msgstr "Acculading kritiek laag" - -#. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1636 -msgid "" -"The battery is below the critical level and this computer will power-off when the battery becomes completely empty." -msgstr "" -"De acculading is onder het kritieke niveau en deze computer zal " -"uitvallen als de accu volledig leeg is." - -#. TRANSLATORS: computer will suspend -#: ../plugins/power/gsd-power-manager.c:1642 -msgid "" -"The battery is below the critical level and this computer is about to " -"suspend.
NOTE: A small amount of power is required to keep your " -"computer in a suspended state." -msgstr "" -"De acculading is onder het kritieke niveau en deze computer zal in " -"pauzestand gaan.
LET OP: Ook in pauzestand vereist de computer " -"een beperkte hoeveelheid stroom." - -#. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1649 -msgid "" -"The battery is below the critical level and this computer is about to " -"hibernate." -msgstr "" -"De acculading is onder het kritieke niveau, De computer zal in slaapstand " -"gaan." - -#. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1654 -msgid "" -"The battery is below the critical level and this computer is about to " -"shutdown." -msgstr "" -"De acculading is onder het kritieke niveau. De computer zal uitschakelen." - -#. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1672 -msgid "" -"UPS is below the critical level and this computer will power-off when " -"the UPS becomes completely empty." -msgstr "" -"De lading van de UPS is onder het kritieke niveau. De computer zal " -"uitvallen als de UPS volledig leeg is." - -#. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1678 -msgid "" -"UPS is below the critical level and this computer is about to hibernate." -msgstr "" -"De lading van de UPS is onder het kritieke niveau. De computer zal in " -"slaapstand gaan." - -#. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1683 -msgid "UPS is below the critical level and this computer is about to shutdown." -msgstr "" -"De lading van de UPS is onder het kritieke niveau. De computer zal " -"uitschakelen." - -#. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2100 -msgid "Lid has been opened" -msgstr "Laptop is geopend" - -#. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2127 -msgid "Lid has been closed" -msgstr "Laptop is gesloten" - -#. TRANSLATORS: this is the title of the power manager status icon -#. * that is only shown in fallback mode -#: ../plugins/power/gsd-power-manager.c:3339 -msgid "Power Manager" -msgstr "Energiebeheer" - -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:1 -msgid "Authentication is required to modify the laptop brightness" -msgstr "Authenticatie is vereist om de helderheid van de laptop aan te passen" - -#. SECURITY: -#. - A normal active user on the local machine does not need permission -#. to change the backlight brightness. -#. -#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 -msgid "Modify the laptop brightness" -msgstr "Helderheid aanpassen" - -#: ../plugins/housekeeping/gsd-disk-space.c:332 -#, c-format -msgid "Low Disk Space on \"%s\"" -msgstr "Weinig schijfruimte op ‘%s’" - -#: ../plugins/housekeeping/gsd-disk-space.c:334 -#, c-format -msgid "" -"The volume \"%s\" has only %s disk space remaining. You may free up some " -"space by emptying the trash." -msgstr "" -"Het volume ‘%s’ heeft nog maar %s schijfruimte over. U zou wat schijfruimte " -"kunnen vrijmaken door de prullenbak te legen." - -#: ../plugins/housekeeping/gsd-disk-space.c:338 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 -#, c-format -msgid "The volume \"%s\" has only %s disk space remaining." -msgstr "Het volume ’%s’ heeft nog maar %s schijfruimte over." - -#. Set up all the window stuff here -#: ../plugins/housekeeping/gsd-disk-space.c:343 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:205 -msgid "Low Disk Space" -msgstr "Weinig schijfruimte" - -#: ../plugins/housekeeping/gsd-disk-space.c:345 -#, c-format -msgid "" -"This computer has only %s disk space remaining. You may free up some space " -"by emptying the trash." -msgstr "" -"Deze computer heeft nog maar %s schijfruimte over. U zou wat schijfruimte " -"kunnen vrijmaken door de prullenbak te legen." - -#: ../plugins/housekeeping/gsd-disk-space.c:348 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 -#, c-format -msgid "This computer has only %s disk space remaining." -msgstr "Deze computer heeft nog maar %s schijfruimte over." - -#: ../plugins/housekeeping/gsd-disk-space.c:363 -msgid "Disk space" -msgstr "Schijfruimte" - -#: ../plugins/housekeeping/gsd-disk-space.c:370 -msgid "Examine" -msgstr "Onderzoeken" - -#: ../plugins/housekeeping/gsd-disk-space.c:378 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:437 -msgid "Empty Trash" -msgstr "Prullenbak legen" - -#: ../plugins/housekeeping/gsd-disk-space.c:385 -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:452 -msgid "Ignore" -msgstr "Negeren" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:66 -msgid "Don't show any warnings again for this file system" -msgstr "Geen waarschuwingen meer tonen voor dit bestandssysteem" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:68 -msgid "Don't show any warnings again" -msgstr "Geen waarschuwingen meer tonen" - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 -msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to another disk or partition." -msgstr "" -"U kunt schijfruimte vrijmaken door de prullenbak te legen, ongebruikte " -"bestanden of toepassingen te verwijderen of door bestanden naar een andere " -"schijf of partitie te verplaatsen." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 -msgid "" -"You can free up disk space by removing unused programs or files, or by " -"moving files to another disk or partition." -msgstr "" -"U kunt schijfruimte vrijmaken door ongebruikte bestanden of toepassingen te " -"verwijderen of door bestanden naar een andere schijf of partitie te " -"verplaatsen." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 -msgid "" -"You can free up disk space by emptying the Trash, removing unused programs " -"or files, or moving files to an external disk." -msgstr "" -"U kunt schijfruimte vrijmaken door de prullenbak te legen, ongebruikte " -"bestanden of toepassingen te verwijderen of door bestanden naar een externe " -"schijf te verplaatsen." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 -msgid "" -"You can free up disk space by removing unused programs or files, or by " -"moving files to an external disk." -msgstr "" -"U kunt schijfruimte vrijmaken door ongebruikte bestanden of toepassingen te " -"verwijderen of door bestanden naar een externe schijf te verplaatsen." - -#: ../plugins/housekeeping/gsd-ldsm-dialog.c:445 -msgid "Examine
" -msgstr "Onderzoeken
" - -#: ../plugins/keybindings/gsd-keybindings-manager.c:139 +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1559 #, c-format -msgid "Key binding (%s) is invalid (%d)" -msgstr "Sneltoets (%s) is ongeldig (%d)." +msgid "" +"Cell phone is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"Mobiele telefoon zit bijna zonder stroom (%.0f%%). Dit apparaat stopt " +"binnenkort met functioneren als het niet opgeladen wordt." -#: ../plugins/keybindings/gsd-keybindings-manager.c:197 +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1570 #, c-format -msgid "Key binding (%s) is incomplete" -msgstr "Sneltoets (%s) is incompleet" +msgid "" +"Media player is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"MP3-speler zit bijna zonder stroom (%.0f%%). Dit apparaat stopt binnenkort " +"met functioneren als het niet opgeladen wordt." -#: ../plugins/keybindings/gsd-keybindings-manager.c:493 +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1579 #, c-format msgid "" -"Error while trying to run (%s)\n" -"which is linked to the key (%s)" +"Tablet is very low in power (%.0f%%). This device will soon stop functioning " +"if not charged." msgstr "" -"Er is een fout opgetreden het uitvoeren van (%s)\n" -"welke gekoppeld is aan de sleutel (%s)" - -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:1 -msgid "Keybindings" -msgstr "Sneltoetsen" +"Tablet zit bijna zonder stroom (%.0f%%). Dit apparaat stopt binnenkort met " +"functioneren als het niet opgeladen wordt." -#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:2 -msgid "Keybindings plugin" -msgstr "Sneltoetsen-plugin" +#. TRANSLATORS: the device is just going to stop working +#: ../plugins/power/gsd-power-manager.c:1588 +#, c-format +msgid "" +"Attached computer is very low in power (%.0f%%). The device will soon " +"shutdown if not charged." +msgstr "" +"De aangesloten computer zit bijna zonder stroom (%.0f%%). Dit apparaat stopt " +"binnenkort met functioneren als het niet opgeladen wordt." -#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2 -msgid "Keyboard plugin" -msgstr "Toetsenbord-plugin" +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 +msgid "Battery is critically low" +msgstr "Acculading kritiek laag" -#: ../plugins/keyboard/gsd-keyboard-xkb.c:87 -#, c-format +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1683 msgid "" -"Error activating XKB configuration.\n" -"There can be various reasons for that.\n" -"\n" -"If you report this situation as a bug, include the results of\n" -" ‱ %s\n" -" ‱ %s\n" -" ‱ %s\n" -" ‱ %s" +"The battery is below the critical level and this computer will power-off when the battery becomes completely empty." msgstr "" -"Fout bij het activieren van de XKB-configuratie.\n" -"Hier kunnen meerdere redenen voor zijn.\n" -"\n" -"Als u een foutrapport indient, voeg dan het volgende bij: ‱ %s\n" -" ‱ %s\n" -" ‱ %s\n" -" ‱ %s" +"De acculading is onder het kritieke niveau en deze computer zal " +"uitvallen als de accu volledig leeg is." -#: ../plugins/keyboard/gsd-keyboard-xkb.c:243 -msgid "_Layouts" -msgstr "_Layouts" +#. TRANSLATORS: computer will suspend +#: ../plugins/power/gsd-power-manager.c:1689 +msgid "" +"The battery is below the critical level and this computer is about to " +"suspend.\n" +"NOTE: A small amount of power is required to keep your computer in a " +"suspended state." +msgstr "" +"De acculading is onder het kritieke niveau en deze computer zal in " +"pauzestand gaan.\n" +"LET OP: Ook in pauzestand vereist de computer een beperkte " +"hoeveelheid stroom." -#: ../plugins/keyboard/gsd-keyboard-xkb.c:249 -msgid "Show _Keyboard Layout..." -msgstr "_Toetsenbordindeling weergeven
" +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1696 +msgid "" +"The battery is below the critical level and this computer is about to " +"hibernate." +msgstr "" +"De acculading is onder het kritieke niveau, De computer zal in slaapstand " +"gaan." -#. translators note: -#. * This is the name of the gnome-control-center "region" panel -#: ../plugins/keyboard/gsd-keyboard-xkb.c:256 -msgid "Region and Language Settings" -msgstr "Regio- en taalinstellingen" +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1701 +msgid "" +"The battery is below the critical level and this computer is about to " +"shutdown." +msgstr "" +"De acculading is onder het kritieke niveau. De computer zal uitschakelen." -#: ../plugins/media-keys/gsd-media-keys-manager.c:230 +#. TRANSLATORS: computer will shutdown without saving data +#: ../plugins/power/gsd-power-manager.c:1719 msgid "" -"Could not get default terminal. Verify that your default terminal command is " -"set and points to a valid application." +"UPS is below the critical level and this computer will power-off when " +"the UPS becomes completely empty." msgstr "" -"Kan de standaardterminal niet opvragen. Controleer of uw standaardterminal-" -"opdracht is ingesteld en naar een geldige toepassing wijst." +"De lading van de UPS is onder het kritieke niveau. De computer zal " +"uitvallen als de UPS volledig leeg is." -#: ../plugins/media-keys/gsd-media-keys-manager.c:270 -#, c-format +#. TRANSLATORS: computer will hibernate +#: ../plugins/power/gsd-power-manager.c:1725 msgid "" -"Couldn't execute command: %s\n" -"Verify that this is a valid command." +"UPS is below the critical level and this computer is about to hibernate." msgstr "" -"Deze opdracht kon niet worden uitgevoerd: %s\n" -"Controleer of deze opdracht geldig is." +"De lading van de UPS is onder het kritieke niveau. De computer zal in " +"slaapstand gaan." -#. translators: -#. * The device has been disabled -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1091 -msgid "Disabled" -msgstr "Uitgeschakeld" +#. TRANSLATORS: computer will just shutdown +#: ../plugins/power/gsd-power-manager.c:1730 +msgid "UPS is below the critical level and this computer is about to shutdown." +msgstr "" +"De lading van de UPS is onder het kritieke niveau. De computer zal " +"uitschakelen." -#. translators: -#. * The number of sound outputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1098 -#, c-format -msgid "%u Output" -msgid_plural "%u Outputs" -msgstr[0] "%u audio-uitvoer" -msgstr[1] "%u audio-uitvoer" +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2224 +msgid "Lid has been opened" +msgstr "Laptop is geopend" -#. translators: -#. * The number of sound inputs on a particular device -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1108 -#, c-format -msgid "%u Input" -msgid_plural "%u Inputs" -msgstr[0] "%u audio-invoer" -msgstr[1] "%u audio-invoer" +#. TRANSLATORS: this is the sound description +#: ../plugins/power/gsd-power-manager.c:2301 +msgid "Lid has been closed" +msgstr "Laptop is gesloten" -#: ../plugins/media-keys/cut-n-paste/gvc-mixer-control.c:1406 -msgid "System Sounds" -msgstr "Systeemgeluiden" +#. TRANSLATORS: this is the title of the power manager status icon +#. * that is only shown in fallback mode +#: ../plugins/power/gsd-power-manager.c:3692 +msgid "Power Manager" +msgstr "Energiebeheer" -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1 -msgid "Media keys" -msgstr "Mediatoetsen" +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the backlight brightness. +#. +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:5 +msgid "Modify the laptop brightness" +msgstr "Helderheid aanpassen" -#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2 -msgid "Media keys plugin" -msgstr "Mediatoetsen-plugin" +#: ../plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in.h:6 +msgid "Authentication is required to modify the laptop brightness" +msgstr "Authenticatie is vereist om de helderheid van de laptop aan te passen" -#: ../plugins/mouse/gsd-mouse-manager.c:854 -msgid "Could not enable mouse accessibility features" -msgstr "Kon functies voor muis-toegankelijkheid niet activeren" +#: ../plugins/power/power.gnome-settings-plugin.in.h:2 +msgid "Power plugin" +msgstr "Energie-plug-in" -#: ../plugins/mouse/gsd-mouse-manager.c:856 -msgid "" -"Mouse accessibility requires Mousetweaks to be installed on your system." -msgstr "" -"Muis-toegankelijkheid vereist dat ‘mousetweaks’ op uw systeem geĂŻnstalleerd " -"is." +#. Translators: We are configuring new printer +#: ../plugins/print-notifications/gsd-printer.c:908 +msgid "Configuring new printer" +msgstr "Nieuwe printer configureren" -#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2 -msgid "Mouse plugin" -msgstr "Muis-plugin" +#. Translators: Just wait +#: ../plugins/print-notifications/gsd-printer.c:910 +msgid "Please wait..." +msgstr "Even geduld
" -#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 -msgid "Print-notifications" -msgstr "Afdruknotificaties" +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:937 +msgid "Missing printer driver" +msgstr "Printer-driver ontbreekt" -#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:2 -msgid "Print-notifications plugin" -msgstr "Plug-in voor afdruknotificaties" +#. Translators: We have no driver installed for the device +#: ../plugins/print-notifications/gsd-printer.c:946 +#, c-format +msgid "No printer driver for %s." +msgstr "Geen printer-driver voor %s." -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:172 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:550 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:573 -#: ../plugins/print-notifications/gsd-printer.c:1088 +#. Translators: We have no driver installed for this printer +#: ../plugins/print-notifications/gsd-printer.c:951 +msgid "No driver for this printer." +msgstr "Geen driver voor deze printer." + +#: ../plugins/print-notifications/gsd-printer.c:1049 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:778 msgid "Printers" msgstr "Printers" #. Translators: The printer is low on toner (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:234 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:297 msgid "Toner low" msgstr "Toner bijna leeg" #. Translators: The printer has no toner left (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:236 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:299 msgid "Toner empty" msgstr "Toner leeg" #. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:238 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:301 msgid "Not connected?" msgstr "Niet verbonden?" #. Translators: One or more covers on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:240 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:303 msgid "Cover open" msgstr "Klep open" -#. Trnaslators: A filter or backend is not installed (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:242 +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:305 msgid "Printer configuration error" msgstr "Fout in printerconfiguratie" #. Translators: One or more doors on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:244 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:307 msgid "Door open" msgstr "Deur open" #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:246 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:309 msgid "Marker supply low" msgstr "Inktvoorraad laag" #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:248 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:311 msgid "Out of a marker supply" msgstr "Een inktpatroon is leeg" #. Translators: At least one input tray is low on media (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:250 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:313 msgid "Paper low" msgstr "Weinig papier" #. Translators: At least one input tray is empty (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:252 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:315 msgid "Out of paper" msgstr "Geen papier meer" #. Translators: The printer is offline (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:254 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:317 msgid "Printer off-line" msgstr "Printer off-line" #. Translators: The printer has detected an error (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:256 +#. Translators: This is a title of an error notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:319 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:721 msgid "Printer error" msgstr "Printerfout" #. Translators: The printer is low on toner (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:260 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:323 #, c-format msgid "Printer '%s' is low on toner." msgstr "De printer ‘%s’ heeft weinig toner meer." #. Translators: The printer has no toner left (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:262 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:325 #, c-format msgid "Printer '%s' has no toner left." msgstr "De printer ‘%s’ heeft geen toner meer." #. Translators: The printer is in the process of connecting to a shared network output device (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:264 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:327 #, c-format msgid "Printer '%s' may not be connected." msgstr "De printer ‘%s’ lijkt niet aangesloten te zijn." #. Translators: One or more covers on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:266 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:329 #, c-format msgid "The cover is open on printer '%s'." msgstr "De klep van de printer ‘%s’ is open." -#. Trnaslators: A filter or backend is not installed (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:268 +#. Translators: A filter or backend is not installed (same as in system-config-printer) +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:331 #, c-format msgid "There is a missing print filter for printer '%s'." msgstr "Er ontbreekt een printfilter voor de printer ‘%s’." #. Translators: One or more doors on the printer are open (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:271 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:334 #, c-format msgid "The door is open on printer '%s'." msgstr "De deur van de printer ‘%s’ staat open." #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:273 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:336 #, c-format msgid "Printer '%s' is low on a marker supply." msgstr "De inktvoorraad van printer ‘%s’ is laag." #. Translators: "marker" is one color bin of the printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:275 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:338 #, c-format msgid "Printer '%s' is out of a marker supply." msgstr "Een inktpatroon van printer ‘%s’ is leeg." #. Translators: At least one input tray is low on media (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:277 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:340 #, c-format msgid "Printer '%s' is low on paper." msgstr "De printer ‘%s’ heeft weinig papier." #. Translators: At least one input tray is empty (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:279 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:342 #, c-format msgid "Printer '%s' is out of paper." msgstr "De printer ‘%s’ heeft geen papier meer." #. Translators: The printer is offline (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:281 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:344 #, c-format msgid "Printer '%s' is currently off-line." msgstr "De printer ‘%s’ is momenteel off-line." #. Translators: The printer has detected an error (same as in system-config-printer) -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:283 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:346 #, c-format msgid "There is a problem on printer '%s'." msgstr "Er is een probleem met de printer ‘%s’." -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:353 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:423 msgid "Printer added" msgstr "Printer toegevoegd" -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:361 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:431 msgid "Printer removed" msgstr "Printer verwijderd" #. Translators: A print job has been stopped -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:378 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:448 msgid "Printing stopped" msgstr "Afdrukken gestopt" #. Translators: "print-job xy" on a printer -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:380 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:386 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:392 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:398 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:412 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:427 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:450 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:456 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:462 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:468 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:480 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:500 #, c-format msgid "\"%s\" on %s" msgstr "‘%s’ op %s" #. Translators: A print job has been canceled -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:384 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:454 msgid "Printing canceled" msgstr "Afdrukken geannuleerd" #. Translators: A print job has been aborted -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:390 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:460 msgid "Printing aborted" msgstr "Afdrukken afgebroken" #. Translators: A print job has been completed -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:396 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:466 msgid "Printing completed" msgstr "Afdrukken voltooid" #. Translators: A job is printing -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:410 -#: ../plugins/print-notifications/gsd-print-notifications-manager.c:425 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:478 +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:498 msgid "Printing" msgstr "Afdrukken" -#. Translators: We are configuring new printer -#: ../plugins/print-notifications/gsd-printer.c:942 -msgid "Configuring new printer" -msgstr "Nieuwe printer configureren" - -#. Translators: Just wait -#: ../plugins/print-notifications/gsd-printer.c:944 -msgid "Please wait..." -msgstr "Even geduld
" - -#. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:971 -msgid "Missing printer driver" -msgstr "Printer-driver ontbreekt" - -#. Translators: We have no driver installed for the device -#: ../plugins/print-notifications/gsd-printer.c:980 -#, c-format -msgid "No printer driver for %s." -msgstr "Geen printer-driver voor %s." - -#. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:985 -msgid "No driver for this printer." -msgstr "Geen driver voor deze printer." - -# draaistand/orientatie/ligging/rotatie -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 -msgid "Set up screen size and rotation settings" -msgstr "Schermafmeting en draaistand instellen" - -#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 -msgid "XRandR" -msgstr "XRandR" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:419 -msgid "Could not switch the monitor configuration" -msgstr "Kon de schermconfiguratie niet wisselen" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:443 -msgid "Could not restore the display's configuration" -msgstr "Kon schermconfiguratie niet herstellen" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:468 -msgid "Could not restore the display's configuration from a backup" -msgstr "Kon de schermconfiguratie niet van een reservekopie herstellen" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:489 -#, c-format -msgid "The display will be reset to its previous configuration in %d second" -msgid_plural "" -"The display will be reset to its previous configuration in %d seconds" -msgstr[0] "" -"Het scherm zal ingesteld worden op de vorige instelling over %d seconde" -msgstr[1] "" -"Het scherm zal ingesteld worden op de vorige instelling over %d seconden" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:538 -msgid "Does the display look OK?" -msgstr "Ziet het scherm er goed uit?" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:545 -msgid "_Restore Previous Configuration" -msgstr "De _vorige configuratie gebruiken" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:546 -msgid "_Keep This Configuration" -msgstr "Deze configuration _houden" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:627 -msgid "The selected configuration for displays could not be applied" -msgstr "De geselecteerde schermconfiguratie kon niet worden toegepast" +#. Translators: This is a title of a report notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:715 +msgid "Printer report" +msgstr "Printerrapport" + +#. Translators: This is a title of a warning notification for a printer +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:718 +msgid "Printer warning" +msgstr "Printerwaarschuwing" -#: ../plugins/xrandr/gsd-xrandr-manager.c:1187 +#. Translators: "Printer 'MyPrinterName': 'Description of the report/warning/error from a PPD file'." +#: ../plugins/print-notifications/gsd-print-notifications-manager.c:728 #, c-format -msgid "Could not refresh the screen information: %s" -msgstr "Kon scherminformatie niet verversen: %s" - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1191 -msgid "Trying to switch the monitor configuration anyway." -msgstr "Toch aan het proberen de monitorconfiguratie aan te passen." - -#: ../plugins/xrandr/gsd-xrandr-manager.c:1742 -msgid "Could not apply the stored configuration for monitors" -msgstr "Kon de opgeslagen monitorconfiguratie niet toepassen" +msgid "Printer '%s': '%s'." +msgstr "Printer ‘%s’: ‘%s’." -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 -msgid "Manage X Settings" -msgstr "X-instellingen beheren" - -#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 -msgid "X Settings" -msgstr "X-instellingen" +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:1 +msgid "Print-notifications" +msgstr "Afdruknotificaties" -#: ../plugins/smartcard/gsd-smartcard-manager.c:187 -msgid "Module Path" -msgstr "Modulepad" - -#: ../plugins/smartcard/gsd-smartcard-manager.c:188 -msgid "path to smartcard PKCS #11 driver" -msgstr "pad naar een smartcard PKCS#11-driver" +#: ../plugins/print-notifications/print-notifications.gnome-settings-plugin.in.h:2 +msgid "Print-notifications plugin" +msgstr "Plug-in voor afdruknotificaties" -#: ../plugins/smartcard/gsd-smartcard-manager.c:528 +#: ../plugins/smartcard/gsd-smartcard-manager.c:523 msgid "received error or hang up from event source" msgstr "fout of opgehangen ontvangen van gebeurtenisbron" -#: ../plugins/smartcard/gsd-smartcard-manager.c:662 +#: ../plugins/smartcard/gsd-smartcard-manager.c:657 #, c-format msgid "NSS security system could not be initialized" msgstr "NSS beveiligingssysteem kon niet geĂŻnitialiseerd worden" -#: ../plugins/smartcard/gsd-smartcard-manager.c:790 +#: ../plugins/smartcard/gsd-smartcard-manager.c:785 #, c-format msgid "no suitable smartcard driver could be found" msgstr "er is geen geschikt smartcard-stuurprogramma gevonden" -#: ../plugins/smartcard/gsd-smartcard-manager.c:804 +#: ../plugins/smartcard/gsd-smartcard-manager.c:799 #, c-format msgid "smartcard driver '%s' could not be loaded" msgstr "smartcard-stuurprogramma ‘%s’ kon niet worden geladen" -#: ../plugins/smartcard/gsd-smartcard-manager.c:876 +#: ../plugins/smartcard/gsd-smartcard-manager.c:871 #, c-format msgid "could not watch for incoming card events - %s" msgstr "Kon niet controleren op inkomende kaartactie - %s" -#: ../plugins/smartcard/gsd-smartcard-manager.c:1274 +#: ../plugins/smartcard/gsd-smartcard-manager.c:1269 #, c-format msgid "encountered unexpected error while waiting for smartcard events" msgstr "" "er is een onverwachte fout opgetreden bij het wachten op smartcardacties" -#: ../plugins/smartcard/gsd-smartcard.c:158 -msgid "Slot ID" -msgstr "Sleuf-ID" - -#: ../plugins/smartcard/gsd-smartcard.c:159 -msgid "The slot the card is in" -msgstr "De sleuf waar de kaart in zit" - -#: ../plugins/smartcard/gsd-smartcard.c:165 -msgid "Slot Series" -msgstr "Slot Series" - -#: ../plugins/smartcard/gsd-smartcard.c:166 -msgid "per-slot card identifier" -msgstr "per-sleuf kaartidentifier" - -#: ../plugins/smartcard/gsd-smartcard.c:172 -#: ../plugins/smartcard/gsd-smartcard.c:173 -msgid "name" -msgstr "naam" - -#: ../plugins/smartcard/gsd-smartcard.c:177 -msgid "Module" -msgstr "Module" - -#: ../plugins/smartcard/gsd-smartcard.c:178 -msgid "smartcard driver" -msgstr "smartcard-driver" - -# draaistand/orientatie/ligging/rotatie -#: ../plugins/datetime/org.gnome.settingsdaemon.datetimemechanism.policy.in.h:1 -msgid "Change system time and date settings" -msgstr "Systeemdatum en -tijd instellen" - -#: ../plugins/datetime/org.gnome.settingsdaemon.datetimemechanism.policy.in.h:2 -msgid "To change time or date settings, you need to authenticate." -msgstr "Authenticatie is vereist om de tijd of datum aan te passen." +#. TRANSLATORS: we need to restart so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:240 +msgid "" +"You will need to restart this computer before the hardware will work " +"correctly." +msgstr "" +"U dient de computer opnieuw op te starten voordat de hardware correct zal " +"werken." -#. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 -#: ../plugins/updates/gsd-updates-manager.c:199 -msgid "Distribution upgrades available" -msgstr "Distributie-upgrade beschikbaar" +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:243 +#: ../plugins/updates/gsd-updates-firmware.c:268 +#: ../plugins/updates/gsd-updates-firmware.c:293 +msgid "Additional software was installed" +msgstr "Er is aanvullende software geĂŻnstalleerd." +#: ../plugins/updates/gsd-updates-firmware.c:244 +#: ../plugins/updates/gsd-updates-firmware.c:269 +#: ../plugins/updates/gsd-updates-firmware.c:294 +#: ../plugins/updates/gsd-updates-firmware.c:583 #: ../plugins/updates/gsd-updates-manager.c:203 #: ../plugins/updates/gsd-updates-manager.c:328 #: ../plugins/updates/gsd-updates-manager.c:387 #: ../plugins/updates/gsd-updates-manager.c:443 #: ../plugins/updates/gsd-updates-manager.c:575 -#: ../plugins/updates/gsd-updates-manager.c:664 -#: ../plugins/updates/gsd-updates-firmware.c:244 -#: ../plugins/updates/gsd-updates-firmware.c:269 -#: ../plugins/updates/gsd-updates-firmware.c:294 -#: ../plugins/updates/gsd-updates-firmware.c:584 +#: ../plugins/updates/gsd-updates-manager.c:663 msgid "Software Updates" msgstr "Software-updates" +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:265 +msgid "" +"You will need to remove and then reinsert the hardware before it will work " +"correctly." +msgstr "" +"U dient de hardware te verwijderen en opnieuw aan te sluiten voordat deze " +"correct werkt." + +#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware +#: ../plugins/updates/gsd-updates-firmware.c:290 +msgid "Your hardware has been set up and is now ready to use." +msgstr "De hardware is nu ingesteld en klaar voor gebruik." + +#. TRANSLATORS: we need another package to keep udev quiet +#: ../plugins/updates/gsd-updates-firmware.c:568 +msgid "" +"Additional firmware is required to make hardware in this computer function " +"correctly." +msgstr "" +"Er is aanvullende firmware nodig om de hardware in deze computer goed te " +"laten werken." + +#. TRANSLATORS: title of libnotify bubble +#: ../plugins/updates/gsd-updates-firmware.c:582 +msgid "Additional firmware required" +msgstr "Aanvullende firmware vereist" + +#. TRANSLATORS: button label +#: ../plugins/updates/gsd-updates-firmware.c:588 +msgid "Install firmware" +msgstr "Firmware installeren" + +#. TRANSLATORS: we should ignore this device and not ask anymore +#: ../plugins/updates/gsd-updates-firmware.c:591 +msgid "Ignore devices" +msgstr "Apparaat negeren" + +#. TRANSLATORS: a distro update is available, e.g. Fedora 8 to Fedora 9 +#: ../plugins/updates/gsd-updates-manager.c:199 +msgid "Distribution upgrades available" +msgstr "Distributie-upgrade beschikbaar" + #. TRANSLATORS: provides more information about the upgrade #: ../plugins/updates/gsd-updates-manager.c:208 msgid "More information" @@ -3136,79 +3101,325 @@ msgstr "Computer nu opnieuw starten" #. TRANSLATORS: the updates mechanism -#: ../plugins/updates/gsd-updates-manager.c:652 +#: ../plugins/updates/gsd-updates-manager.c:651 msgid "Updates" msgstr "Updates" #. TRANSLATORS: we failed to get the updates multiple times, #. * and now we need to inform the user that something might be wrong -#: ../plugins/updates/gsd-updates-manager.c:656 +#: ../plugins/updates/gsd-updates-manager.c:655 msgid "Unable to access software updates" msgstr "Kon software-updates niet verkrijgen" #. TRANSLATORS: try again, this time launching the update viewer -#: ../plugins/updates/gsd-updates-manager.c:659 +#: ../plugins/updates/gsd-updates-manager.c:658 msgid "Try again" msgstr "Opnieuw proberen" #. TRANSLATORS: the reason why we've inhibited it -#: ../plugins/updates/gsd-updates-manager.c:1097 +#: ../plugins/updates/gsd-updates-manager.c:1096 msgid "A transaction that cannot be interrupted is running" msgstr "Er is een niet-onderbreekbare transactie actief." -#. TRANSLATORS: we need to restart so the new hardware can re-request the firmware -#: ../plugins/updates/gsd-updates-firmware.c:240 -msgid "" -"You will need to restart this computer before the hardware will work " -"correctly." -msgstr "" -"U dient de computer opnieuw op te starten voordat de hardware correct zal " -"werken." +#: ../plugins/wacom/gsd-wacom-device.c:909 +#, c-format +msgid "Left Ring Mode #%d" +msgstr "Linker ring-modus #%d" -#. TRANSLATORS: title of libnotify bubble -#: ../plugins/updates/gsd-updates-firmware.c:243 -#: ../plugins/updates/gsd-updates-firmware.c:268 -#: ../plugins/updates/gsd-updates-firmware.c:293 -msgid "Additional software was installed" -msgstr "Er is aanvullende software geĂŻnstalleerd." +#: ../plugins/wacom/gsd-wacom-device.c:916 +#, c-format +msgid "Right Ring Mode #%d" +msgstr "Rechter ring-modus #%d" -#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware -#: ../plugins/updates/gsd-updates-firmware.c:265 -msgid "" -"You will need to remove and then reinsert the hardware before it will work " -"correctly." -msgstr "" -"U dient de hardware te verwijderen en opnieuw aan te sluiten voordat deze " -"correct werkt." +#: ../plugins/wacom/gsd-wacom-device.c:944 +#, c-format +msgid "Left Touchstrip Mode #%d" +msgstr "Linker aanraakstrookmodus #%d" -#. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware -#: ../plugins/updates/gsd-updates-firmware.c:290 -msgid "Your hardware has been set up and is now ready to use." -msgstr "De hardware is nu ingesteld en klaar voor gebruik." +#: ../plugins/wacom/gsd-wacom-device.c:951 +#, c-format +msgid "Right Touchstrip Mode #%d" +msgstr "Rechter aanraakstrookmodus #%d" -#. TRANSLATORS: we need another package to keep udev quiet -#: ../plugins/updates/gsd-updates-firmware.c:569 -msgid "" -"Additional firmware is required to make hardware in this computer function " -"correctly." +#: ../plugins/wacom/gsd-wacom-device.c:966 +#, c-format +msgid "Left Touchring Mode Switch" +msgstr "Schakelaar linker aanraakringmodus" + +#: ../plugins/wacom/gsd-wacom-device.c:968 +#, c-format +msgid "Right Touchring Mode Switch" +msgstr "Schakelaar rechter aanraakringmodus" + +#: ../plugins/wacom/gsd-wacom-device.c:971 +#, c-format +msgid "Left Touchstrip Mode Switch" +msgstr "Schakelaar linker aanraakstrookmodus" + +#: ../plugins/wacom/gsd-wacom-device.c:973 +#, c-format +msgid "Right Touchstrip Mode Switch" +msgstr "Schakelaar rechter aanraakstrookmodus" + +#: ../plugins/wacom/gsd-wacom-device.c:978 +#, c-format +msgid "Mode Switch #%d" +msgstr "Modusschakelaar #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1050 +#, c-format +msgid "Left Button #%d" +msgstr "Linkerknop #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1053 +#, c-format +msgid "Right Button #%d" +msgstr "Rechterknop #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1056 +#, c-format +msgid "Top Button #%d" +msgstr "Bovenste knop #%d" + +#: ../plugins/wacom/gsd-wacom-device.c:1059 +#, c-format +msgid "Bottom Button #%d" +msgstr "Onderste knop #%d" + +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:5 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "Verlichte led voor een Wacom tablet wijzigen" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +msgid "Authentication is required to modify the lit LED for a Wacom tablet" msgstr "" -"Er is aanvullende firmware nodig om de hardware in deze computer goed te " -"laten werken." +"Authenticatie is vereist om de verlichte led voor een Wacom tablet te " +"wijzigen" -#. TRANSLATORS: title of libnotify bubble -#: ../plugins/updates/gsd-updates-firmware.c:583 -msgid "Additional firmware required" -msgstr "Aanvullende firmware vereist" +#: ../plugins/xrandr/gsd-xrandr-manager.c:500 +msgid "Could not switch the monitor configuration" +msgstr "Kon de schermconfiguratie niet wisselen" -#. TRANSLATORS: button label -#: ../plugins/updates/gsd-updates-firmware.c:589 -msgid "Install firmware" -msgstr "Firmware installeren" +#: ../plugins/xrandr/gsd-xrandr-manager.c:524 +msgid "Could not restore the display's configuration" +msgstr "Kon schermconfiguratie niet herstellen" -#. TRANSLATORS: we should ignore this device and not ask anymore -#: ../plugins/updates/gsd-updates-firmware.c:592 -msgid "Ignore devices" -msgstr "Apparaat negeren" +#: ../plugins/xrandr/gsd-xrandr-manager.c:549 +msgid "Could not restore the display's configuration from a backup" +msgstr "Kon de schermconfiguratie niet van een reservekopie herstellen" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:570 +#, c-format +msgid "The display will be reset to its previous configuration in %d second" +msgid_plural "" +"The display will be reset to its previous configuration in %d seconds" +msgstr[0] "" +"Het scherm zal ingesteld worden op de vorige instelling over %d seconde" +msgstr[1] "" +"Het scherm zal ingesteld worden op de vorige instelling over %d seconden" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:619 +msgid "Does the display look OK?" +msgstr "Ziet het scherm er goed uit?" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:626 +msgid "_Restore Previous Configuration" +msgstr "De _vorige configuratie gebruiken" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:627 +msgid "_Keep This Configuration" +msgstr "Deze configuration _houden" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:708 +msgid "The selected configuration for displays could not be applied" +msgstr "De geselecteerde schermconfiguratie kon niet worden toegepast" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:1358 +#, c-format +msgid "Could not refresh the screen information: %s" +msgstr "Kon scherminformatie niet verversen: %s" + +#: ../plugins/xrandr/gsd-xrandr-manager.c:1362 +msgid "Trying to switch the monitor configuration anyway." +msgstr "Toch aan het proberen de monitorconfiguratie aan te passen." + +#: ../plugins/xrandr/gsd-xrandr-manager.c:1793 +msgid "Could not apply the stored configuration for monitors" +msgstr "Kon de opgeslagen monitorconfiguratie niet toepassen" + +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1 +msgid "XRandR" +msgstr "XRandR" + +# draaistand/orientatie/ligging/rotatie +#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2 +msgid "Set up screen size and rotation settings" +msgstr "Schermafmeting en draaistand instellen" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1 +msgid "X Settings" +msgstr "X-instellingen" + +#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2 +msgid "Manage X Settings" +msgstr "X-instellingen beheren" + +#~ msgid "Allowed keys" +#~ msgstr "Toegestane toetsen" + +#~ msgid "" +#~ "If non-empty, keybindings will be ignored unless their settings directory " +#~ "is in the list. This is useful for lockdown." +#~ msgstr "" +#~ "Indien niet leeg zullen sneltoetsen genegeerd worden, tenzij het GConf-" +#~ "pad in de lijst voorkomt. Dit is handig voor het vergrendelen van " +#~ "bepaalde functionaliteit." + +#~ msgid "Enable this to set the cursor to absolute mode." +#~ msgstr "Schakel dit in om de cursor in de absolute modus te zetten." + +#~ msgid "Enable this to set the stylus to absolute mode." +#~ msgstr "Schakel dit in om de stylus in de absolute modus te zetten." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the cursor." +#~ msgstr "" +#~ "Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de cursor " +#~ "gebruikt kan worden." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the eraser." +#~ msgstr "" +#~ "Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de eraser " +#~ "gebruikt kan worden." + +#~ msgid "Set this to x1, y1 and x2, y2 of the area usable by the pad." +#~ msgstr "" +#~ "Stel dit in op de x1, y1 en x2, y2 van het gebied dat door de pad " +#~ "gebruikt kan worden." + +#~ msgid "Wacom cursor absolute mode" +#~ msgstr "Wacom cursor absolute-modus" + +#~ msgid "Wacom cursor button mapping" +#~ msgstr "Wacom cursor button mapping" + +#~ msgid "Wacom cursor tablet area" +#~ msgstr "Wacom cursor tabletgebied" + +#~ msgid "Wacom eraser absolute mode" +#~ msgstr "Wacom eraser absolute-modus" + +#~ msgid "Wacom eraser tablet area" +#~ msgstr "Wacom eraser tablet gebied" + +#~ msgid "Wacom stylus tablet area" +#~ msgstr "Wacom stylus tabletgebied" + +#~ msgid "Do you want to activate Slow Keys?" +#~ msgstr "Wilt u Trage Toetsen activeren?" + +#~ msgid "Do you want to deactivate Slow Keys?" +#~ msgstr "Wilt u Trage Toetsen deactiveren?" + +#~ msgid "Don't activate" +#~ msgstr "Niet activeren" + +#~ msgid "Don't deactivate" +#~ msgstr "Niet deactiveren" + +#~ msgid "Activate" +#~ msgstr "Activeren" + +# uitzetten +#~ msgid "Deactivate" +#~ msgstr "Deactiveren" + +#~ msgid "Do_n't activate" +#~ msgstr "_Niet activeren" + +#~ msgid "Do_n't deactivate" +#~ msgstr "_Niet deactiveren" + +#~ msgid "_Activate" +#~ msgstr "_Activeren" + +# uitzetten +#~ msgid "_Deactivate" +#~ msgstr "_Deactiveren" + +#~ msgid "Do you want to activate Sticky Keys?" +#~ msgstr "Wilt u plaktoetsen activeren?" + +#~ msgid "Do you want to deactivate Sticky Keys?" +#~ msgstr "Wilt u plaktoetsen deactiveren?" + +#~ msgid "Default" +#~ msgstr "Standaard" + +#~ msgid "Key binding (%s) is invalid (%d)" +#~ msgstr "Sneltoets (%s) is ongeldig (%d)." + +#~ msgid "Key binding (%s) is incomplete" +#~ msgstr "Sneltoets (%s) is incompleet" + +#~ msgid "" +#~ "Error while trying to run (%s)\n" +#~ "which is linked to the key (%s)" +#~ msgstr "" +#~ "Er is een fout opgetreden het uitvoeren van (%s)\n" +#~ "welke gekoppeld is aan de sleutel (%s)" + +#~ msgid "Keybindings plugin" +#~ msgstr "Sneltoetsen-plugin" + +#~ msgid "" +#~ "Could not get default terminal. Verify that your default terminal command " +#~ "is set and points to a valid application." +#~ msgstr "" +#~ "Kan de standaardterminal niet opvragen. Controleer of uw " +#~ "standaardterminal-opdracht is ingesteld en naar een geldige toepassing " +#~ "wijst." + +#~ msgid "" +#~ "Couldn't execute command: %s\n" +#~ "Verify that this is a valid command." +#~ msgstr "" +#~ "Deze opdracht kon niet worden uitgevoerd: %s\n" +#~ "Controleer of deze opdracht geldig is." + +#~ msgid "Module Path" +#~ msgstr "Modulepad" + +#~ msgid "path to smartcard PKCS #11 driver" +#~ msgstr "pad naar een smartcard PKCS#11-driver" + +#~ msgid "Slot ID" +#~ msgstr "Sleuf-ID" + +#~ msgid "The slot the card is in" +#~ msgstr "De sleuf waar de kaart in zit" + +#~ msgid "Slot Series" +#~ msgstr "Slot Series" + +#~ msgid "per-slot card identifier" +#~ msgstr "per-sleuf kaartidentifier" + +#~ msgid "Module" +#~ msgstr "Module" + +#~ msgid "smartcard driver" +#~ msgstr "smartcard-driver" + +# draaistand/orientatie/ligging/rotatie +#~ msgid "Change system time and date settings" +#~ msgstr "Systeemdatum en -tijd instellen" + +#~ msgid "To change time or date settings, you need to authenticate." +#~ msgstr "Authenticatie is vereist om de tijd of datum aan te passen." #~ msgid "Keyboard _Preferences" #~ msgstr "Toetsenbord_voorkeuren" @@ -3343,9 +3554,6 @@ #~ msgid "Binding to toggle the magnifier." #~ msgstr "Sneltoets om het vergrootglas aan of uit te zetten." -#~ msgid "Binding to toggle the screen reader." -#~ msgstr "Sneltoets om de schermlezer aan of uit te zetten." - #~ msgid "Bounce keys" #~ msgstr "Kaatstoetsen" @@ -3526,10 +3734,6 @@ #~ msgid "Toggle touchpad" #~ msgstr "Touchpad in- of uitchakelen" -#~ msgid "Binding to toggle the on-screen keyboard." -#~ msgstr "" -#~ "Sneltoets om het schermtoetsenbord op het scherm aan of uit te zetten." - #~ msgid "Enable keybindings plugin" #~ msgstr "Sneltoetsenplug-in activeren" diff -Nru gnome-settings-daemon-3.4.0/po/sv.po gnome-settings-daemon-3.4.1/po/sv.po --- gnome-settings-daemon-3.4.0/po/sv.po 2012-03-16 17:29:35.000000000 +0000 +++ gnome-settings-daemon-3.4.1/po/sv.po 2012-04-12 09:54:01.000000000 +0000 @@ -13,8 +13,8 @@ msgstr "" "Project-Id-Version: gnome-settings-daemon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-19 13:36+0100\n" -"PO-Revision-Date: 2012-02-19 19:27+0100\n" +"POT-Creation-Date: 2012-03-29 07:49+0200\n" +"PO-Revision-Date: 2012-03-28 08:01+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -32,40 +32,60 @@ msgstr "BorttagningsĂ„tgĂ€rd för smartkort" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:2 -msgid "Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The action will get performed when the smartcard used for log in is removed." -msgstr "StĂ€ll in denna till en av \"none\", \"lock-screen\" eller \"force-logout\". ÅtgĂ€rden kommer att genomföras nĂ€r det smartkort som anvĂ€nds för inloggning tas bort." +msgid "" +"Set this to one of \"none\", \"lock-screen\", or \"force-logout\". The " +"action will get performed when the smartcard used for log in is removed." +msgstr "" +"StĂ€ll in denna till en av \"none\", \"lock-screen\" eller \"force-logout\". " +"ÅtgĂ€rden kommer att genomföras nĂ€r det smartkort som anvĂ€nds för inloggning " +"tas bort." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:3 msgid "Disable touchpad while typing" msgstr "Inaktivera pekplatta under skrivning" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:4 -msgid "Set this to TRUE if you have problems with accidentally hitting the touchpad while typing." -msgstr "StĂ€ll in denna till TRUE om du har problem med oavsiktliga tryck pĂ„ pekplattan nĂ€r du skriver." +msgid "" +"Set this to TRUE if you have problems with accidentally hitting the touchpad " +"while typing." +msgstr "" +"StĂ€ll in denna till TRUE om du har problem med oavsiktliga tryck pĂ„ " +"pekplattan nĂ€r du skriver." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:5 msgid "Enable horizontal scrolling" msgstr "Aktivera horisontell rullning" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:6 -msgid "Set this to TRUE to allow horizontal scrolling by the same method selected with the scroll_method key." -msgstr "StĂ€ll in denna till TRUE för att tillĂ„ta horisontell rullning med samma metod som valts med nyckeln scroll_method." +msgid "" +"Set this to TRUE to allow horizontal scrolling by the same method selected " +"with the scroll_method key." +msgstr "" +"StĂ€ll in denna till TRUE för att tillĂ„ta horisontell rullning med samma " +"metod som valts med nyckeln scroll_method." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:7 msgid "Select the touchpad scroll method" msgstr "VĂ€lj rullningsmetod för pekplattan" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:8 -msgid "Select the touchpad scroll method. Supported values are: \"disabled\", \"edge-scrolling\", \"two-finger-scrolling\"." -msgstr "VĂ€lj rullningsmetod för pekplattan. VĂ€rden som stöds Ă€r: \"disabled\", \"edge-scrolling\", \"two-finger-scrolling\"." +msgid "" +"Select the touchpad scroll method. Supported values are: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." +msgstr "" +"VĂ€lj rullningsmetod för pekplattan. VĂ€rden som stöds Ă€r: \"disabled\", " +"\"edge-scrolling\", \"two-finger-scrolling\"." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:9 msgid "Enable mouse clicks with touchpad" msgstr "Aktivera musklick med pekplatta" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:10 -msgid "Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." -msgstr "StĂ€ll in denna till TRUE för att kunna skicka musklick genom att trycka pĂ„ pekplattan." +msgid "" +"Set this to TRUE to be able to send mouse clicks by tapping on the touchpad." +msgstr "" +"StĂ€ll in denna till TRUE för att kunna skicka musklick genom att trycka pĂ„ " +"pekplattan." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:11 msgid "Enable touchpad" @@ -76,8 +96,12 @@ msgstr "StĂ€ll in denna till TRUE för att aktivera alla pekplattor." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:13 -msgid "Highlights the current location of the pointer when the Control key is pressed and released." -msgstr "Markerar den aktuella platsen för muspekaren nĂ€r Control-tangenten trycks ner och slĂ€pps." +msgid "" +"Highlights the current location of the pointer when the Control key is " +"pressed and released." +msgstr "" +"Markerar den aktuella platsen för muspekaren nĂ€r Control-tangenten trycks " +"ner och slĂ€pps." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:14 msgid "Double click time" @@ -100,8 +124,12 @@ msgstr "Emulering av mittenknapp" #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:19 -msgid "Enables middle mouse button emulation through simultaneous left and right button click." -msgstr "Aktiverar emulering av musens mittenknapp genom samtidigt klick pĂ„ vĂ€nster- och högerknapp." +msgid "" +"Enables middle mouse button emulation through simultaneous left and right " +"button click." +msgstr "" +"Aktiverar emulering av musens mittenknapp genom samtidigt klick pĂ„ vĂ€nster- " +"och högerknapp." #: ../data/org.gnome.settings-daemon.peripherals.gschema.xml.in.in.h:20 msgid "Whether the tablet's orientation is locked, or rotated automatically." @@ -143,7 +171,9 @@ #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:2 #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:2 msgid "Whether this plugin would be activated by gnome-settings-daemon or not" -msgstr "Huruvida denna insticksmodul ska aktiveras genom gnome-settings-daemon eller inte" +msgstr "" +"Huruvida denna insticksmodul ska aktiveras genom gnome-settings-daemon eller " +"inte" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:3 #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:3 @@ -173,34 +203,39 @@ #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:6 #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:8 msgid "Priority to use for this plugin in gnome-settings-daemon startup queue" -msgstr "Prioritet att anvĂ€nda för denna insticksmodul i uppstartskön för gnome-settings-daemon" +msgstr "" +"Prioritet att anvĂ€nda för denna insticksmodul i uppstartskön för gnome-" +"settings-daemon" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:5 msgid "Wacom stylus absolute mode" msgstr "Absolut lĂ€ge för Wacom-penna" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:6 -#, fuzzy msgid "Enable this to set the tablet to absolute mode." -msgstr "Aktivera denna för att stĂ€lla in raderaren till absolut lĂ€ge." +msgstr "Aktivera denna för att stĂ€lla in ritplattan till absolut lĂ€ge." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:7 -#, fuzzy msgid "Wacom tablet area" -msgstr "Ritplattans yta för Wacom-platta" +msgstr "OmrĂ„de för Wacom-platta" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:8 -#, fuzzy msgid "Set this to x1, y1 and x2, y2 of the area usable by the tools." -msgstr "StĂ€ll in denna till x1, y1 och x2, y2 av ytan som Ă€r anvĂ€ndbar av pennan." +msgstr "" +"StĂ€ll in denna till x1, y1 och x2, y2 för omrĂ„det som ska anvĂ€ndas av " +"verktygen." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:9 msgid "Wacom tablet rotation" msgstr "Rotation för Wacom-ritplatta" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:10 -msgid "Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and 'ccw' for 90 degree counterclockwise." -msgstr "StĂ€ll in denna till \"none\", \"cw\" för 90 grader medsols, \"half\" för 180 grader, samt \"ccw\" för 90 grader motsols." +msgid "" +"Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and " +"'ccw' for 90 degree counterclockwise." +msgstr "" +"StĂ€ll in denna till \"none\", \"cw\" för 90 grader medsols, \"half\" för 180 " +"grader, samt \"ccw\" för 90 grader motsols." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:11 msgid "Wacom touch feature" @@ -216,24 +251,33 @@ #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:14 msgid "Enable this to only report stylus events when the tip is pressed." -msgstr "Aktivera denna för att endast rapportera pennhĂ€ndelser nĂ€r spetsen trycks ner." +msgstr "" +"Aktivera denna för att endast rapportera pennhĂ€ndelser nĂ€r spetsen trycks " +"ner." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:15 -#, fuzzy msgid "Wacom display mapping" -msgstr "Knappmappning för Wacom-platta" +msgstr "SkĂ€rmmappning för Wacom-platta" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:16 -msgid "EDID information of monitor to map tablet to. Must be in the format [vendor, product, serial]. [\"\",\"\",\"\"] disables mapping." +msgid "" +"EDID information of monitor to map tablet to. Must be in the format [vendor, " +"product, serial]. [\"\",\"\",\"\"] disables mapping." msgstr "" +"EDID-information för skĂ€rmen att mappa ritplattan till. MĂ„ste vara i " +"formatet [tillverkare, produkt, serienummer]. [\"\",\"\",\"\"] inaktiverar " +"mappningen." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:17 msgid "Wacom stylus pressure curve" msgstr "Tryckkurva för Wacom-penna" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:18 -msgid "Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." -msgstr "StĂ€ll in denna till x1, y1 och x2, y2 för tryckkurvan som tillĂ€mpas för pennan." +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus." +msgstr "" +"StĂ€ll in denna till x1, y1 och x2, y2 för tryckkurvan som tillĂ€mpas för " +"pennan." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:19 msgid "Wacom stylus button mapping" @@ -248,16 +292,21 @@ msgstr "TryckvĂ€rde för Wacom-penna" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:22 -msgid "Set this to the pressure value at which a stylus click event is generated." -msgstr "StĂ€ll in denna till tryckvĂ€rdet vid vilket en pennklickshĂ€ndelse genereras." +msgid "" +"Set this to the pressure value at which a stylus click event is generated." +msgstr "" +"StĂ€ll in denna till tryckvĂ€rdet vid vilket en pennklickshĂ€ndelse genereras." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:23 msgid "Wacom eraser pressure curve" msgstr "Tryckkurva för Wacom-raderare" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:24 -msgid "Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." -msgstr "StĂ€ll in denna till x1, y1 och x2, y2 för tryckkurvan som tillĂ€mpas för raderaren." +msgid "" +"Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser." +msgstr "" +"StĂ€ll in denna till x1, y1 och x2, y2 för tryckkurvan som tillĂ€mpas för " +"raderaren." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:25 msgid "Wacom eraser button mapping" @@ -268,41 +317,65 @@ msgstr "TryckvĂ€rde för Wacom-raderare" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:27 -msgid "Set this to the pressure value at which an eraser click event is generated." -msgstr "StĂ€ll in denna till tryckvĂ€rdet vid vilket en raderarklickshĂ€ndelse genereras." +msgid "" +"Set this to the pressure value at which an eraser click event is generated." +msgstr "" +"StĂ€ll in denna till tryckvĂ€rdet vid vilket en raderarklickshĂ€ndelse " +"genereras." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:28 -#, fuzzy msgid "Wacom button action type" -msgstr "Knappmappning för Wacom-platta" +msgstr "ÅtgĂ€rdstyp för Wacom-knapp" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:29 msgid "The type of action triggered by the button being pressed." -msgstr "" +msgstr "Typen av Ă„tgĂ€rd som utlöses av att knappen trycks ned." #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:30 msgid "Key combination for the custom action" msgstr "Tangentkombination för anpassad Ă„tgĂ€rd" #: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:31 -msgid "The keyboard shortcut generated when the button is pressed for custom actions." +msgid "" +"The keyboard shortcut generated when the button is pressed for custom " +"actions." msgstr "" +"TangentbordsgenvĂ€gen som genereras nĂ€r knappen trycks ner för anpassade " +"Ă„tgĂ€rder." + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:32 +msgid "Key combinations for an elevator custom action" +msgstr "Tangentkombinationer för en anpassad \"elevator\"-Ă„tgĂ€rd" + +#: ../data/org.gnome.settings-daemon.peripherals.wacom.gschema.xml.in.in.h:33 +msgid "" +"The keyboard shortcuts generated when a touchring or touchstrip is used for " +"custom actions (up followed by down)." +msgstr "" +"TangentbordsgenvĂ€gen som genereras nĂ€r en touchring eller touchstrip anvĂ€nds " +"för anpassade Ă„tgĂ€rder (upp följt av ner)." #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:5 msgid "The duration a display profile is valid" msgstr "TidslĂ€ngden som en skĂ€rmprofil Ă€r giltig" #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:6 -msgid "This is the number of days after which the display color profile is considered invalid." -msgstr "Detta Ă€r antalet dagar efter vilken skĂ€rmens fĂ€rgprofil anses vara ogiltig." +msgid "" +"This is the number of days after which the display color profile is " +"considered invalid." +msgstr "" +"Detta Ă€r antalet dagar efter vilken skĂ€rmens fĂ€rgprofil anses vara ogiltig." #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:7 msgid "The duration a printer profile is valid" msgstr "TidslĂ€ngden som en skrivarprofil Ă€r giltig" #: ../data/org.gnome.settings-daemon.plugins.color.gschema.xml.in.in.h:8 -msgid "This is the number of days after which the printer color profile is considered invalid." -msgstr "Detta Ă€r antalet dagar efter vilken skrivarens fĂ€rgprofil anses vara ogiltig." +msgid "" +"This is the number of days after which the printer color profile is " +"considered invalid." +msgstr "" +"Detta Ă€r antalet dagar efter vilken skrivarens fĂ€rgprofil anses vara ogiltig." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:3 msgid "Mount paths to ignore" @@ -310,39 +383,58 @@ #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:4 msgid "Specify a list of mount paths to ignore when they run low on space." -msgstr "Ange en lista över monteringssökvĂ€gar att ignorera nĂ€r de fĂ„r lĂ„gt diskutrymme." +msgstr "" +"Ange en lista över monteringssökvĂ€gar att ignorera nĂ€r de fĂ„r lĂ„gt " +"diskutrymme." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:5 msgid "Free percentage notify threshold" msgstr "TröskelvĂ€rde för notifiering om ledigt utrymme (procent)" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:6 -msgid "Percentage free space threshold for initial warning of low disk space. If the percentage free space drops below this, a warning will be shown." -msgstr "TröskelvĂ€rde för ledigt utrymme (procent) för initial varning om lĂ„gt diskutrymme. Om procentandelen ledigt utrymme sjunker under detta vĂ€rde sĂ„ kommer en varning att visas." +msgid "" +"Percentage free space threshold for initial warning of low disk space. If " +"the percentage free space drops below this, a warning will be shown." +msgstr "" +"TröskelvĂ€rde för ledigt utrymme (procent) för initial varning om lĂ„gt " +"diskutrymme. Om procentandelen ledigt utrymme sjunker under detta vĂ€rde sĂ„ " +"kommer en varning att visas." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:7 msgid "Subsequent free space percentage notify threshold" msgstr "TröskelvĂ€rde för efterföljande varning om lĂ„gt diskutrymme (procent)" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:8 -msgid "Specify the percentage that the free disk space should reduce by before issuing a subsequent warning." -msgstr "Ange procentandelen som det lediga diskutrymme ska minskas med innan en efterföljande varning ska visas." +msgid "" +"Specify the percentage that the free disk space should reduce by before " +"issuing a subsequent warning." +msgstr "" +"Ange procentandelen som det lediga diskutrymme ska minskas med innan en " +"efterföljande varning ska visas." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:9 msgid "Free space notify threshold" msgstr "TröskelvĂ€rde för notifiering om ledigt utrymme" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:10 -msgid "Specify an amount in GB. If the amount of free space is more than this, no warning will be shown." -msgstr "Ange en mĂ€ngd i GB. Om mĂ€ngden ledigt utrymme Ă€r mer Ă€n detta sĂ„ kommer ingen varning att visas." +msgid "" +"Specify an amount in GB. If the amount of free space is more than this, no " +"warning will be shown." +msgstr "" +"Ange en mĂ€ngd i GB. Om mĂ€ngden ledigt utrymme Ă€r mer Ă€n detta sĂ„ kommer " +"ingen varning att visas." #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:11 msgid "Minimum notify period for repeated warnings" msgstr "Minsta notifieringsperioden för upprepade varningar" #: ../data/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml.in.in.h:12 -msgid "Specify a time in minutes. Subsequent warnings for a volume will not appear more often than this period." -msgstr "Ange en tid i minuter. Efterföljande varningar för en volym kommer inte att visas oftare Ă€n denna tidsperiod." +msgid "" +"Specify a time in minutes. Subsequent warnings for a volume will not appear " +"more often than this period." +msgstr "" +"Ange en tid i minuter. Efterföljande varningar för en volym kommer inte att " +"visas oftare Ă€n denna tidsperiod." #: ../data/org.gnome.settings-daemon.plugins.media-keys.gschema.xml.in.in.h:3 msgid "Custom keybindings" @@ -637,96 +729,152 @@ msgstr "Procentandel som anses som lĂ„g" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:6 -msgid "The percentage of the battery when it is considered low. Only valid when use-time-for-policy is false." -msgstr "Procentandelen för batteriet nĂ€r det anses vara lĂ„gt. Endast giltig nĂ€r use-time-for-policy Ă€r false." +msgid "" +"The percentage of the battery when it is considered low. Only valid when use-" +"time-for-policy is false." +msgstr "" +"Procentandelen för batteriet nĂ€r det anses vara lĂ„gt. Endast giltig nĂ€r use-" +"time-for-policy Ă€r false." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:7 msgid "Percentage considered critical" msgstr "Procentandel som anses som kritisk" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:8 -msgid "The percentage of the battery when it is considered critical. Only valid when use-time-for-policy is false." -msgstr "Procentandelen för batteriet nĂ€r det anses vara kritiskt lĂ„gt. Endast giltig nĂ€r use-time-for-policy Ă€r false." +msgid "" +"The percentage of the battery when it is considered critical. Only valid " +"when use-time-for-policy is false." +msgstr "" +"Procentandelen för batteriet nĂ€r det anses vara kritiskt lĂ„gt. Endast giltig " +"nĂ€r use-time-for-policy Ă€r false." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:9 msgid "Percentage action is taken" msgstr "Procentuell Ă„tgĂ€rd tas" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:10 -msgid "The percentage of the battery when the critical action is performed. Only valid when use-time-for-policy is false." -msgstr "Procentandelen för batteriet nĂ€r den kritiska Ă„tgĂ€rden genomförs. Endast giltig nĂ€r use-time-for-policy Ă€r false." +msgid "" +"The percentage of the battery when the critical action is performed. Only " +"valid when use-time-for-policy is false." +msgstr "" +"Procentandelen för batteriet nĂ€r den kritiska Ă„tgĂ€rden genomförs. Endast " +"giltig nĂ€r use-time-for-policy Ă€r false." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:11 msgid "The time remaining when low" msgstr "Tiden som Ă„terstĂ„r nĂ€r lĂ„g" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:12 -msgid "The time remaining in seconds of the battery when it is considered low. Only valid when use-time-for-policy is true." -msgstr "Tiden som Ă„terstĂ„r i sekunder av batteriet nĂ€r det anses som lĂ„gt. Endast giltig nĂ€r use-time-for-policy Ă€r true." +msgid "" +"The time remaining in seconds of the battery when it is considered low. Only " +"valid when use-time-for-policy is true." +msgstr "" +"Tiden som Ă„terstĂ„r i sekunder av batteriet nĂ€r det anses som lĂ„gt. Endast " +"giltig nĂ€r use-time-for-policy Ă€r true." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:13 msgid "The time remaining when critical" msgstr "Tiden som Ă„terstĂ„r nĂ€r kritisk" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:14 -msgid "The time remaining in seconds of the battery when it is considered critical. Only valid when use-time-for-policy is true." -msgstr "Tiden som Ă„terstĂ„r i sekunder av batteriet nĂ€r det anses som kritiskt lĂ„gt. Endast giltig nĂ€r use-time-for-policy Ă€r true." +msgid "" +"The time remaining in seconds of the battery when it is considered critical. " +"Only valid when use-time-for-policy is true." +msgstr "" +"Tiden som Ă„terstĂ„r i sekunder av batteriet nĂ€r det anses som kritiskt lĂ„gt. " +"Endast giltig nĂ€r use-time-for-policy Ă€r true." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:15 msgid "The time remaining when action is taken" msgstr "Tiden som Ă„terstĂ„r nĂ€r Ă„tgĂ€rden genomförs" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:16 -msgid "The time remaining in seconds of the battery when critical action is taken. Only valid when use-time-for-policy is true." -msgstr "Tiden som Ă„terstĂ„r i sekunder av batteriet nĂ€r kritisk Ă„tgĂ€rd genomförs. Endast giltig nĂ€r use-time-for-policy Ă€r true." +msgid "" +"The time remaining in seconds of the battery when critical action is taken. " +"Only valid when use-time-for-policy is true." +msgstr "" +"Tiden som Ă„terstĂ„r i sekunder av batteriet nĂ€r kritisk Ă„tgĂ€rd genomförs. " +"Endast giltig nĂ€r use-time-for-policy Ă€r true." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:17 msgid "Whether to use time-based notifications" msgstr "Huruvida tidsbaserade notifieringar ska anvĂ€ndas" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:18 -msgid "If time based notifications should be used. If set to false, then the percentage change is used instead, which may fix a broken ACPI BIOS." -msgstr "Om tidsbaserade notifieringar ska anvĂ€ndas. Om instĂ€lld till false sĂ„ kommer procentuell Ă€ndring att anvĂ€ndas istĂ€llet, vilket kan rĂ€tta till ett trasigt ACPI BIOS." +msgid "" +"If time based notifications should be used. If set to false, then the " +"percentage change is used instead, which may fix a broken ACPI BIOS." +msgstr "" +"Om tidsbaserade notifieringar ska anvĂ€ndas. Om instĂ€lld till false sĂ„ kommer " +"procentuell Ă€ndring att anvĂ€ndas istĂ€llet, vilket kan rĂ€tta till ett trasigt " +"ACPI BIOS." #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:19 msgid "If we should show the recalled battery warning for a broken battery" -msgstr "Om vi ska visa en varning för Ă„terkallade batteri för ett trasigt batteri" +msgstr "" +"Om vi ska visa en varning för Ă„terkallade batteri för ett trasigt batteri" #: ../data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in.h:20 -msgid "If we should show the recalled battery warning for a broken battery. Set this to false only if you know your battery is okay." -msgstr "Om vi ska visa en varning för Ă„terkallade batteri för ett trasigt batteri. StĂ€ll in denna till false endast om du vet att batteriet Ă€r bra." +msgid "" +"If we should show the recalled battery warning for a broken battery. Set " +"this to false only if you know your battery is okay." +msgstr "" +"Om vi ska visa en varning för Ă„terkallade batteri för ett trasigt batteri. " +"StĂ€ll in denna till false endast om du vet att batteriet Ă€r bra." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:5 msgid "The install root to use when adding and removing packages" msgstr "Installationsroten att anvĂ€nda nĂ€r paket lĂ€ggs till och tas bort" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:6 -msgid "The install root to use when processing packages, which is changed when using LTSP or when testing." -msgstr "Installationsroten att anvĂ€nda nĂ€r paket behandlas, vilken Ă€ndras nĂ€r LTSP anvĂ€nds eller vid tester." +msgid "" +"The install root to use when processing packages, which is changed when " +"using LTSP or when testing." +msgstr "" +"Installationsroten att anvĂ€nda nĂ€r paket behandlas, vilken Ă€ndras nĂ€r LTSP " +"anvĂ€nds eller vid tester." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:7 msgid "Use mobile broadband connections" msgstr "AnvĂ€nd mobila bredbandsanslutningar" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:8 -msgid "Use mobile broadband connections such as GSM and CDMA to check for updates." -msgstr "AnvĂ€nd mobila bredbandsanslutningar sĂ„som GSM och CDMA för att leta efter uppdateringar." +msgid "" +"Use mobile broadband connections such as GSM and CDMA to check for updates." +msgstr "" +"AnvĂ€nd mobila bredbandsanslutningar sĂ„som GSM och CDMA för att leta efter " +"uppdateringar." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:9 msgid "Use WiFi connections" msgstr "AnvĂ€nd trĂ„dlösa anslutningar" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:10 -msgid "Use WiFi (wireless LAN) connections to check for updates. It may be faster to download packages when on a wired connection, and the VPN or proxy required may also only be available on wired connections." -msgstr "AnvĂ€nd WiFi-anslutningar (trĂ„dlöst nĂ€tverk) för att leta efter uppdateringar. Det kan vara snabbare att hĂ€mta paket nĂ€r ansluten till ett trĂ„dbundet nĂ€tverk, samt VPN eller proxyserver krĂ€vs kanske bara finns tillgĂ€ngligt pĂ„ trĂ„dbundna nĂ€tverk." +msgid "" +"Use WiFi (wireless LAN) connections to check for updates. It may be faster " +"to download packages when on a wired connection, and the VPN or proxy " +"required may also only be available on wired connections." +msgstr "" +"AnvĂ€nd WiFi-anslutningar (trĂ„dlöst nĂ€tverk) för att leta efter " +"uppdateringar. Det kan vara snabbare att hĂ€mta paket nĂ€r ansluten till ett " +"trĂ„dbundet nĂ€tverk, samt VPN eller proxyserver krĂ€vs kanske bara finns " +"tillgĂ€ngligt pĂ„ trĂ„dbundna nĂ€tverk." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:11 msgid "Automatically download updates in the background without confirmation" msgstr "HĂ€mta automatiskt uppdateringar i bakgrunden utan bekrĂ€ftelse" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:12 -msgid "Automatically download updates in the background without confirmation. Updates will be auto-downloaded when using wired network connnections, and also WiFi if 'connection-use-wifi' is enabled and mobile broadband if 'connection-use-mobile' is enabled." -msgstr "HĂ€mta automatiskt uppdateringar i bakgrunden utan bekrĂ€ftelse. Uppdateringar kommer att hĂ€mtas automatiskt nĂ€r ett trĂ„dat nĂ€tverk anvĂ€nds men Ă€ven trĂ„dlöst nĂ€tverk om \"connection-use-wifi\" Ă€r aktiverat samt mobilt bredband om \"connection-use-mobile\" Ă€r aktiverat." +msgid "" +"Automatically download updates in the background without confirmation. " +"Updates will be auto-downloaded when using wired network connnections, and " +"also WiFi if 'connection-use-wifi' is enabled and mobile broadband if " +"'connection-use-mobile' is enabled." +msgstr "" +"HĂ€mta automatiskt uppdateringar i bakgrunden utan bekrĂ€ftelse. Uppdateringar " +"kommer att hĂ€mtas automatiskt nĂ€r ett trĂ„dat nĂ€tverk anvĂ€nds men Ă€ven " +"trĂ„dlöst nĂ€tverk om \"connection-use-wifi\" Ă€r aktiverat samt mobilt " +"bredband om \"connection-use-mobile\" Ă€r aktiverat." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:13 msgid "Automatically install these types of updates" @@ -742,31 +890,54 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:16 msgid "Get the update list when the session starts, even if not scheduled to." -msgstr "FĂ„ uppdateringslistan nĂ€r sessionen startar, Ă€ven om det inte schemalagts." +msgstr "" +"FĂ„ uppdateringslistan nĂ€r sessionen startar, Ă€ven om det inte schemalagts." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:17 msgid "How often to check for updates" msgstr "Hur ofta uppdateringar ska letas efter" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:18 -msgid "How often to check for updates. Value is in seconds. This is a maximum amount of time that can pass between a security update being published, and the update being automatically installed or the user notified." -msgstr "Hur ofta uppdateringar ska letas efter. VĂ€rdet Ă€r i sekunder. Detta Ă€r en maximal mĂ€ngd tid som kan passera mellan en sĂ€kerhetsuppdateringar som publiceras och uppdateringen blir installerad automatiskt eller anvĂ€ndaren notifierad." +msgid "" +"How often to check for updates. Value is in seconds. This is a maximum " +"amount of time that can pass between a security update being published, and " +"the update being automatically installed or the user notified." +msgstr "" +"Hur ofta uppdateringar ska letas efter. VĂ€rdet Ă€r i sekunder. Detta Ă€r en " +"maximal mĂ€ngd tid som kan passera mellan en sĂ€kerhetsuppdateringar som " +"publiceras och uppdateringen blir installerad automatiskt eller anvĂ€ndaren " +"notifierad." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:19 msgid "How often to notify the user that non-critical updates are available" -msgstr "Hur ofta anvĂ€ndaren ska notifieras att icke-kritiska uppdateringar finns tillgĂ€ngliga" +msgstr "" +"Hur ofta anvĂ€ndaren ska notifieras att icke-kritiska uppdateringar finns " +"tillgĂ€ngliga" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:20 -msgid "How often to tell the user there are non-critical updates. Value is in seconds. Security update notifications are always shown after the check for updates, but non-critical notifications should be shown a lot less frequently." -msgstr "Hur ofta som anvĂ€ndaren ska informeras att det finns icke-kritiska uppdateringar. VĂ€rdet Ă€r i sekunder. Notifieringar om sĂ€kerhetsuppdateringar visas alltid efter uppdateringskontrollen, men icke-kritiska notifieringar bör visas mycket mindre frekvent." +msgid "" +"How often to tell the user there are non-critical updates. Value is in " +"seconds. Security update notifications are always shown after the check for " +"updates, but non-critical notifications should be shown a lot less " +"frequently." +msgstr "" +"Hur ofta som anvĂ€ndaren ska informeras att det finns icke-kritiska " +"uppdateringar. VĂ€rdet Ă€r i sekunder. Notifieringar om sĂ€kerhetsuppdateringar " +"visas alltid efter uppdateringskontrollen, men icke-kritiska notifieringar " +"bör visas mycket mindre frekvent." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:21 msgid "The last time we told the user about non-critical notifications" -msgstr "Senaste gĂ„ngen vi berĂ€ttade för anvĂ€ndaren om icke-kritiska notifieringar" +msgstr "" +"Senaste gĂ„ngen vi berĂ€ttade för anvĂ€ndaren om icke-kritiska notifieringar" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:22 -msgid "The last time we notified the user about non-critical updates. Value is in seconds since the epoch, or zero for never." -msgstr "Senaste gĂ„ngen vi berĂ€ttade för anvĂ€ndaren om icke-kritiska notifieringar. VĂ€rdet Ă€r i sekunder sedan hĂ€ndelsen, eller noll för aldrig." +msgid "" +"The last time we notified the user about non-critical updates. Value is in " +"seconds since the epoch, or zero for never." +msgstr "" +"Senaste gĂ„ngen vi berĂ€ttade för anvĂ€ndaren om icke-kritiska notifieringar. " +"VĂ€rdet Ă€r i sekunder sedan hĂ€ndelsen, eller noll för aldrig." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:23 msgid "How often to check for distribution upgrades" @@ -774,7 +945,9 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:24 msgid "How often to check for distribution upgrades. Value is in seconds." -msgstr "Hur ofta som distributionsuppgraderingar ska letas efter. VĂ€rdet Ă€r i sekunder." +msgstr "" +"Hur ofta som distributionsuppgraderingar ska letas efter. VĂ€rdet Ă€r i " +"sekunder." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:25 msgid "How often to refresh the package cache" @@ -785,12 +958,19 @@ msgstr "Hur ofta paketcachen ska uppdateras. VĂ€rdet Ă€r i sekunder." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:27 -msgid "The number of seconds at session startup to wait before checking for updates" -msgstr "Antalet sekunder att vĂ€nta vid sessionens uppstart innan uppdateringar ska letas efter" +msgid "" +"The number of seconds at session startup to wait before checking for updates" +msgstr "" +"Antalet sekunder att vĂ€nta vid sessionens uppstart innan uppdateringar ska " +"letas efter" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:28 -msgid "The number of seconds at session startup to wait before checking for updates. Value is in seconds." -msgstr "Antalet sekunder att vĂ€nta vid sessionens uppstart innan uppdateringar ska letas efter. VĂ€rdet Ă€r i sekunder." +msgid "" +"The number of seconds at session startup to wait before checking for " +"updates. Value is in seconds." +msgstr "" +"Antalet sekunder att vĂ€nta vid sessionens uppstart innan uppdateringar ska " +"letas efter. VĂ€rdet Ă€r i sekunder." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:29 msgid "Install updates automatically when running on battery power" @@ -802,35 +982,53 @@ #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:31 msgid "Notify the user when distribution upgrades are available" -msgstr "Notifiera anvĂ€ndaren nĂ€r distributionsuppgraderingar finns tillgĂ€ngliga" +msgstr "" +"Notifiera anvĂ€ndaren nĂ€r distributionsuppgraderingar finns tillgĂ€ngliga" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:32 msgid "Notify the user when distribution upgrades are available." -msgstr "Notifiera anvĂ€ndaren nĂ€r distributionsuppgraderingar finns tillgĂ€ngliga." +msgstr "" +"Notifiera anvĂ€ndaren nĂ€r distributionsuppgraderingar finns tillgĂ€ngliga." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:33 msgid "Notify the user for completed updates" msgstr "Notifiera anvĂ€ndaren om fĂ€rdigstĂ€llda uppdateringar" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:34 -msgid "Notify the user for completed updates. This may be a useful notification for some users as installing updates prevents shutdown." -msgstr "Notifiera anvĂ€ndaren om fĂ€rdigstĂ€llda uppdateringar. Detta kan vara en anvĂ€ndbar notifiering för vissa anvĂ€ndare eftersom installation av uppdateringar förhindrar avstĂ€ngning." +msgid "" +"Notify the user for completed updates. This may be a useful notification for " +"some users as installing updates prevents shutdown." +msgstr "" +"Notifiera anvĂ€ndaren om fĂ€rdigstĂ€llda uppdateringar. Detta kan vara en " +"anvĂ€ndbar notifiering för vissa anvĂ€ndare eftersom installation av " +"uppdateringar förhindrar avstĂ€ngning." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:35 msgid "Notify the user for completed updates where the user needs to restart" -msgstr "Notifiera anvĂ€ndaren om fĂ€rdigstĂ€llda uppdateringar dĂ€r anvĂ€ndaren behöver starta om" +msgstr "" +"Notifiera anvĂ€ndaren om fĂ€rdigstĂ€llda uppdateringar dĂ€r anvĂ€ndaren behöver " +"starta om" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:36 msgid "Notify the user for completed updates where the user needs to restart." -msgstr "Notifiera anvĂ€ndaren om fĂ€rdigstĂ€llda uppdateringar dĂ€r anvĂ€ndaren behöver starta om." +msgstr "" +"Notifiera anvĂ€ndaren om fĂ€rdigstĂ€llda uppdateringar dĂ€r anvĂ€ndaren behöver " +"starta om." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:37 -msgid "Notify the user when the automatic update was not started on battery power" -msgstr "Notifiera anvĂ€ndaren nĂ€r automatiska uppdateringen inte startades nĂ€r datorn körs pĂ„ batteriström" +msgid "" +"Notify the user when the automatic update was not started on battery power" +msgstr "" +"Notifiera anvĂ€ndaren nĂ€r automatiska uppdateringen inte startades nĂ€r datorn " +"körs pĂ„ batteriström" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:38 -msgid "Notify the user when the update was not automatically started because the machine is running on battery power." -msgstr "Notifiera anvĂ€ndaren nĂ€r uppdateringen inte startades automatiskt dĂ€rför att datorn körs pĂ„ batteriström." +msgid "" +"Notify the user when the update was not automatically started because the " +"machine is running on battery power." +msgstr "" +"Notifiera anvĂ€ndaren nĂ€r uppdateringen inte startades automatiskt dĂ€rför att " +"datorn körs pĂ„ batteriström." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:39 msgid "Notify the user when the update was started" @@ -845,88 +1043,152 @@ msgstr "FrĂ„ga anvĂ€ndaren om ytterligare fast programvara ska installeras" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:42 -msgid "Ask the user if additional firmware should be installed if it is available." -msgstr "FrĂ„ga anvĂ€ndaren om ytterligare fast programvara ska installeras om den finns tillgĂ€nglig." +msgid "" +"Ask the user if additional firmware should be installed if it is available." +msgstr "" +"FrĂ„ga anvĂ€ndaren om ytterligare fast programvara ska installeras om den " +"finns tillgĂ€nglig." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:43 msgid "Firmware files that should not be searched for" msgstr "Fast programvara som inte ska letas efter" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:44 -msgid "Firmware files that should not be searched for, separated by commas. These can include '*' and '?' characters." -msgstr "Fast programvara som inte ska letas efter, separerade med kommatecken. Dessa kan inkludera tecknen \"*\" och \"?\"." +msgid "" +"Firmware files that should not be searched for, separated by commas. These " +"can include '*' and '?' characters." +msgstr "" +"Fast programvara som inte ska letas efter, separerade med kommatecken. Dessa " +"kan inkludera tecknen \"*\" och \"?\"." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:45 msgid "Devices that should be ignored" msgstr "Enheter som ska ignoreras" #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:46 -msgid "Devices that should be ignored, separated by commas. These can include '*' and '?' characters." -msgstr "Enheter som ska ignoreras, separerade med kommatecken. Dessa kan inkludera tecknen \"*\" och \"?\"." +msgid "" +"Devices that should be ignored, separated by commas. These can include '*' " +"and '?' characters." +msgstr "" +"Enheter som ska ignoreras, separerade med kommatecken. Dessa kan inkludera " +"tecknen \"*\" och \"?\"." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:47 msgid "The filenames on removable media that designate it a software source." msgstr "Filnamnen pĂ„ flyttbara media som bestĂ€mmer att det Ă€r en programkĂ€lla." #: ../data/org.gnome.settings-daemon.plugins.updates.gschema.xml.in.in.h:48 -msgid "When removable media is inserted, it is checked to see if it contains any important filenames in the root directory. If the filename matches, then an updates check is performed. This allows post-install disks to be used to update running systems." -msgstr "NĂ€r flyttbara media matas in sĂ„ kontrolleras dessa för att se om de innehĂ„ller viktiga filnamn i rotkatalogen. Om filnamnen matchar sĂ„ genomförs en uppdateringskontroll. Detta gör att efterinstallationsskivor kan anvĂ€ndas för att uppdatera körande system." +msgid "" +"When removable media is inserted, it is checked to see if it contains any " +"important filenames in the root directory. If the filename matches, then an " +"updates check is performed. This allows post-install disks to be used to " +"update running systems." +msgstr "" +"NĂ€r flyttbara media matas in sĂ„ kontrolleras dessa för att se om de " +"innehĂ„ller viktiga filnamn i rotkatalogen. Om filnamnen matchar sĂ„ genomförs " +"en uppdateringskontroll. Detta gör att efterinstallationsskivor kan anvĂ€ndas " +"för att uppdatera körande system." #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:3 msgid "File for default configuration for RandR" msgstr "Fil för standardkonfiguration för RandR" #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:4 -msgid "The XRandR plugin will look for a default configuration in the file specified by this key. This is similar to the ~/.config/monitors.xml that normally gets stored in users' home directories. If a user does not have such a file, or has one that does not match the user's setup of monitors, then the file specified by this key will be used instead." -msgstr "Insticksmodulen XRandR kommer att leta efter en standardkonfiguration i filen som anges av denna nyckel. Detta liknar ~/.config/monitors.xml som vanligtvis lagras i anvĂ€ndarnas hemkataloger. Om en anvĂ€ndare inte har en sĂ„dan fil, eller har en som inte matchar anvĂ€ndarens skĂ€rmkonfiguration, sĂ„ kommer filen som anges av denna nyckel att anvĂ€ndas istĂ€llet." +msgid "" +"The XRandR plugin will look for a default configuration in the file " +"specified by this key. This is similar to the ~/.config/monitors.xml that " +"normally gets stored in users' home directories. If a user does not have " +"such a file, or has one that does not match the user's setup of monitors, " +"then the file specified by this key will be used instead." +msgstr "" +"Insticksmodulen XRandR kommer att leta efter en standardkonfiguration i " +"filen som anges av denna nyckel. Detta liknar ~/.config/monitors.xml som " +"vanligtvis lagras i anvĂ€ndarnas hemkataloger. Om en anvĂ€ndare inte har en " +"sĂ„dan fil, eller har en som inte matchar anvĂ€ndarens skĂ€rmkonfiguration, sĂ„ " +"kommer filen som anges av denna nyckel att anvĂ€ndas istĂ€llet." #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:7 msgid "Whether to turn off specific monitors after boot" msgstr "Huruvida specifika skĂ€rmar ska stĂ€ngas av efter uppstart" #: ../data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in.h:8 -msgid "'clone' will display the same thing on all monitors, 'dock' will switch off the internal monitor, 'do-nothing' will use the default Xorg behaviour (extend the desktop in recent versions)" -msgstr "\"clone\" kommer att visa samma sak pĂ„ alla skĂ€rmar, \"dock\" kommer att stĂ€nga av den interna skĂ€rmen, \"do-nothing\" kommer att anvĂ€nda standardbeteendet för Xorg (utöka skrivbordet i senare versioner)" +msgid "" +"'clone' will display the same thing on all monitors, 'dock' will switch off " +"the internal monitor, 'do-nothing' will use the default Xorg behaviour " +"(extend the desktop in recent versions)" +msgstr "" +"\"clone\" kommer att visa samma sak pĂ„ alla skĂ€rmar, \"dock\" kommer att " +"stĂ€nga av den interna skĂ€rmen, \"do-nothing\" kommer att anvĂ€nda " +"standardbeteendet för Xorg (utöka skrivbordet i senare versioner)" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:3 msgid "Antialiasing" msgstr "KantutjĂ€mning" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:4 -msgid "The type of antialiasing to use when rendering fonts. Possible values are: \"none\" for no antialiasing, \"grayscale\" for standard grayscale antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." -msgstr "Typen av kantutjĂ€mning att anvĂ€nda nĂ€r typsnitt ritas ut. Möjliga vĂ€rden Ă€r: \"none\" för ingen kantutjĂ€mning, \"grayscale\" för standardkantutjĂ€mning med grĂ„skala samt \"rgba\" för underbildpunktsutjĂ€mning (endast LCD-skĂ€rmar)." +msgid "" +"The type of antialiasing to use when rendering fonts. Possible values are: " +"\"none\" for no antialiasing, \"grayscale\" for standard grayscale " +"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)." +msgstr "" +"Typen av kantutjĂ€mning att anvĂ€nda nĂ€r typsnitt ritas ut. Möjliga vĂ€rden Ă€r: " +"\"none\" för ingen kantutjĂ€mning, \"grayscale\" för standardkantutjĂ€mning " +"med grĂ„skala samt \"rgba\" för underbildpunktsutjĂ€mning (endast LCD-skĂ€rmar)." #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:5 msgid "Hinting" msgstr "Hintning" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:6 -msgid "The type of hinting to use when rendering fonts. Possible values are: \"none\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full\" for maximum hinting (may cause distortion of letter forms)." -msgstr "Typen av hintning att anvĂ€nda nĂ€r typsnitt ritas ut. Möjliga vĂ€rden Ă€r: \"none\" för ingen hintning, \"slight\" för grundlĂ€ggande, \"medium\" för medel samt \"full\" för maximal hintning (kan orsaka distortion av bokstavsformer)." +msgid "" +"The type of hinting to use when rendering fonts. Possible values are: \"none" +"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full" +"\" for maximum hinting (may cause distortion of letter forms)." +msgstr "" +"Typen av hintning att anvĂ€nda nĂ€r typsnitt ritas ut. Möjliga vĂ€rden Ă€r: " +"\"none\" för ingen hintning, \"slight\" för grundlĂ€ggande, \"medium\" för " +"medel samt \"full\" för maximal hintning (kan orsaka distortion av " +"bokstavsformer)." #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:9 msgid "RGBA order" msgstr "RGBA-ordning" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:10 -msgid "The order of subpixel elements on an LCD screen; only used when antialiasing is set to \"rgba\". Possible values are: \"rgb\" for red on left (most common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red on bottom." -msgstr "Ordningen för underbildpunktselementen pĂ„ en LCD-skĂ€rm; anvĂ€nds endast nĂ€r kantutjĂ€mning Ă€r instĂ€lld till \"rgba\". Möjliga vĂ€rden Ă€r: \"rgb\" - röd till vĂ€nster (vanligast), \"bgr\" - blĂ„ till vĂ€nster. \"vrgb\" - röd överst. \"vbgr\" - röd nederst." +msgid "" +"The order of subpixel elements on an LCD screen; only used when antialiasing " +"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most " +"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red " +"on bottom." +msgstr "" +"Ordningen för underbildpunktselementen pĂ„ en LCD-skĂ€rm; anvĂ€nds endast nĂ€r " +"kantutjĂ€mning Ă€r instĂ€lld till \"rgba\". Möjliga vĂ€rden Ă€r: \"rgb\" - röd " +"till vĂ€nster (vanligast), \"bgr\" - blĂ„ till vĂ€nster. \"vrgb\" - röd överst. " +"\"vbgr\" - röd nederst." #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:11 msgid "List of explicitly disabled GTK+ modules" msgstr "Lista över uttryckligen inaktiverade GTK+-moduler" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:12 -msgid "A list of strings representing the GTK+ modules that will not be loaded, even if enabled by default in their configuration." -msgstr "En lista över strĂ€ngar som representerar GTK+-moduler som inte ska lĂ€sas in, Ă€ven om aktiverade som standard i deras konfiguration." +msgid "" +"A list of strings representing the GTK+ modules that will not be loaded, " +"even if enabled by default in their configuration." +msgstr "" +"En lista över strĂ€ngar som representerar GTK+-moduler som inte ska lĂ€sas in, " +"Ă€ven om aktiverade som standard i deras konfiguration." #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:13 msgid "List of explicitly enabled GTK+ modules" msgstr "Lista över uttryckligen aktiverade GTK+-moduler" #: ../data/org.gnome.settings-daemon.plugins.xsettings.gschema.xml.in.in.h:14 -msgid "A list of strings representing the GTK+ modules that will be loaded, usually in addition to conditional and forcibly disabled ones." -msgstr "En lista över strĂ€ngar som representerar GTK+-moduler som ska lĂ€sas in, oftast i tillĂ€gg till villkor och de som tvingats som inaktiverade." +msgid "" +"A list of strings representing the GTK+ modules that will be loaded, usually " +"in addition to conditional and forcibly disabled ones." +msgstr "" +"En lista över strĂ€ngar som representerar GTK+-moduler som ska lĂ€sas in, " +"oftast i tillĂ€gg till villkor och de som tvingats som inaktiverade." #: ../gnome-settings-daemon/main.c:54 msgid "Enable debugging code" @@ -961,12 +1223,16 @@ #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:510 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:574 -msgid "You just held down the Shift key for 8 seconds. This is the shortcut for the Slow Keys feature, which affects the way your keyboard works." -msgstr "Du höll precis ned skifttangenten under 8 sekunder. Detta Ă€r genvĂ€gen för funktionen tröga tangenter, som pĂ„verkar hur ditt tangentbord fungerar." +msgid "" +"You just held down the Shift key for 8 seconds. This is the shortcut for " +"the Slow Keys feature, which affects the way your keyboard works." +msgstr "" +"Du höll precis ned skifttangenten under 8 sekunder. Detta Ă€r genvĂ€gen för " +"funktionen tröga tangenter, som pĂ„verkar hur ditt tangentbord fungerar." #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:529 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:665 -#: ../plugins/mouse/gsd-mouse-manager.c:837 +#: ../plugins/mouse/gsd-mouse-manager.c:867 msgid "Universal Access" msgstr "HjĂ€lpmedel" @@ -1022,13 +1288,23 @@ #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:644 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:710 -msgid "You just pressed the Shift key 5 times in a row. This is the shortcut for the Sticky Keys feature, which affects the way your keyboard works." -msgstr "Du tryckte precis ned skifttangenten 5 gĂ„nger i följd. Detta Ă€r genvĂ€gen för funktionen klistriga tangenter, som pĂ„verkar hur ditt tangentbord fungerar." +msgid "" +"You just pressed the Shift key 5 times in a row. This is the shortcut for " +"the Sticky Keys feature, which affects the way your keyboard works." +msgstr "" +"Du tryckte precis ned skifttangenten 5 gĂ„nger i följd. Detta Ă€r genvĂ€gen för " +"funktionen klistriga tangenter, som pĂ„verkar hur ditt tangentbord fungerar." #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:646 #: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:712 -msgid "You just pressed two keys at once, or pressed the Shift key 5 times in a row. This turns off the Sticky Keys feature, which affects the way your keyboard works." -msgstr "Du tryckte precis ned tvĂ„ tangenter samtidigt, eller tryckte ned skifttangenten 5 gĂ„nger i följd. Detta stĂ€nger av funktionen tröga tangenter, som pĂ„verkar hur ditt tangentbord fungerar." +msgid "" +"You just pressed two keys at once, or pressed the Shift key 5 times in a " +"row. This turns off the Sticky Keys feature, which affects the way your " +"keyboard works." +msgstr "" +"Du tryckte precis ned tvĂ„ tangenter samtidigt, eller tryckte ned " +"skifttangenten 5 gĂ„nger i följd. Detta stĂ€nger av funktionen tröga " +"tangenter, som pĂ„verkar hur ditt tangentbord fungerar." #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:412 #: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.ui.h:1 @@ -1168,8 +1444,12 @@ msgstr "Du har precis matat in en digital ljudspelare." #: ../plugins/automount/gsd-autorun.c:728 -msgid "You have just inserted a medium with software intended to be automatically started." -msgstr "Du har precis matat in ett media med programvara tĂ€nkt att startas automatiskt." +msgid "" +"You have just inserted a medium with software intended to be automatically " +"started." +msgstr "" +"Du har precis matat in ett media med programvara tĂ€nkt att startas " +"automatiskt." #. fallback to generic greeting #: ../plugins/automount/gsd-autorun.c:731 @@ -1182,8 +1462,12 @@ #: ../plugins/automount/gsd-autorun.c:742 #, c-format -msgid "Select how to open \"%s\" and whether to perform this action in the future for other media of type \"%s\"." -msgstr "VĂ€lj hur \"%s\" ska öppnas och hurvida denna Ă„tgĂ€rd ska genomföras i framtiden för annat media av typen \"%s\"." +msgid "" +"Select how to open \"%s\" and whether to perform this action in the future " +"for other media of type \"%s\"." +msgstr "" +"VĂ€lj hur \"%s\" ska öppnas och hurvida denna Ă„tgĂ€rd ska genomföras i " +"framtiden för annat media av typen \"%s\"." #: ../plugins/automount/gsd-autorun.c:769 msgid "_Always perform this action" @@ -1214,7 +1498,7 @@ msgstr "Insticksmodul för urklipp" #: ../plugins/color/color.gnome-settings-plugin.in.h:1 -#: ../plugins/color/gsd-color-manager.c:1745 +#: ../plugins/color/gsd-color-manager.c:1757 msgid "Color" msgstr "FĂ€rg" @@ -1222,40 +1506,40 @@ msgid "Color plugin" msgstr "Insticksmodul för fĂ€rg" -#: ../plugins/color/gsd-color-manager.c:1750 +#: ../plugins/color/gsd-color-manager.c:1762 msgid "Recalibrate now" msgstr "Kalibrera om nu" #. TRANSLATORS: this is when the device has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1792 +#: ../plugins/color/gsd-color-manager.c:1804 msgid "Recalibration required" msgstr "Omkalibrering krĂ€vs" #. TRANSLATORS: this is when the display has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1804 +#: ../plugins/color/gsd-color-manager.c:1816 #, c-format msgid "The display '%s' should be recalibrated soon." msgstr "SkĂ€rmen \"%s\" bör kalibreras om snart." #. TRANSLATORS: this is when the printer has not been recalibrated in a while -#: ../plugins/color/gsd-color-manager.c:1813 +#: ../plugins/color/gsd-color-manager.c:1825 #, c-format msgid "The printer '%s' should be recalibrated soon." msgstr "Skrivaren \"%s\" bör kalibreras om snart." #. TRANSLATORS: this is the application name -#: ../plugins/color/gsd-color-manager.c:2139 -#: ../plugins/color/gsd-color-manager.c:2155 +#: ../plugins/color/gsd-color-manager.c:2149 +#: ../plugins/color/gsd-color-manager.c:2165 msgid "GNOME Settings Daemon Color Plugin" msgstr "FĂ€rginsticksmodul för GNOME-instĂ€llningsdemon" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2141 +#: ../plugins/color/gsd-color-manager.c:2151 msgid "Color calibration device added" msgstr "Enhet för fĂ€rgkalibrering lades till" #. TRANSLATORS: this is a sound description -#: ../plugins/color/gsd-color-manager.c:2157 +#: ../plugins/color/gsd-color-manager.c:2167 msgid "Color calibration device removed" msgstr "Enhet för fĂ€rgkalibrering togs bort" @@ -1274,8 +1558,12 @@ #: ../plugins/housekeeping/gsd-disk-space.c:334 #, c-format -msgid "The volume \"%s\" has only %s disk space remaining. You may free up some space by emptying the trash." -msgstr "Volymen \"%s\" har endast %s diskutrymme ledigt. Du kan frigöra utrymme genom att tömma papperskorgen." +msgid "" +"The volume \"%s\" has only %s disk space remaining. You may free up some " +"space by emptying the trash." +msgstr "" +"Volymen \"%s\" har endast %s diskutrymme ledigt. Du kan frigöra utrymme " +"genom att tömma papperskorgen." #: ../plugins/housekeeping/gsd-disk-space.c:338 #: ../plugins/housekeeping/gsd-ldsm-dialog.c:81 @@ -1291,8 +1579,12 @@ #: ../plugins/housekeeping/gsd-disk-space.c:345 #, c-format -msgid "This computer has only %s disk space remaining. You may free up some space by emptying the trash." -msgstr "Denna dator har endast %s diskutrymme ledigt. Du kan frigöra utrymme genom att tömma papperskorgen." +msgid "" +"This computer has only %s disk space remaining. You may free up some space " +"by emptying the trash." +msgstr "" +"Denna dator har endast %s diskutrymme ledigt. Du kan frigöra utrymme genom " +"att tömma papperskorgen." #: ../plugins/housekeeping/gsd-disk-space.c:348 #: ../plugins/housekeeping/gsd-ldsm-dialog.c:84 @@ -1327,20 +1619,36 @@ msgstr "Visa inte nĂ„gra varningar igen" #: ../plugins/housekeeping/gsd-ldsm-dialog.c:100 -msgid "You can free up disk space by emptying the Trash, removing unused programs or files, or moving files to another disk or partition." -msgstr "Du kan frigöra diskutrymme genom att tömma papperskorgen, ta bort oanvĂ€nda program eller filer, eller flytta filer till en annan disk eller partition." +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to another disk or partition." +msgstr "" +"Du kan frigöra diskutrymme genom att tömma papperskorgen, ta bort oanvĂ€nda " +"program eller filer, eller flytta filer till en annan disk eller partition." #: ../plugins/housekeeping/gsd-ldsm-dialog.c:103 -msgid "You can free up disk space by removing unused programs or files, or by moving files to another disk or partition." -msgstr "Du kan frigöra diskutrymme genom att ta bort oanvĂ€nda program eller filer, eller flytta filer till en annan disk eller partition." +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to another disk or partition." +msgstr "" +"Du kan frigöra diskutrymme genom att ta bort oanvĂ€nda program eller filer, " +"eller flytta filer till en annan disk eller partition." #: ../plugins/housekeeping/gsd-ldsm-dialog.c:108 -msgid "You can free up disk space by emptying the Trash, removing unused programs or files, or moving files to an external disk." -msgstr "Du kan frigöra diskutrymme genom att tömma papperskorgen, ta bort oanvĂ€nda program eller filer, eller flytta filer till en extern disk." +msgid "" +"You can free up disk space by emptying the Trash, removing unused programs " +"or files, or moving files to an external disk." +msgstr "" +"Du kan frigöra diskutrymme genom att tömma papperskorgen, ta bort oanvĂ€nda " +"program eller filer, eller flytta filer till en extern disk." #: ../plugins/housekeeping/gsd-ldsm-dialog.c:111 -msgid "You can free up disk space by removing unused programs or files, or by moving files to an external disk." -msgstr "Du kan frigöra diskutrymme genom att ta bort oanvĂ€nda program eller filer, eller flytta filer till en extern disk." +msgid "" +"You can free up disk space by removing unused programs or files, or by " +"moving files to an external disk." +msgstr "" +"Du kan frigöra diskutrymme genom att ta bort oanvĂ€nda program eller filer, " +"eller flytta filer till en extern disk." #: ../plugins/housekeeping/gsd-ldsm-dialog.c:445 msgid "Examine
" @@ -1383,8 +1691,7 @@ #. TRANSLATORS: wireless keyboard with internal battery #: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1 -#: ../plugins/power/gpm-common.c:585 -#: ../plugins/power/gpm-common.c:872 +#: ../plugins/power/gpm-common.c:585 ../plugins/power/gpm-common.c:872 msgid "Keyboard" msgid_plural "Keyboards" msgstr[0] "Tangentbord" @@ -1430,18 +1737,20 @@ msgid "Media keys plugin" msgstr "Insticksmodul för mediatangenter" -#: ../plugins/mouse/gsd-mouse-manager.c:833 +#: ../plugins/mouse/gsd-mouse-manager.c:863 msgid "Could not enable mouse accessibility features" msgstr "Kunde inte aktivera mushjĂ€lpmedelsfunktioner" -#: ../plugins/mouse/gsd-mouse-manager.c:835 -msgid "Mouse accessibility requires Mousetweaks to be installed on your system." -msgstr "MushjĂ€lpmedel krĂ€ver att Mousetweaks (Musjusteringar) Ă€r installerat pĂ„ ditt system." +#: ../plugins/mouse/gsd-mouse-manager.c:865 +msgid "" +"Mouse accessibility requires Mousetweaks to be installed on your system." +msgstr "" +"MushjĂ€lpmedel krĂ€ver att Mousetweaks (Musjusteringar) Ă€r installerat pĂ„ ditt " +"system." #. TRANSLATORS: wireless mice with internal batteries #: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1 -#: ../plugins/power/gpm-common.c:581 -#: ../plugins/power/gpm-common.c:848 +#: ../plugins/power/gpm-common.c:581 ../plugins/power/gpm-common.c:848 msgid "Mouse" msgid_plural "Mice" msgstr[0] "Mus" @@ -1509,8 +1818,7 @@ #. TRANSLATORS: device is charging, and we have a time to full and a percentage. #. * The first parameter is the device type, e.g. "Laptop battery" and #. * the second is the time, e.g. "7 hours 6 minutes" -#: ../plugins/power/gpm-common.c:349 -#: ../plugins/power/gpm-common.c:366 +#: ../plugins/power/gpm-common.c:349 ../plugins/power/gpm-common.c:366 #, c-format msgid "%s %s until charged" msgstr "%s %s tills uppladdat" @@ -1531,10 +1839,8 @@ #. TRANSLATORS: device is charged #. TRANSLATORS: device is charging #. TRANSLATORS: device is discharging -#: ../plugins/power/gpm-common.c:451 -#: ../plugins/power/gpm-common.c:454 -#: ../plugins/power/gpm-common.c:457 -#: ../plugins/power/gpm-common.c:460 +#: ../plugins/power/gpm-common.c:451 ../plugins/power/gpm-common.c:454 +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:460 msgid "Status:" msgstr "Status:" @@ -1543,20 +1849,17 @@ msgstr "Saknas" #. TRANSLATORS: battery state -#: ../plugins/power/gpm-common.c:454 -#: ../plugins/power/gpm-common.c:723 +#: ../plugins/power/gpm-common.c:454 ../plugins/power/gpm-common.c:723 msgid "Charged" msgstr "Uppladdat" #. TRANSLATORS: battery state -#: ../plugins/power/gpm-common.c:457 -#: ../plugins/power/gpm-common.c:711 +#: ../plugins/power/gpm-common.c:457 ../plugins/power/gpm-common.c:711 msgid "Charging" msgstr "Laddar upp" #. TRANSLATORS: battery state -#: ../plugins/power/gpm-common.c:460 -#: ../plugins/power/gpm-common.c:715 +#: ../plugins/power/gpm-common.c:460 ../plugins/power/gpm-common.c:715 msgid "Discharging" msgstr "Laddar ur" @@ -1616,8 +1919,7 @@ msgid "Capacity:" msgstr "Kapacitet:" -#: ../plugins/power/gpm-common.c:516 -#: ../plugins/power/gpm-common.c:541 +#: ../plugins/power/gpm-common.c:516 ../plugins/power/gpm-common.c:541 msgid "Current charge:" msgstr "Aktuell laddning:" @@ -1625,8 +1927,7 @@ msgid "Last full charge:" msgstr "Senaste fullstĂ€ndiga laddning:" -#: ../plugins/power/gpm-common.c:528 -#: ../plugins/power/gpm-common.c:546 +#: ../plugins/power/gpm-common.c:528 ../plugins/power/gpm-common.c:546 msgid "Design charge:" msgstr "Angiven kapacitet:" @@ -1635,72 +1936,63 @@ msgstr "Laddningseffekt:" #. TRANSLATORS: system power cord -#: ../plugins/power/gpm-common.c:565 -#: ../plugins/power/gpm-common.c:757 +#: ../plugins/power/gpm-common.c:565 ../plugins/power/gpm-common.c:757 msgid "AC adapter" msgid_plural "AC adapters" msgstr[0] "Strömadapter" msgstr[1] "Strömadaptrar" #. TRANSLATORS: laptop primary battery -#: ../plugins/power/gpm-common.c:569 -#: ../plugins/power/gpm-common.c:793 +#: ../plugins/power/gpm-common.c:569 ../plugins/power/gpm-common.c:793 msgid "Laptop battery" msgid_plural "Laptop batteries" msgstr[0] "Batteri i bĂ€rbar dator" msgstr[1] "Batterier i bĂ€rbar dator" #. TRANSLATORS: battery-backed AC power source -#: ../plugins/power/gpm-common.c:573 -#: ../plugins/power/gpm-common.c:817 +#: ../plugins/power/gpm-common.c:573 ../plugins/power/gpm-common.c:817 msgid "UPS" msgid_plural "UPSs" msgstr[0] "UPS-enhet" msgstr[1] "UPS-enheter" #. TRANSLATORS: a monitor is a device to measure voltage and current -#: ../plugins/power/gpm-common.c:577 -#: ../plugins/power/gpm-common.c:824 +#: ../plugins/power/gpm-common.c:577 ../plugins/power/gpm-common.c:824 msgid "Monitor" msgid_plural "Monitors" msgstr[0] "SkĂ€rm" msgstr[1] "SkĂ€rmar" #. TRANSLATORS: portable device -#: ../plugins/power/gpm-common.c:589 -#: ../plugins/power/gpm-common.c:896 +#: ../plugins/power/gpm-common.c:589 ../plugins/power/gpm-common.c:896 msgid "PDA" msgid_plural "PDAs" msgstr[0] "Handdator" msgstr[1] "Handdatorer" #. TRANSLATORS: cell phone (mobile...) -#: ../plugins/power/gpm-common.c:593 -#: ../plugins/power/gpm-common.c:920 +#: ../plugins/power/gpm-common.c:593 ../plugins/power/gpm-common.c:920 msgid "Cell phone" msgid_plural "Cell phones" msgstr[0] "Mobiltelefon" msgstr[1] "Mobiltelefoner" #. TRANSLATORS: media player, mp3 etc -#: ../plugins/power/gpm-common.c:598 -#: ../plugins/power/gpm-common.c:945 +#: ../plugins/power/gpm-common.c:598 ../plugins/power/gpm-common.c:945 msgid "Media player" msgid_plural "Media players" msgstr[0] "Mediaspelare" msgstr[1] "Mediaspelare" #. TRANSLATORS: tablet device -#: ../plugins/power/gpm-common.c:602 -#: ../plugins/power/gpm-common.c:969 +#: ../plugins/power/gpm-common.c:602 ../plugins/power/gpm-common.c:969 msgid "Tablet" msgid_plural "Tablets" msgstr[0] "Pekdator" msgstr[1] "Pekdatorer" #. TRANSLATORS: tablet device -#: ../plugins/power/gpm-common.c:606 -#: ../plugins/power/gpm-common.c:993 +#: ../plugins/power/gpm-common.c:606 ../plugins/power/gpm-common.c:993 msgid "Computer" msgid_plural "Computers" msgstr[0] "Dator" @@ -1951,321 +2243,388 @@ msgid "Computer is charged" msgstr "Datorn Ă€r uppladdad" -#. TRANSLATORS: the battery may be recalled by it's vendor -#: ../plugins/power/gsd-power-manager.c:985 +#. TRANSLATORS: the battery may be recalled by its vendor +#: ../plugins/power/gsd-power-manager.c:991 msgid "Battery may be recalled" msgstr "Batteriet kan ha blivit Ă„terkallat" -#: ../plugins/power/gsd-power-manager.c:988 +#: ../plugins/power/gsd-power-manager.c:994 #, c-format -msgid "A battery in your computer may have been recalled by %s and you may be at risk." -msgstr "Ett batteri i din dator kan ha Ă„terkallats av %s och du kan befinna dig i riskzonen." +msgid "" +"A battery in your computer may have been recalled by %s and you may be at " +"risk." +msgstr "" +"Ett batteri i din dator kan ha Ă„terkallats av %s och du kan befinna dig i " +"riskzonen." -#: ../plugins/power/gsd-power-manager.c:991 +#: ../plugins/power/gsd-power-manager.c:997 msgid "For more information visit the battery recall website." msgstr "Besök webbplatsen för Ă„terkallade batteri för mer information." #. TRANSLATORS: button text, visit the manufacturers recall website -#: ../plugins/power/gsd-power-manager.c:1002 +#: ../plugins/power/gsd-power-manager.c:1008 msgid "Visit recall website" msgstr "Besök webbsidan för Ă„terkallning" #. TRANSLATORS: button text, do not show this bubble again -#: ../plugins/power/gsd-power-manager.c:1006 +#: ../plugins/power/gsd-power-manager.c:1012 msgid "Do not show me this again" msgstr "Visa inte det hĂ€r igen" #. TRANSLATORS: UPS is now discharging -#: ../plugins/power/gsd-power-manager.c:1217 +#: ../plugins/power/gsd-power-manager.c:1223 msgid "UPS Discharging" msgstr "UPS-reservström laddar ur" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1222 +#: ../plugins/power/gsd-power-manager.c:1228 #, c-format msgid "%s of UPS backup power remaining" msgstr "%s av UPS-reservström Ă„terstĂ„r" #. TRANSLATORS: this is the notification application name -#: ../plugins/power/gsd-power-manager.c:1243 -#: ../plugins/power/gsd-power-manager.c:1421 -#: ../plugins/power/gsd-power-manager.c:1602 -#: ../plugins/power/gsd-power-manager.c:1751 +#: ../plugins/power/gsd-power-manager.c:1249 +#: ../plugins/power/gsd-power-manager.c:1427 +#: ../plugins/power/gsd-power-manager.c:1608 +#: ../plugins/power/gsd-power-manager.c:1757 #: ../plugins/power/power.gnome-settings-plugin.in.h:1 msgid "Power" msgstr "Effekt" #. TRANSLATORS: laptop battery low, and we only have one battery -#: ../plugins/power/gsd-power-manager.c:1336 +#: ../plugins/power/gsd-power-manager.c:1342 msgid "Battery low" msgstr "BatterispĂ€nningen Ă€r lĂ„g" #. TRANSLATORS: laptop battery low, and we have more than one kind of battery -#: ../plugins/power/gsd-power-manager.c:1339 +#: ../plugins/power/gsd-power-manager.c:1345 msgid "Laptop battery low" msgstr "BatterispĂ€nning i bĂ€rbar dator Ă€r lĂ„g" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1345 +#: ../plugins/power/gsd-power-manager.c:1351 #, c-format msgid "Approximately %s remaining (%.0f%%)" msgstr "UngefĂ€r %s Ă„terstĂ„r (%.0f%%)" #. TRANSLATORS: UPS is starting to get a little low -#: ../plugins/power/gsd-power-manager.c:1349 +#: ../plugins/power/gsd-power-manager.c:1355 msgid "UPS low" msgstr "UPS-reservström Ă€r lĂ„g" #. TRANSLATORS: tell the user how much time they have got -#: ../plugins/power/gsd-power-manager.c:1353 +#: ../plugins/power/gsd-power-manager.c:1359 #, c-format msgid "Approximately %s of remaining UPS backup power (%.0f%%)" msgstr "UngefĂ€r %s av Ă„terstĂ„ende UPS-reservström (%.0f%%)" #. TRANSLATORS: mouse is getting a little low #. TRANSLATORS: the mouse battery is very low -#: ../plugins/power/gsd-power-manager.c:1357 -#: ../plugins/power/gsd-power-manager.c:1523 +#: ../plugins/power/gsd-power-manager.c:1363 +#: ../plugins/power/gsd-power-manager.c:1529 msgid "Mouse battery low" msgstr "BatterispĂ€nning i mus Ă€r lĂ„g" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1360 +#: ../plugins/power/gsd-power-manager.c:1366 #, c-format msgid "Wireless mouse is low in power (%.0f%%)" msgstr "TrĂ„dlösa musen har lĂ„g batterispĂ€nning (%.0f%%)" #. TRANSLATORS: keyboard is getting a little low #. TRANSLATORS: the keyboard battery is very low -#: ../plugins/power/gsd-power-manager.c:1364 -#: ../plugins/power/gsd-power-manager.c:1531 +#: ../plugins/power/gsd-power-manager.c:1370 +#: ../plugins/power/gsd-power-manager.c:1537 msgid "Keyboard battery low" msgstr "BatterispĂ€nning i tangentbord Ă€r lĂ„g" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1367 +#: ../plugins/power/gsd-power-manager.c:1373 #, c-format msgid "Wireless keyboard is low in power (%.0f%%)" msgstr "TrĂ„dlösa tangentbordet har lĂ„g batterispĂ€nning (%.0f%%)" #. TRANSLATORS: PDA is getting a little low #. TRANSLATORS: the PDA battery is very low -#: ../plugins/power/gsd-power-manager.c:1371 -#: ../plugins/power/gsd-power-manager.c:1540 +#: ../plugins/power/gsd-power-manager.c:1377 +#: ../plugins/power/gsd-power-manager.c:1546 msgid "PDA battery low" msgstr "BatterispĂ€nning i handdator Ă€r lĂ„g" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1374 +#: ../plugins/power/gsd-power-manager.c:1380 #, c-format msgid "PDA is low in power (%.0f%%)" msgstr "Handdatorn har lĂ„g strömspĂ€nning (%.0f%%)" #. TRANSLATORS: cell phone (mobile) is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1378 -#: ../plugins/power/gsd-power-manager.c:1550 -#: ../plugins/power/gsd-power-manager.c:1561 +#: ../plugins/power/gsd-power-manager.c:1384 +#: ../plugins/power/gsd-power-manager.c:1556 +#: ../plugins/power/gsd-power-manager.c:1567 msgid "Cell phone battery low" msgstr "BatterispĂ€nning i mobiltelefon Ă€r lĂ„g" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1381 +#: ../plugins/power/gsd-power-manager.c:1387 #, c-format msgid "Cell phone is low in power (%.0f%%)" msgstr "Mobiltelefonen har lĂ„g strömspĂ€nning (%.0f%%)" #. TRANSLATORS: media player, e.g. mp3 is getting a little low -#: ../plugins/power/gsd-power-manager.c:1386 +#: ../plugins/power/gsd-power-manager.c:1392 msgid "Media player battery low" msgstr "Mediaspelaren har lĂ„g batterispĂ€nning" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1389 +#: ../plugins/power/gsd-power-manager.c:1395 #, c-format msgid "Media player is low in power (%.0f%%)" msgstr "Mediaspelaren har lĂ„g batterispĂ€nning (%.0f%%)" #. TRANSLATORS: graphics tablet, e.g. wacom is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1393 -#: ../plugins/power/gsd-power-manager.c:1570 +#: ../plugins/power/gsd-power-manager.c:1399 +#: ../plugins/power/gsd-power-manager.c:1576 msgid "Tablet battery low" msgstr "BatterispĂ€nning i pekdator Ă€r lĂ„g" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1396 +#: ../plugins/power/gsd-power-manager.c:1402 #, c-format msgid "Tablet is low in power (%.0f%%)" msgstr "BatterispĂ€nning i pekdator Ă€r lĂ„g (%.0f%%)" #. TRANSLATORS: computer, e.g. ipad is getting a little low #. TRANSLATORS: the cell battery is very low -#: ../plugins/power/gsd-power-manager.c:1400 -#: ../plugins/power/gsd-power-manager.c:1579 +#: ../plugins/power/gsd-power-manager.c:1406 +#: ../plugins/power/gsd-power-manager.c:1585 msgid "Attached computer battery low" msgstr "Ansluten dator har lĂ„g batterispĂ€nning" #. TRANSLATORS: tell user more details -#: ../plugins/power/gsd-power-manager.c:1403 +#: ../plugins/power/gsd-power-manager.c:1409 #, c-format msgid "Attached computer is low in power (%.0f%%)" msgstr "Ansluten dator har lĂ„g batterispĂ€nning (%.0f%%)" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1440 +#: ../plugins/power/gsd-power-manager.c:1446 msgid "Battery is low" msgstr "Batterikapaciteten Ă€r lĂ„g" #. TRANSLATORS: laptop battery critically low, and only have one kind of battery -#: ../plugins/power/gsd-power-manager.c:1482 +#: ../plugins/power/gsd-power-manager.c:1488 msgid "Battery critically low" msgstr "BatterispĂ€nningen Ă€r kritiskt lĂ„gt" #. TRANSLATORS: laptop battery critically low, and we have more than one type of battery #. TRANSLATORS: laptop battery is really, really, low -#: ../plugins/power/gsd-power-manager.c:1485 -#: ../plugins/power/gsd-power-manager.c:1669 +#: ../plugins/power/gsd-power-manager.c:1491 +#: ../plugins/power/gsd-power-manager.c:1675 msgid "Laptop battery critically low" msgstr "BatterispĂ€nning i bĂ€rbar dator Ă€r kritiskt lĂ„g" #. TRANSLATORS: tell the use to insert the plug, as we're not going to do anything -#: ../plugins/power/gsd-power-manager.c:1494 +#: ../plugins/power/gsd-power-manager.c:1500 msgid "Plug in your AC adapter to avoid losing data." msgstr "Anslut din strömadapter för att undvika att förlora data." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1498 +#: ../plugins/power/gsd-power-manager.c:1504 #, c-format msgid "Computer will suspend very soon unless it is plugged in." -msgstr "Datorn kommer mycket snart att försĂ€ttas i vĂ€ntelĂ€ge om den inte ansluts till extern ström." +msgstr "" +"Datorn kommer mycket snart att försĂ€ttas i vĂ€ntelĂ€ge om den inte ansluts " +"till extern ström." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1502 +#: ../plugins/power/gsd-power-manager.c:1508 #, c-format msgid "Computer will hibernate very soon unless it is plugged in." -msgstr "Datorn kommer mycket snart att försĂ€ttas i vilolĂ€ge om den inte ansluts till extern ström." +msgstr "" +"Datorn kommer mycket snart att försĂ€ttas i vilolĂ€ge om den inte ansluts till " +"extern ström." #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1506 +#: ../plugins/power/gsd-power-manager.c:1512 #, c-format msgid "Computer will shutdown very soon unless it is plugged in." -msgstr "Datorn kommer mycket snart att stĂ€ngas av om den inte ansluts till extern ström." +msgstr "" +"Datorn kommer mycket snart att stĂ€ngas av om den inte ansluts till extern " +"ström." #. TRANSLATORS: the UPS is very low #. TRANSLATORS: UPS is really, really, low -#: ../plugins/power/gsd-power-manager.c:1513 -#: ../plugins/power/gsd-power-manager.c:1705 +#: ../plugins/power/gsd-power-manager.c:1519 +#: ../plugins/power/gsd-power-manager.c:1711 msgid "UPS critically low" msgstr "UPS-reservström Ă€r kritiskt lĂ„g" #. TRANSLATORS: give the user a ultimatum -#: ../plugins/power/gsd-power-manager.c:1517 +#: ../plugins/power/gsd-power-manager.c:1523 #, c-format -msgid "Approximately %s of remaining UPS power (%.0f%%). Restore AC power to your computer to avoid losing data." -msgstr "UngefĂ€r %s av Ă„terstĂ„ende UPS-reservström (%.0f%%). Anslut strömadaptern till din dator för att undvika dataförlust." +msgid "" +"Approximately %s of remaining UPS power (%.0f%%). Restore AC power to " +"your computer to avoid losing data." +msgstr "" +"UngefĂ€r %s av Ă„terstĂ„ende UPS-reservström (%.0f%%). Anslut " +"strömadaptern till din dator för att undvika dataförlust." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1526 +#: ../plugins/power/gsd-power-manager.c:1532 #, c-format -msgid "Wireless mouse is very low in power (%.0f%%). This device will soon stop functioning if not charged." -msgstr "TrĂ„dlösa musen har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort att sluta fungera om den inte laddas upp." +msgid "" +"Wireless mouse is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"TrĂ„dlösa musen har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom " +"kort att sluta fungera om den inte laddas upp." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1534 +#: ../plugins/power/gsd-power-manager.c:1540 #, c-format -msgid "Wireless keyboard is very low in power (%.0f%%). This device will soon stop functioning if not charged." -msgstr "TrĂ„dlösa tangentbordet har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort att sluta fungera om den inte laddas upp." +msgid "" +"Wireless keyboard is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"TrĂ„dlösa tangentbordet har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer " +"inom kort att sluta fungera om den inte laddas upp." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1543 +#: ../plugins/power/gsd-power-manager.c:1549 #, c-format -msgid "PDA is very low in power (%.0f%%). This device will soon stop functioning if not charged." -msgstr "Handdatorn har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort att sluta fungera om den inte laddas upp." +msgid "" +"PDA is very low in power (%.0f%%). This device will soon stop functioning if " +"not charged." +msgstr "" +"Handdatorn har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort " +"att sluta fungera om den inte laddas upp." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1553 +#: ../plugins/power/gsd-power-manager.c:1559 #, c-format -msgid "Cell phone is very low in power (%.0f%%). This device will soon stop functioning if not charged." -msgstr "Mobiltelefonen har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort att sluta fungera om den inte laddas upp." +msgid "" +"Cell phone is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"Mobiltelefonen har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom " +"kort att sluta fungera om den inte laddas upp." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1564 +#: ../plugins/power/gsd-power-manager.c:1570 #, c-format -msgid "Media player is very low in power (%.0f%%). This device will soon stop functioning if not charged." -msgstr "Mediaspelaren har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort att sluta fungera om den inte laddas upp." +msgid "" +"Media player is very low in power (%.0f%%). This device will soon stop " +"functioning if not charged." +msgstr "" +"Mediaspelaren har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom " +"kort att sluta fungera om den inte laddas upp." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1573 +#: ../plugins/power/gsd-power-manager.c:1579 #, c-format -msgid "Tablet is very low in power (%.0f%%). This device will soon stop functioning if not charged." -msgstr "Pekdatorn har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort att sluta fungera om den inte laddas upp." +msgid "" +"Tablet is very low in power (%.0f%%). This device will soon stop functioning " +"if not charged." +msgstr "" +"Pekdatorn har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort " +"att sluta fungera om den inte laddas upp." #. TRANSLATORS: the device is just going to stop working -#: ../plugins/power/gsd-power-manager.c:1582 +#: ../plugins/power/gsd-power-manager.c:1588 #, c-format -msgid "Attached computer is very low in power (%.0f%%). The device will soon shutdown if not charged." -msgstr "Ansluten dator har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom kort att stĂ€ngas av om den inte laddas upp." +msgid "" +"Attached computer is very low in power (%.0f%%). The device will soon " +"shutdown if not charged." +msgstr "" +"Ansluten dator har mycket lĂ„g strömspĂ€nning (%.0f%%). Enheten kommer inom " +"kort att stĂ€ngas av om den inte laddas upp." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:1622 -#: ../plugins/power/gsd-power-manager.c:1632 -#: ../plugins/power/gsd-power-manager.c:1768 +#: ../plugins/power/gsd-power-manager.c:1628 +#: ../plugins/power/gsd-power-manager.c:1638 +#: ../plugins/power/gsd-power-manager.c:1774 msgid "Battery is critically low" msgstr "Batteriet har kritiskt lĂ„g nivĂ„" #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1677 -msgid "The battery is below the critical level and this computer will power-off when the battery becomes completely empty." -msgstr "Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att stĂ€ngas av nĂ€r batteriet blir helt tomt." +#: ../plugins/power/gsd-power-manager.c:1683 +msgid "" +"The battery is below the critical level and this computer will power-off when the battery becomes completely empty." +msgstr "" +"Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att " +"stĂ€ngas av nĂ€r batteriet blir helt tomt." #. TRANSLATORS: computer will suspend -#: ../plugins/power/gsd-power-manager.c:1683 +#: ../plugins/power/gsd-power-manager.c:1689 msgid "" -"The battery is below the critical level and this computer is about to suspend.\n" -"NOTE: A small amount of power is required to keep your computer in a suspended state." +"The battery is below the critical level and this computer is about to " +"suspend.\n" +"NOTE: A small amount of power is required to keep your computer in a " +"suspended state." msgstr "" -"Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att försĂ€ttas i vĂ€ntelĂ€ge.\n" -"OBSERVERA: En liten mĂ€ngd ström krĂ€vs för att hĂ„lla din dator i ett vĂ€ntande tillstĂ„nd." +"Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att " +"försĂ€ttas i vĂ€ntelĂ€ge.\n" +"OBSERVERA: En liten mĂ€ngd ström krĂ€vs för att hĂ„lla din dator i ett " +"vĂ€ntande tillstĂ„nd." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1690 -msgid "The battery is below the critical level and this computer is about to hibernate." -msgstr "Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att försĂ€ttas i vilolĂ€ge." +#: ../plugins/power/gsd-power-manager.c:1696 +msgid "" +"The battery is below the critical level and this computer is about to " +"hibernate." +msgstr "" +"Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att " +"försĂ€ttas i vilolĂ€ge." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1695 -msgid "The battery is below the critical level and this computer is about to shutdown." -msgstr "Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att stĂ€ngas av." +#: ../plugins/power/gsd-power-manager.c:1701 +msgid "" +"The battery is below the critical level and this computer is about to " +"shutdown." +msgstr "" +"Batteriet Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att stĂ€ngas " +"av." #. TRANSLATORS: computer will shutdown without saving data -#: ../plugins/power/gsd-power-manager.c:1713 -msgid "UPS is below the critical level and this computer will power-off when the UPS becomes completely empty." -msgstr "UPS-reservström Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer stĂ€ngas av nĂ€r UPS-reservström blir helt tom." +#: ../plugins/power/gsd-power-manager.c:1719 +msgid "" +"UPS is below the critical level and this computer will power-off when " +"the UPS becomes completely empty." +msgstr "" +"UPS-reservström Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer " +"stĂ€ngas av nĂ€r UPS-reservström blir helt tom." #. TRANSLATORS: computer will hibernate -#: ../plugins/power/gsd-power-manager.c:1719 -msgid "UPS is below the critical level and this computer is about to hibernate." -msgstr "UPS-reservström Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att försĂ€ttas i vilolĂ€ge." +#: ../plugins/power/gsd-power-manager.c:1725 +msgid "" +"UPS is below the critical level and this computer is about to hibernate." +msgstr "" +"UPS-reservström Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer att " +"försĂ€ttas i vilolĂ€ge." #. TRANSLATORS: computer will just shutdown -#: ../plugins/power/gsd-power-manager.c:1724 +#: ../plugins/power/gsd-power-manager.c:1730 msgid "UPS is below the critical level and this computer is about to shutdown." -msgstr "UPS-reservström Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer inom kort att stĂ€ngas av." +msgstr "" +"UPS-reservström Ă€r under den kritiska nivĂ„n och den hĂ€r datorn kommer inom " +"kort att stĂ€ngas av." #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2218 +#: ../plugins/power/gsd-power-manager.c:2224 msgid "Lid has been opened" msgstr "Locket har öppnats" #. TRANSLATORS: this is the sound description -#: ../plugins/power/gsd-power-manager.c:2295 +#: ../plugins/power/gsd-power-manager.c:2301 msgid "Lid has been closed" msgstr "Locket har stĂ€ngts" #. TRANSLATORS: this is the title of the power manager status icon #. * that is only shown in fallback mode -#: ../plugins/power/gsd-power-manager.c:3616 +#: ../plugins/power/gsd-power-manager.c:3692 msgid "Power Manager" msgstr "Strömhanterare" @@ -2286,32 +2645,32 @@ msgstr "Insticksmodul för ström" #. Translators: We are configuring new printer -#: ../plugins/print-notifications/gsd-printer.c:942 +#: ../plugins/print-notifications/gsd-printer.c:908 msgid "Configuring new printer" msgstr "Konfigurerar ny skrivare" #. Translators: Just wait -#: ../plugins/print-notifications/gsd-printer.c:944 +#: ../plugins/print-notifications/gsd-printer.c:910 msgid "Please wait..." msgstr "VĂ€nta..." #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:971 +#: ../plugins/print-notifications/gsd-printer.c:937 msgid "Missing printer driver" msgstr "Saknar skrivardrivrutin" #. Translators: We have no driver installed for the device -#: ../plugins/print-notifications/gsd-printer.c:980 +#: ../plugins/print-notifications/gsd-printer.c:946 #, c-format msgid "No printer driver for %s." msgstr "Ingen skrivardrivrutin för %s." #. Translators: We have no driver installed for this printer -#: ../plugins/print-notifications/gsd-printer.c:985 +#: ../plugins/print-notifications/gsd-printer.c:951 msgid "No driver for this printer." msgstr "Ingen drivrutin för denna skrivare." -#: ../plugins/print-notifications/gsd-printer.c:1088 +#: ../plugins/print-notifications/gsd-printer.c:1049 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:221 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:646 #: ../plugins/print-notifications/gsd-print-notifications-manager.c:735 @@ -2553,8 +2912,11 @@ #. TRANSLATORS: we need to restart so the new hardware can re-request the firmware #: ../plugins/updates/gsd-updates-firmware.c:240 -msgid "You will need to restart this computer before the hardware will work correctly." -msgstr "Du mĂ„ste starta om datorn innan maskinvaran kommer att fungera korrekt." +msgid "" +"You will need to restart this computer before the hardware will work " +"correctly." +msgstr "" +"Du mĂ„ste starta om datorn innan maskinvaran kommer att fungera korrekt." #. TRANSLATORS: title of libnotify bubble #: ../plugins/updates/gsd-updates-firmware.c:243 @@ -2578,8 +2940,12 @@ #. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware #: ../plugins/updates/gsd-updates-firmware.c:265 -msgid "You will need to remove and then reinsert the hardware before it will work correctly." -msgstr "Du mĂ„ste koppla loss och sedan ansluta maskinvaran innan den kommer att fungera korrekt." +msgid "" +"You will need to remove and then reinsert the hardware before it will work " +"correctly." +msgstr "" +"Du mĂ„ste koppla loss och sedan ansluta maskinvaran innan den kommer att " +"fungera korrekt." #. TRANSLATORS: we need to remove an replug so the new hardware can re-request the firmware #: ../plugins/updates/gsd-updates-firmware.c:290 @@ -2588,8 +2954,12 @@ #. TRANSLATORS: we need another package to keep udev quiet #: ../plugins/updates/gsd-updates-firmware.c:568 -msgid "Additional firmware is required to make hardware in this computer function correctly." -msgstr "Ytterligare fast programvara krĂ€vs för att maskinvaran i denna dator ska fungera korrekt." +msgid "" +"Additional firmware is required to make hardware in this computer function " +"correctly." +msgstr "" +"Ytterligare fast programvara krĂ€vs för att maskinvaran i denna dator ska " +"fungera korrekt." #. TRANSLATORS: title of libnotify bubble #: ../plugins/updates/gsd-updates-firmware.c:582 @@ -2646,8 +3016,12 @@ #. TRANSLATORS: policy says update, but we are on battery and so prompt #: ../plugins/updates/gsd-updates-manager.c:438 -msgid "Automatic updates are not being installed as the computer is running on battery power" -msgstr "Automatiska uppdateringar kommer inte installeras eftersom datorn körs pĂ„ batteriström" +msgid "" +"Automatic updates are not being installed as the computer is running on " +"battery power" +msgstr "" +"Automatiska uppdateringar kommer inte installeras eftersom datorn körs pĂ„ " +"batteriström" #. TRANSLATORS: informs user will not install by default #: ../plugins/updates/gsd-updates-manager.c:440 @@ -2721,71 +3095,83 @@ msgid "A transaction that cannot be interrupted is running" msgstr "En transaktion som inte kan avbrytas körs" -#: ../plugins/wacom/gsd-wacom-device.c:882 +#: ../plugins/wacom/gsd-wacom-device.c:909 #, c-format msgid "Left Ring Mode #%d" -msgstr "" +msgstr "VĂ€nster ringlĂ€ge #%d" -#: ../plugins/wacom/gsd-wacom-device.c:889 +#: ../plugins/wacom/gsd-wacom-device.c:916 #, c-format msgid "Right Ring Mode #%d" -msgstr "" +msgstr "Höger ringlĂ€ge #%d" -#: ../plugins/wacom/gsd-wacom-device.c:917 +#: ../plugins/wacom/gsd-wacom-device.c:944 #, c-format msgid "Left Touchstrip Mode #%d" -msgstr "" +msgstr "VĂ€nster Touchstrip-lĂ€ge #%d" -#: ../plugins/wacom/gsd-wacom-device.c:924 +#: ../plugins/wacom/gsd-wacom-device.c:951 #, c-format msgid "Right Touchstrip Mode #%d" -msgstr "" +msgstr "Höger Touchstrip-lĂ€ge #%d" -#: ../plugins/wacom/gsd-wacom-device.c:939 +#: ../plugins/wacom/gsd-wacom-device.c:966 #, c-format msgid "Left Touchring Mode Switch" -msgstr "" +msgstr "LĂ€gesvĂ€xel för vĂ€nster Touchring" -#: ../plugins/wacom/gsd-wacom-device.c:941 +#: ../plugins/wacom/gsd-wacom-device.c:968 #, c-format msgid "Right Touchring Mode Switch" -msgstr "" +msgstr "LĂ€gesvĂ€xel för höger Touchring" -#: ../plugins/wacom/gsd-wacom-device.c:944 +#: ../plugins/wacom/gsd-wacom-device.c:971 #, c-format msgid "Left Touchstrip Mode Switch" -msgstr "" +msgstr "LĂ€gesvĂ€xel för vĂ€nster Touchstrip" -#: ../plugins/wacom/gsd-wacom-device.c:946 +#: ../plugins/wacom/gsd-wacom-device.c:973 #, c-format msgid "Right Touchstrip Mode Switch" -msgstr "" +msgstr "LĂ€gesvĂ€xel för höger Touchstrip" -#: ../plugins/wacom/gsd-wacom-device.c:951 +#: ../plugins/wacom/gsd-wacom-device.c:978 #, c-format msgid "Mode Switch #%d" msgstr "LĂ€gesvĂ€xel nr. %d" -#: ../plugins/wacom/gsd-wacom-device.c:1023 +#: ../plugins/wacom/gsd-wacom-device.c:1050 #, c-format msgid "Left Button #%d" msgstr "VĂ€nsterknapp nr. %d" -#: ../plugins/wacom/gsd-wacom-device.c:1026 +#: ../plugins/wacom/gsd-wacom-device.c:1053 #, c-format msgid "Right Button #%d" msgstr "Högerknapp nr. %d" -#: ../plugins/wacom/gsd-wacom-device.c:1029 +#: ../plugins/wacom/gsd-wacom-device.c:1056 #, c-format msgid "Top Button #%d" msgstr "Övre knapp nr. %d" -#: ../plugins/wacom/gsd-wacom-device.c:1032 +#: ../plugins/wacom/gsd-wacom-device.c:1059 #, c-format msgid "Bottom Button #%d" msgstr "Nedre knapp nr. %d" +#. SECURITY: +#. - A normal active user on the local machine does not need permission +#. to change the LED setting for a Wacom tablet +#. +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:5 +msgid "Modify the lit LED for a Wacom tablet" +msgstr "Ändra tĂ€nd LED-ldamp för en Wacom-platta" + +#: ../plugins/wacom/org.gnome.settings-daemon.plugins.wacom.policy.in.in.h:6 +msgid "Authentication is required to modify the lit LED for a Wacom tablet" +msgstr "Autentisering krĂ€vs för att Ă€ndra tĂ€nd LED-lampa för en Wacom-platta" + #: ../plugins/xrandr/gsd-xrandr-manager.c:500 msgid "Could not switch the monitor configuration" msgstr "Kunde inte vĂ€xla till skĂ€rmkonfigurationen" @@ -2801,9 +3187,13 @@ #: ../plugins/xrandr/gsd-xrandr-manager.c:570 #, c-format msgid "The display will be reset to its previous configuration in %d second" -msgid_plural "The display will be reset to its previous configuration in %d seconds" -msgstr[0] "SkĂ€rmen kommer att Ă„terstĂ€llas till dess tidigare konfiguration om %d sekund" -msgstr[1] "SkĂ€rmen kommer att Ă„terstĂ€llas till dess tidigare konfiguration om %d sekunder" +msgid_plural "" +"The display will be reset to its previous configuration in %d seconds" +msgstr[0] "" +"SkĂ€rmen kommer att Ă„terstĂ€llas till dess tidigare konfiguration om %d sekund" +msgstr[1] "" +"SkĂ€rmen kommer att Ă„terstĂ€llas till dess tidigare konfiguration om %d " +"sekunder" #: ../plugins/xrandr/gsd-xrandr-manager.c:619 msgid "Does the display look OK?" @@ -3359,126 +3749,187 @@ # Gissning #~ msgid "Observe power management" #~ msgstr "Övervaka strömhantering" + #~ msgid "Power Statistics" #~ msgstr "Strömstatistik" + #~ msgid "Brightness" #~ msgstr "Ljusstyrka" + #~ msgid "0" #~ msgstr "0" + #~ msgid "Data length:" #~ msgstr "DatalĂ€ngd:" + #~ msgid "Details" #~ msgstr "Detaljer" + #~ msgid "Graph type:" #~ msgstr "Diagramtyp:" + #~ msgid "History" #~ msgstr "Historik" + #~ msgid "Processor wakeups per second:" #~ msgstr "Processoruppvakningar per sekund:" + #~ msgid "Show data points" #~ msgstr "Visa datapunkter" + #~ msgid "Statistics" #~ msgstr "Statistik" + #~ msgid "There is no data to display." #~ msgstr "Det finns ingen data att visa." + #~ msgid "Use smoothed line" #~ msgstr "AnvĂ€nd mjuk linje" + #~ msgid "Wakeups" #~ msgstr "Uppvakningar" + #~ msgid "Set the current brightness" #~ msgstr "StĂ€ll in aktuell ljusstyrka" + #~ msgid "Get the current brightness" #~ msgstr "HĂ€mta aktuell ljusstyrka" + #~ msgid "Get the number of brightness levels supported" #~ msgstr "HĂ€mta antalet nivĂ„er av ljusstyrka som stöds" + #~ msgid "GNOME Power Manager Backlight Helper" #~ msgstr "BakgrundsljushjĂ€lpare för GNOME-strömhanterare" + #~ msgid "No valid option was specified" #~ msgstr "Ingen giltig flagga angavs" + #~ msgid "No backlights were found on your system" #~ msgstr "Inget bakgrundsljus hittades pĂ„ ditt system" + #~ msgid "Could not get the value of the backlight" #~ msgstr "Kunde inte fĂ„ vĂ€rdet för bakgrundsljus" + #~ msgid "Could not get the maximum value of the backlight" #~ msgstr "Kunde inte fĂ„ maximalt vĂ€rde för bakgrundsljuset" + #~ msgid "This program can only be used by the root user" #~ msgstr "Detta program kan endast anvĂ€ndas av root-anvĂ€ndaren" + #~ msgid "This program must only be run through pkexec" #~ msgstr "Detta program fĂ„r endast köras genom pkexec" + #~ msgid "Could not set the value of the backlight" #~ msgstr "Kunde inte stĂ€lla in vĂ€rdet för bakgrundsljuset" + #~ msgid "Show debugging information for all files" #~ msgstr "Visa felsökningsinformation för alla filer" + #~ msgid "Debugging Options" #~ msgstr "Felsökningsflaggor" + #~ msgid "Show debugging options" #~ msgstr "Visa felsökningsflaggor" + #~ msgid "%id" #~ msgstr "%id" + #~ msgid "%id%02ih" #~ msgstr "%id%02ih" + #~ msgid "%ih" #~ msgstr "%ih" + #~ msgid "%ih%02im" #~ msgstr "%ih%02im" + #~ msgid "%2im" #~ msgstr "%2i min" + #~ msgid "%2im%02i" #~ msgstr "%2i min %02i" + #~ msgid "%2is" #~ msgstr "%2i s" + #~ msgid "%i%%" #~ msgstr "%i%%" + #~ msgid "%.1fW" #~ msgstr "%.1fW" + #~ msgid "%.1fV" #~ msgstr "%.1fV" + #~ msgid "Show version of installed program and exit" #~ msgstr "Visa versionen för installerat program och avsluta" + #~ msgid "Exit after a small delay (for debugging)" #~ msgstr "Avsluta efter en liten fördröjning (för felsökning)" + #~ msgid "Exit after the manager has loaded (for debugging)" #~ msgstr "Avsluta efter att hanteraren har lĂ€sts in (för felsökning)" + #~ msgid "GNOME Power Manager" #~ msgstr "GNOME-strömhanteraren" + #~ msgid "Battery is very low" #~ msgstr "Batterikapaciteten Ă€r mycket lĂ„g" + #~ msgid "Power plugged in" #~ msgstr "Extern ström ansluten" + #~ msgid "Power unplugged" #~ msgstr "Extern ström frĂ„nkopplad" + #~ msgid "Lid has opened" #~ msgstr "Locket har öppnats" + #~ msgid "Lid has closed" #~ msgstr "Locket har stĂ€ngts" + #~ msgid "Battery is full" #~ msgstr "Batteriet Ă€r fullt" + #~ msgid "Suspend started" #~ msgstr "VĂ€ntelĂ€ge pĂ„börjat" + #~ msgid "Resumed" #~ msgstr "Återupptagen" + #~ msgid "Suspend failed" #~ msgstr "VĂ€ntelĂ€ge misslyckades" + #~ msgid "Computer failed to suspend." #~ msgstr "Datorn misslyckades med att gĂ„ i vĂ€ntelĂ€ge." + #~ msgid "Failed to suspend" #~ msgstr "Misslyckades med att gĂ„ i vĂ€ntelĂ€ge" + #~ msgid "Computer failed to hibernate." #~ msgstr "Datorn misslyckades med att gĂ„ i vilolĂ€ge." + #~ msgid "Failed to hibernate" #~ msgstr "Misslyckades med att gĂ„ i vilolĂ€ge" + #~ msgid "Failure was reported as:" #~ msgstr "Felet rapporterades som:" + #~ msgid "Visit help page" #~ msgstr "Besök hjĂ€lpsidan" + #~ msgid "Display DPMS activated" #~ msgstr "Visa DPMS aktiverat" + #~ msgid "On battery power" #~ msgstr "Batteridrift" + #~ msgid "Laptop lid is closed" #~ msgstr "Locket pĂ„ bĂ€rbar dator Ă€r stĂ€ngd" + #~ msgid "Power Information" #~ msgstr "Ströminformation" + #~ msgid "" #~ "A battery in your computer may have been recalled by %s and you may be at " #~ "risk.\n" @@ -3489,211 +3940,305 @@ #~ "riskzonen.\n" #~ "\n" #~ "Besök webbplatsen för Ă„terkallade batterier för mer information." + #~ msgid "Battery may be broken" #~ msgstr "Batteriet kan vara trasigt" + #~ msgid "" #~ "Battery has a very low capacity (%1.1f%%), which means that it may be old " #~ "or broken." #~ msgstr "" #~ "Batteriet har en mycket lĂ„g kapacitet (%1.1f%%) vilket kan betyda att det " #~ "Ă€r gammalt eller trasigt." + #~ msgid "Battery Charged" #~ msgid_plural "Batteries Charged" #~ msgstr[0] "Batteriet Ă€r uppladdat" #~ msgstr[1] "Batterier Ă€r uppladdade" + #~ msgid "Battery Discharging" #~ msgstr "Batteriet laddar ur" + #~ msgid "%s of battery power remaining (%.0f%%)" #~ msgstr "%s av batteridrift Ă„terstĂ„r (%.0f%%)" + #~ msgid "%s of UPS backup power remaining (%.0f%%)" #~ msgstr "%s av UPS-reservström Ă„terstĂ„r (%.0f%%)" + #~ msgid "Rate" #~ msgstr "Frekvens" + #~ msgid "Charge" #~ msgstr "Laddning" + #~ msgid "Time to full" #~ msgstr "Tid till fullstĂ€ndig" + #~ msgid "Time to empty" #~ msgstr "Tid till tom" + #~ msgid "10 minutes" #~ msgstr "10 minuter" + #~ msgid "2 hours" #~ msgstr "2 timmar" + #~ msgid "6 hours" #~ msgstr "6 timmar" + #~ msgid "1 day" #~ msgstr "En dag" + #~ msgid "1 week" #~ msgstr "En vecka" + #~ msgid "Charge profile" #~ msgstr "Uppladdningsprofil" + #~ msgid "Discharge profile" #~ msgstr "Urladdningsprofil" + #~ msgid "Charge accuracy" #~ msgstr "Noggrannhet för uppladdning" + #~ msgid "Discharge accuracy" #~ msgstr "Noggrannhet för urladdning" + #~ msgid "Attribute" #~ msgstr "Attribut" + #~ msgid "Value" #~ msgstr "VĂ€rde" + #~ msgid "Image" #~ msgstr "Bild" + #~ msgid "Description" #~ msgstr "Beskrivning" + #~ msgid "Type" #~ msgstr "Typ" + #~ msgid "ID" #~ msgstr "ID" + #~ msgid "Unknown" #~ msgstr "OkĂ€nt" + #~ msgid "%.0f second" #~ msgid_plural "%.0f seconds" #~ msgstr[0] "%.0f sekund" #~ msgstr[1] "%.0f sekunder" + #~ msgid "%.1f minute" #~ msgid_plural "%.1f minutes" #~ msgstr[0] "%.1f minut" #~ msgstr[1] "%.1f minuter" + #~ msgid "%.1f hour" #~ msgid_plural "%.1f hours" #~ msgstr[0] "%.1f timme" #~ msgstr[1] "%.1f timmar" + #~ msgid "%.1f day" #~ msgid_plural "%.1f days" #~ msgstr[0] "%.1f dag" #~ msgstr[1] "%.1f dagar" + #~ msgid "Yes" #~ msgstr "Ja" + #~ msgid "No" #~ msgstr "No" + #~ msgid "Device" #~ msgstr "Enhet" + #~ msgid "Vendor" #~ msgstr "Tillverkare" + #~ msgid "Model" #~ msgstr "Modell" + #~ msgid "Serial number" #~ msgstr "Serienummer" + # FIXME Denna Ă€r jag mycket osĂ€ker pĂ„ #~ msgid "Supply" #~ msgstr "Matning" + #~ msgid "%d second" #~ msgid_plural "%d seconds" #~ msgstr[0] "%d sekund" #~ msgstr[1] "%d sekunder" + #~ msgid "Refreshed" #~ msgstr "Uppdaterat" + #~ msgid "Present" #~ msgstr "Ansluten" + #~ msgid "Rechargeable" #~ msgstr "Uppladdningsbar" + #~ msgid "State" #~ msgstr "TillstĂ„nd" + #~ msgid "Energy" #~ msgstr "Energi" + #~ msgid "Energy when empty" #~ msgstr "Energi nĂ€r tom" + #~ msgid "Energy when full" #~ msgstr "Energi nĂ€r full" + #~ msgid "Energy (design)" #~ msgstr "Energi (angiven)" + #~ msgid "Voltage" #~ msgstr "SpĂ€nning" + #~ msgid "Percentage" #~ msgstr "Procentandel" + #~ msgid "Capacity" #~ msgstr "Kapacitet" + #~ msgid "Technology" #~ msgstr "Teknologi" + #~ msgid "Online" #~ msgstr "Ansluten" + #~ msgid "No data" #~ msgstr "Inget data" + #~ msgid "Kernel module" #~ msgstr "KĂ€rnmodul" + #~ msgid "Kernel core" #~ msgstr "KĂ€rna" + #~ msgid "Interprocessor interrupt" #~ msgstr "Interprocessor-avbrott" + #~ msgid "Interrupt" #~ msgstr "Avbrott" + #~ msgid "PS/2 keyboard/mouse/touchpad" #~ msgstr "PS/2 tangentbord/mus/pekplatta" + #~ msgid "ACPI" #~ msgstr "ACPI" + #~ msgid "Serial ATA" #~ msgstr "Serial ATA" + #~ msgid "ATA host controller" #~ msgstr "ATA-styrkort" + #~ msgid "Intel wireless adaptor" #~ msgstr "TrĂ„dlöst Intel-nĂ€tverkskort" + #~ msgid "Timer %s" #~ msgstr "Tidtagare %s" + #~ msgid "Sleep %s" #~ msgstr "Sov %s" + #~ msgid "New task %s" #~ msgstr "Ny uppgift %s" + #~ msgid "Wait %s" #~ msgstr "VĂ€nta %s" + #~ msgid "Work queue %s" #~ msgstr "Arbetskö %s" + #~ msgid "Network route flush %s" #~ msgstr "Tömning av nĂ€tverksrutt %s" + #~ msgid "USB activity %s" #~ msgstr "USB-aktivitet %s" + #~ msgid "Wakeup %s" #~ msgstr "VĂ€ck upp %s" + #~ msgid "Local interrupts" #~ msgstr "Lokala avbrott" + #~ msgid "Rescheduling interrupts" #~ msgstr "Ombokning av avbrott" + #~ msgid "Device Information" #~ msgstr "Enhetsinformation" + #~ msgid "Device History" #~ msgstr "Enhetshistorik" + #~ msgid "Device Profile" #~ msgstr "Enhetsprofil" + #~ msgid "Processor Wakeups" #~ msgstr "Processoruppvakningar" + #~ msgid "Time elapsed" #~ msgstr "Tid Ă„tgĂ„ngen" + #~ msgid "Cell charge" #~ msgstr "Batteriladdning" + #~ msgid "Predicted time" #~ msgstr "BerĂ€knad tid" + #~ msgid "Correction factor" #~ msgstr "Korrigeringsfaktor" + #~ msgid "Prediction accuracy" #~ msgstr "Noggrannhet för berĂ€kning" + #~ msgid "Show extra debugging information" #~ msgstr "Visa extra felsökningsinformation" + #~ msgid "Select this device at startup" #~ msgstr "VĂ€lj denna enhet vid uppstart" + #~ msgid "Processor" #~ msgstr "Processor" + #~ msgid "%s remaining" #~ msgstr "%s Ă„terstĂ„r" + #~ msgid "_Preferences" #~ msgstr "_InstĂ€llningar" + #~ msgid "Binding to enable or disable the touchpad." #~ msgstr "Bindning för att aktivera eller inaktivera pekplattan." + #~ msgid "Toggle touchpad" #~ msgstr "VĂ€xla pekplatta" + #~ msgid "Automount" #~ msgstr "Montera automatiskt" + #~ msgid "Automounter plugin" #~ msgstr "Insticksmodul för automatisk montering" + #~ msgid "Keyboard _Preferences" #~ msgstr "Tangentbordsins_tĂ€llningar" + #~ msgid "Show _Current Layout" #~ msgstr "Visa a_ktuell layout" + #~ msgid "Privileges are required to configure time and date settings." #~ msgstr "" #~ "Privilegier krĂ€vs för att konfigurera instĂ€llningar för tid och datum." + # Punkter per tum #~ msgid "DPI" #~ msgstr "PPT" + #, fuzzy #~ msgid "" #~ "The resolution used for converting font sizes to pixel sizes, in dots per "